| 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" |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 32 | #include "base/strlcpy.h" |
| Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 33 | #include "base/time_utils.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 34 | #include "class_linker-inl.h" |
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 35 | #include "class_linker.h" |
| Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 36 | #include "dex_file-inl.h" |
| David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 37 | #include "dex_file_annotations.h" |
| Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 38 | #include "dex_file_types.h" |
| Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 39 | #include "dex_instruction.h" |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 40 | #include "entrypoints/runtime_asm_entrypoints.h" |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 41 | #include "gc/accounting/card_table-inl.h" |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 42 | #include "gc/allocation_record.h" |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 43 | #include "gc/scoped_gc_critical_section.h" |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 44 | #include "gc/space/bump_pointer_space-walk-inl.h" |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 45 | #include "gc/space/large_object_space.h" |
| 46 | #include "gc/space/space-inl.h" |
| Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 47 | #include "handle_scope-inl.h" |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 48 | #include "jdwp/jdwp_priv.h" |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 49 | #include "jdwp/object_registry.h" |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 50 | #include "jni_internal.h" |
| Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 51 | #include "jvalue-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 52 | #include "mirror/class-inl.h" |
| Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 53 | #include "mirror/class.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 54 | #include "mirror/class_loader.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 55 | #include "mirror/object-inl.h" |
| 56 | #include "mirror/object_array-inl.h" |
| Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 57 | #include "mirror/string-inl.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 58 | #include "mirror/throwable.h" |
| Andreas Gampe | 373a9b5 | 2017-10-18 09:01:57 -0700 | [diff] [blame] | 59 | #include "nativehelper/scoped_local_ref.h" |
| 60 | #include "nativehelper/scoped_primitive_array.h" |
| Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 61 | #include "oat_file.h" |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 62 | #include "obj_ptr-inl.h" |
| Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 63 | #include "reflection.h" |
| Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 64 | #include "safe_map.h" |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 65 | #include "scoped_thread_state_change-inl.h" |
| Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 66 | #include "stack.h" |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 67 | #include "thread_list.h" |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 68 | #include "utf.h" |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 69 | #include "well_known_classes.h" |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 70 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 71 | namespace art { |
| 72 | |
| Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 73 | using android::base::StringPrintf; |
| 74 | |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 75 | // The key identifying the debugger to update instrumentation. |
| 76 | static constexpr const char* kDbgInstrumentationKey = "Debugger"; |
| 77 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 78 | // 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] | 79 | static uint16_t CappedAllocRecordCount(size_t alloc_record_count) { |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 80 | const size_t cap = 0xffff; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 81 | if (alloc_record_count > cap) { |
| 82 | return cap; |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 83 | } |
| 84 | return alloc_record_count; |
| 85 | } |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 86 | |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 87 | class Breakpoint : public ValueObject { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 88 | public: |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 89 | Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind) |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 90 | : method_(method->GetCanonicalMethod(kRuntimePointerSize)), |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 91 | dex_pc_(dex_pc), |
| 92 | deoptimization_kind_(deoptimization_kind) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 93 | CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing || |
| 94 | deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization || |
| 95 | deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 98 | Breakpoint(const Breakpoint& other) REQUIRES_SHARED(Locks::mutator_lock_) |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 99 | : method_(other.method_), |
| 100 | dex_pc_(other.dex_pc_), |
| 101 | deoptimization_kind_(other.deoptimization_kind_) {} |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 102 | |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 103 | // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause |
| 104 | // GC to deadlock if another thread tries to call SuspendAll while the GC is in a runnable state. |
| 105 | ArtMethod* Method() const { |
| 106 | return method_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | uint32_t DexPc() const { |
| 110 | return dex_pc_; |
| 111 | } |
| 112 | |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 113 | DeoptimizationRequest::Kind GetDeoptimizationKind() const { |
| 114 | return deoptimization_kind_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 117 | // Returns true if the method of this breakpoint and the passed in method should be considered the |
| 118 | // 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] | 119 | bool IsInMethod(ArtMethod* m) const REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 120 | return method_ == m->GetCanonicalMethod(kRuntimePointerSize); |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 121 | } |
| 122 | |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 123 | private: |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 124 | // The location of this breakpoint. |
| Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 125 | ArtMethod* method_; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 126 | uint32_t dex_pc_; |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 127 | |
| 128 | // Indicates whether breakpoint needs full deoptimization or selective deoptimization. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 129 | DeoptimizationRequest::Kind deoptimization_kind_; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 130 | }; |
| 131 | |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 132 | static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 133 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 134 | os << StringPrintf("Breakpoint[%s @%#x]", ArtMethod::PrettyMethod(rhs.Method()).c_str(), |
| 135 | rhs.DexPc()); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 136 | return os; |
| 137 | } |
| 138 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 139 | class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 140 | public: |
| 141 | DebugInstrumentationListener() {} |
| 142 | virtual ~DebugInstrumentationListener() {} |
| 143 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 144 | void MethodEntered(Thread* thread, |
| 145 | Handle<mirror::Object> this_object, |
| 146 | ArtMethod* method, |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 147 | uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 148 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 149 | if (method->IsNative()) { |
| 150 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 151 | return; |
| 152 | } |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 153 | if (IsListeningToDexPcMoved()) { |
| 154 | // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is |
| 155 | // going to be called right after us. To avoid sending JDWP events twice for this location, |
| 156 | // we report the event in DexPcMoved. However, we must remind this is method entry so we |
| 157 | // send the METHOD_ENTRY event. And we can also group it with other events for this location |
| 158 | // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction). |
| 159 | thread->SetDebugMethodEntry(); |
| 160 | } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) { |
| 161 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 162 | // RETURN so we know the MethodExited method is going to be called right after us. To avoid |
| 163 | // sending JDWP events twice for this location, we report the event(s) in MethodExited. |
| 164 | // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can |
| 165 | // also group it with other events for this location like BREAKPOINT or SINGLE_STEP. |
| 166 | thread->SetDebugMethodEntry(); |
| 167 | } else { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 168 | Dbg::UpdateDebugger(thread, this_object.Get(), method, 0, Dbg::kMethodEntry, nullptr); |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 169 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 170 | } |
| 171 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 172 | void MethodExited(Thread* thread, |
| 173 | Handle<mirror::Object> this_object, |
| 174 | ArtMethod* method, |
| 175 | uint32_t dex_pc, |
| 176 | const JValue& return_value) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 177 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 178 | if (method->IsNative()) { |
| 179 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 180 | return; |
| 181 | } |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 182 | uint32_t events = Dbg::kMethodExit; |
| 183 | if (thread->IsDebugMethodEntry()) { |
| 184 | // It is also the method entry. |
| 185 | DCHECK(IsReturn(method, dex_pc)); |
| 186 | events |= Dbg::kMethodEntry; |
| 187 | thread->ClearDebugMethodEntry(); |
| 188 | } |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 189 | Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 190 | } |
| 191 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 192 | void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, |
| 193 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
| 194 | ArtMethod* method, |
| 195 | uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 196 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 197 | // 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] | 198 | LOG(ERROR) << "Unexpected method unwind event in debugger " << ArtMethod::PrettyMethod(method) |
| Sebastien Hertz | 51db44a | 2013-11-19 10:00:29 +0100 | [diff] [blame] | 199 | << " " << dex_pc; |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 200 | } |
| 201 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 202 | void DexPcMoved(Thread* thread, |
| 203 | Handle<mirror::Object> this_object, |
| 204 | ArtMethod* method, |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 205 | uint32_t new_dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 206 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 207 | if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) { |
| 208 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 209 | // RETURN so we know the MethodExited method is going to be called right after us. Like in |
| 210 | // MethodEntered, we delegate event reporting to MethodExited. |
| 211 | // Besides, if this RETURN instruction is the only one in the method, we can send multiple |
| 212 | // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP. |
| 213 | // Therefore, we must not clear the debug method entry flag here. |
| 214 | } else { |
| 215 | uint32_t events = 0; |
| 216 | if (thread->IsDebugMethodEntry()) { |
| 217 | // It is also the method entry. |
| 218 | events = Dbg::kMethodEntry; |
| 219 | thread->ClearDebugMethodEntry(); |
| 220 | } |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 221 | Dbg::UpdateDebugger(thread, this_object.Get(), method, new_dex_pc, events, nullptr); |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 222 | } |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 223 | } |
| 224 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 225 | void FieldRead(Thread* thread ATTRIBUTE_UNUSED, |
| 226 | Handle<mirror::Object> this_object, |
| 227 | ArtMethod* method, |
| 228 | uint32_t dex_pc, |
| 229 | ArtField* field) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 230 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 231 | Dbg::PostFieldAccessEvent(method, dex_pc, this_object.Get(), field); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 232 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 233 | |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 234 | void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, |
| 235 | Handle<mirror::Object> this_object, |
| 236 | ArtMethod* method, |
| 237 | uint32_t dex_pc, |
| 238 | ArtField* field, |
| Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 239 | const JValue& field_value) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 240 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 241 | Dbg::PostFieldModificationEvent(method, dex_pc, this_object.Get(), field, &field_value); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 242 | } |
| 243 | |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 244 | void ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED, |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 245 | Handle<mirror::Throwable> exception_object) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 246 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 247 | Dbg::PostException(exception_object.Get()); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 248 | } |
| 249 | |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 250 | // We only care about branches in the Jit. |
| 251 | void Branch(Thread* /*thread*/, ArtMethod* method, uint32_t dex_pc, int32_t dex_pc_offset) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 252 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 253 | LOG(ERROR) << "Unexpected branch event in debugger " << ArtMethod::PrettyMethod(method) |
| Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 254 | << " " << dex_pc << ", " << dex_pc_offset; |
| Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 255 | } |
| 256 | |
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 257 | // We only care about invokes in the Jit. |
| 258 | void InvokeVirtualOrInterface(Thread* thread ATTRIBUTE_UNUSED, |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 259 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 260 | ArtMethod* method, |
| 261 | uint32_t dex_pc, |
| Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 262 | ArtMethod* target ATTRIBUTE_UNUSED) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 263 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 264 | LOG(ERROR) << "Unexpected invoke event in debugger " << ArtMethod::PrettyMethod(method) |
| Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 265 | << " " << dex_pc; |
| 266 | } |
| 267 | |
| Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 268 | // TODO Might be worth it to post ExceptionCatch event. |
| 269 | void ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED, |
| 270 | Handle<mirror::Throwable> throwable ATTRIBUTE_UNUSED) OVERRIDE { |
| 271 | LOG(ERROR) << "Unexpected exception handled event in debugger"; |
| 272 | } |
| 273 | |
| Alex Light | 05f4774 | 2017-09-14 00:34:44 +0000 | [diff] [blame] | 274 | // TODO Might be worth it to implement this. |
| 275 | void WatchedFramePop(Thread* thread ATTRIBUTE_UNUSED, |
| 276 | const ShadowFrame& frame ATTRIBUTE_UNUSED) OVERRIDE { |
| 277 | LOG(ERROR) << "Unexpected WatchedFramePop event in debugger"; |
| 278 | } |
| Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 279 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 280 | private: |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 281 | static bool IsReturn(ArtMethod* method, uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 282 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 283 | const DexFile::CodeItem* code_item = method->GetCodeItem(); |
| 284 | const Instruction* instruction = Instruction::At(&code_item->insns_[dex_pc]); |
| 285 | return instruction->IsReturn(); |
| 286 | } |
| 287 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 288 | static bool IsListeningToDexPcMoved() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 289 | return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved); |
| 290 | } |
| 291 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 292 | static bool IsListeningToMethodExit() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 293 | return IsListeningTo(instrumentation::Instrumentation::kMethodExited); |
| 294 | } |
| 295 | |
| 296 | static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 297 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 298 | return (Dbg::GetInstrumentationEvents() & event) != 0; |
| 299 | } |
| 300 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 301 | DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 302 | } gDebugInstrumentationListener; |
| 303 | |
| Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 304 | // JDWP is allowed unless the Zygote forbids it. |
| 305 | static bool gJdwpAllowed = true; |
| 306 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 307 | // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line? |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 308 | static bool gJdwpConfigured = false; |
| 309 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 310 | // JDWP options for debugging. Only valid if IsJdwpConfigured() is true. |
| 311 | static JDWP::JdwpOptions gJdwpOptions; |
| 312 | |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 313 | // Runtime JDWP state. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 314 | static JDWP::JdwpState* gJdwpState = nullptr; |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 315 | static bool gDebuggerConnected; // debugger or DDMS is connected. |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 316 | |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 317 | static bool gDdmThreadNotification = false; |
| 318 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 319 | // DDMS GC-related settings. |
| 320 | static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER; |
| 321 | static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 322 | static Dbg::HpsgWhat gDdmHpsgWhat; |
| 323 | static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 324 | static Dbg::HpsgWhat gDdmNhsgWhat; |
| 325 | |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 326 | bool Dbg::gDebuggerActive = false; |
| Sebastien Hertz | 4e5b208 | 2015-03-24 19:03:40 +0100 | [diff] [blame] | 327 | bool Dbg::gDisposed = false; |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 328 | ObjectRegistry* Dbg::gRegistry = nullptr; |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 329 | DebuggerActiveMethodInspectionCallback Dbg::gDebugActiveCallback; |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 330 | DebuggerDdmCallback Dbg::gDebugDdmCallback; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 331 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 332 | // Deoptimization support. |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 333 | std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_; |
| 334 | size_t Dbg::full_deoptimization_event_count_ = 0; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 335 | |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 336 | // Instrumentation event reference counters. |
| 337 | size_t Dbg::dex_pc_change_event_ref_count_ = 0; |
| 338 | size_t Dbg::method_enter_event_ref_count_ = 0; |
| 339 | size_t Dbg::method_exit_event_ref_count_ = 0; |
| 340 | size_t Dbg::field_read_event_ref_count_ = 0; |
| 341 | size_t Dbg::field_write_event_ref_count_ = 0; |
| 342 | size_t Dbg::exception_catch_event_ref_count_ = 0; |
| 343 | uint32_t Dbg::instrumentation_events_ = 0; |
| 344 | |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 345 | Dbg::DbgThreadLifecycleCallback Dbg::thread_lifecycle_callback_; |
| Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 346 | Dbg::DbgClassLoadCallback Dbg::class_load_callback_; |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 347 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 348 | void DebuggerDdmCallback::DdmPublishChunk(uint32_t type, const ArrayRef<const uint8_t>& data) { |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 349 | if (gJdwpState == nullptr) { |
| 350 | VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; |
| 351 | } else { |
| 352 | iovec vec[1]; |
| 353 | vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(data.data())); |
| 354 | vec[0].iov_len = data.size(); |
| 355 | gJdwpState->DdmSendChunkV(type, vec, 1); |
| 356 | } |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 357 | } |
| 358 | |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 359 | bool DebuggerActiveMethodInspectionCallback::IsMethodBeingInspected(ArtMethod* m ATTRIBUTE_UNUSED) { |
| 360 | return Dbg::IsDebuggerActive(); |
| 361 | } |
| 362 | |
| Alex Light | 0fa1786 | 2017-10-24 13:43:05 -0700 | [diff] [blame] | 363 | bool DebuggerActiveMethodInspectionCallback::IsMethodSafeToJit(ArtMethod* m) { |
| 364 | return !Dbg::MethodHasAnyBreakpoints(m); |
| 365 | } |
| 366 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 367 | // Breakpoints. |
| jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 368 | static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 369 | |
| Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 370 | void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) { |
| 371 | receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call. |
| 372 | klass.VisitRoot(visitor, root_info); |
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 373 | } |
| 374 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 375 | void SingleStepControl::AddDexPc(uint32_t dex_pc) { |
| 376 | dex_pcs_.insert(dex_pc); |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 377 | } |
| 378 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 379 | bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const { |
| 380 | return dex_pcs_.find(dex_pc) == dex_pcs_.end(); |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 381 | } |
| 382 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 383 | static bool IsBreakpoint(ArtMethod* m, uint32_t dex_pc) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 384 | REQUIRES(!Locks::breakpoint_lock_) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 385 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 386 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 387 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 388 | if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].IsInMethod(m)) { |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 389 | VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; |
| 390 | return true; |
| 391 | } |
| 392 | } |
| 393 | return false; |
| 394 | } |
| 395 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 396 | static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 397 | REQUIRES(!Locks::thread_suspend_count_lock_) { |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 398 | MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_); |
| 399 | // A thread may be suspended for GC; in this code, we really want to know whether |
| 400 | // there's a debugger suspension active. |
| 401 | return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; |
| 402 | } |
| 403 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 404 | static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 405 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 406 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 407 | if (o == nullptr) { |
| 408 | *error = JDWP::ERR_INVALID_OBJECT; |
| 409 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 410 | } |
| 411 | if (!o->IsArrayInstance()) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 412 | *error = JDWP::ERR_INVALID_ARRAY; |
| 413 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 414 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 415 | *error = JDWP::ERR_NONE; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 416 | return o->AsArray(); |
| 417 | } |
| 418 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 419 | static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 420 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 421 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 422 | if (o == nullptr) { |
| 423 | *error = JDWP::ERR_INVALID_OBJECT; |
| 424 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 425 | } |
| 426 | if (!o->IsClass()) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 427 | *error = JDWP::ERR_INVALID_CLASS; |
| 428 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 429 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 430 | *error = JDWP::ERR_NONE; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 431 | return o->AsClass(); |
| 432 | } |
| 433 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 434 | static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, |
| 435 | JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 436 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 437 | REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 438 | mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 439 | if (thread_peer == nullptr) { |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 440 | // This isn't even an object. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 441 | *error = JDWP::ERR_INVALID_OBJECT; |
| 442 | return nullptr; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 443 | } |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 444 | |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 445 | ObjPtr<mirror::Class> java_lang_Thread = |
| 446 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 447 | if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) { |
| 448 | // This isn't a thread. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 449 | *error = JDWP::ERR_INVALID_THREAD; |
| 450 | return nullptr; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 451 | } |
| 452 | |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 453 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 454 | Thread* thread = Thread::FromManagedThread(soa, thread_peer); |
| 455 | // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a |
| 456 | // zombie. |
| 457 | *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE; |
| 458 | return thread; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 459 | } |
| 460 | |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 461 | static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { |
| 462 | // JDWP deliberately uses the descriptor characters' ASCII values for its enum. |
| 463 | // Note that by "basic" we mean that we don't get more specific than JT_OBJECT. |
| 464 | return static_cast<JDWP::JdwpTag>(descriptor[0]); |
| 465 | } |
| 466 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 467 | static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 468 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 469 | std::string temp; |
| 470 | const char* descriptor = klass->GetDescriptor(&temp); |
| 471 | return BasicTagFromDescriptor(descriptor); |
| 472 | } |
| 473 | |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 474 | static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 475 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 476 | CHECK(c != nullptr); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 477 | if (c->IsArrayClass()) { |
| 478 | return JDWP::JT_ARRAY; |
| 479 | } |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 480 | if (c->IsStringClass()) { |
| 481 | return JDWP::JT_STRING; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 482 | } |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 483 | if (c->IsClassClass()) { |
| 484 | return JDWP::JT_CLASS_OBJECT; |
| 485 | } |
| 486 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 487 | ObjPtr<mirror::Class> thread_class = |
| 488 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 489 | if (thread_class->IsAssignableFrom(c)) { |
| 490 | return JDWP::JT_THREAD; |
| 491 | } |
| 492 | } |
| 493 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 494 | ObjPtr<mirror::Class> thread_group_class = |
| 495 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 496 | if (thread_group_class->IsAssignableFrom(c)) { |
| 497 | return JDWP::JT_THREAD_GROUP; |
| 498 | } |
| 499 | } |
| 500 | { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 501 | ObjPtr<mirror::Class> class_loader_class = |
| 502 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ClassLoader); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 503 | if (class_loader_class->IsAssignableFrom(c)) { |
| 504 | return JDWP::JT_CLASS_LOADER; |
| 505 | } |
| 506 | } |
| 507 | return JDWP::JT_OBJECT; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | /* |
| 511 | * Objects declared to hold Object might actually hold a more specific |
| 512 | * type. The debugger may take a special interest in these (e.g. it |
| 513 | * wants to display the contents of Strings), so we want to return an |
| 514 | * appropriate tag. |
| 515 | * |
| 516 | * Null objects are tagged JT_OBJECT. |
| 517 | */ |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 518 | JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 519 | return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass()); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | static bool IsPrimitiveTag(JDWP::JdwpTag tag) { |
| 523 | switch (tag) { |
| 524 | case JDWP::JT_BOOLEAN: |
| 525 | case JDWP::JT_BYTE: |
| 526 | case JDWP::JT_CHAR: |
| 527 | case JDWP::JT_FLOAT: |
| 528 | case JDWP::JT_DOUBLE: |
| 529 | case JDWP::JT_INT: |
| 530 | case JDWP::JT_LONG: |
| 531 | case JDWP::JT_SHORT: |
| 532 | case JDWP::JT_VOID: |
| 533 | return true; |
| 534 | default: |
| 535 | return false; |
| 536 | } |
| 537 | } |
| 538 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 539 | void Dbg::StartJdwp() { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 540 | if (!gJdwpAllowed || !IsJdwpConfigured()) { |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 541 | // No JDWP for you! |
| 542 | return; |
| 543 | } |
| 544 | |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 545 | CHECK(gRegistry == nullptr); |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 546 | gRegistry = new ObjectRegistry; |
| 547 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 548 | { |
| 549 | // Setup the Ddm listener |
| 550 | ScopedObjectAccess soa(Thread::Current()); |
| 551 | Runtime::Current()->GetRuntimeCallbacks()->AddDdmCallback(&gDebugDdmCallback); |
| 552 | } |
| 553 | |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 554 | // Init JDWP if the debugger is enabled. This may connect out to a |
| 555 | // debugger, passively listen for a debugger, or block waiting for a |
| 556 | // debugger. |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 557 | gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 558 | if (gJdwpState == nullptr) { |
| Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 559 | // We probably failed because some other process has the port already, which means that |
| 560 | // if we don't abort the user is likely to think they're talking to us when they're actually |
| 561 | // talking to that other process. |
| Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 562 | LOG(FATAL) << "Debugger thread failed to initialize"; |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | // If a debugger has already attached, send the "welcome" message. |
| 566 | // This may cause us to suspend all threads. |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 567 | if (gJdwpState->IsActive()) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 568 | ScopedObjectAccess soa(Thread::Current()); |
| Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 569 | gJdwpState->PostVMStart(); |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 570 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 571 | } |
| 572 | |
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 573 | void Dbg::StopJdwp() { |
| Sebastien Hertz | c6345ef | 2014-08-18 19:26:39 +0200 | [diff] [blame] | 574 | // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the |
| 575 | // destruction of gJdwpState). |
| 576 | if (gJdwpState != nullptr && gJdwpState->IsActive()) { |
| 577 | gJdwpState->PostVMDeath(); |
| 578 | } |
| Sebastien Hertz | 0376e6b | 2014-02-06 18:12:59 +0100 | [diff] [blame] | 579 | // 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] | 580 | Dispose(); |
| Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 581 | delete gJdwpState; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 582 | gJdwpState = nullptr; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 583 | delete gRegistry; |
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 584 | gRegistry = nullptr; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 585 | } |
| 586 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 587 | void Dbg::GcDidFinish() { |
| 588 | if (gDdmHpifWhen != HPIF_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 589 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 590 | VLOG(jdwp) << "Sending heap info to DDM"; |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 591 | DdmSendHeapInfo(gDdmHpifWhen); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 592 | } |
| 593 | if (gDdmHpsgWhen != HPSG_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 594 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 595 | VLOG(jdwp) << "Dumping heap to DDM"; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 596 | DdmSendHeapSegments(false); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 597 | } |
| 598 | if (gDdmNhsgWhen != HPSG_WHEN_NEVER) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 599 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 600 | VLOG(jdwp) << "Dumping native heap to DDM"; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 601 | DdmSendHeapSegments(true); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 602 | } |
| 603 | } |
| 604 | |
| Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 605 | void Dbg::SetJdwpAllowed(bool allowed) { |
| 606 | gJdwpAllowed = allowed; |
| 607 | } |
| 608 | |
| Leonard Mosescu | eb84221 | 2016-10-06 17:26:36 -0700 | [diff] [blame] | 609 | bool Dbg::IsJdwpAllowed() { |
| 610 | return gJdwpAllowed; |
| 611 | } |
| 612 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 613 | DebugInvokeReq* Dbg::GetInvokeReq() { |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 614 | return Thread::Current()->GetInvokeReq(); |
| 615 | } |
| 616 | |
| 617 | Thread* Dbg::GetDebugThread() { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 618 | return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr; |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | void Dbg::ClearWaitForEventThread() { |
| Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 622 | gJdwpState->ReleaseJdwpTokenForEvent(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | void Dbg::Connected() { |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 626 | CHECK(!gDebuggerConnected); |
| Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 627 | VLOG(jdwp) << "JDWP has attached"; |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 628 | gDebuggerConnected = true; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 629 | gDisposed = false; |
| 630 | } |
| 631 | |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 632 | bool Dbg::RequiresDeoptimization() { |
| 633 | // We don't need deoptimization if everything runs with interpreter after |
| 634 | // enabling -Xint mode. |
| 635 | return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly(); |
| 636 | } |
| 637 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 638 | void Dbg::GoActive() { |
| 639 | // Enable all debugging features, including scans for breakpoints. |
| 640 | // This is a no-op if we're already active. |
| 641 | // Only called from the JDWP handler thread. |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 642 | if (IsDebuggerActive()) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 643 | return; |
| 644 | } |
| 645 | |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 646 | Thread* const self = Thread::Current(); |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 647 | { |
| 648 | // 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] | 649 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 650 | CHECK_EQ(gBreakpoints.size(), 0U); |
| 651 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 652 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 653 | { |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 654 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 655 | CHECK_EQ(deoptimization_requests_.size(), 0U); |
| 656 | CHECK_EQ(full_deoptimization_event_count_, 0U); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 657 | CHECK_EQ(dex_pc_change_event_ref_count_, 0U); |
| 658 | CHECK_EQ(method_enter_event_ref_count_, 0U); |
| 659 | CHECK_EQ(method_exit_event_ref_count_, 0U); |
| 660 | CHECK_EQ(field_read_event_ref_count_, 0U); |
| 661 | CHECK_EQ(field_write_event_ref_count_, 0U); |
| 662 | CHECK_EQ(exception_catch_event_ref_count_, 0U); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 663 | } |
| 664 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 665 | Runtime* runtime = Runtime::Current(); |
| Nicolas Geoffray | 433b79a | 2017-01-30 20:54:45 +0000 | [diff] [blame] | 666 | // Best effort deoptimization if the runtime is non-Java debuggable. This happens when |
| 667 | // ro.debuggable is set, but the application is not debuggable, or when a standalone |
| 668 | // dalvikvm invocation is not passed the debuggable option (-Xcompiler-option --debuggable). |
| 669 | // |
| 670 | // 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] | 671 | // 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] | 672 | if (!runtime->IsJavaDebuggable() && |
| 673 | !runtime->GetInstrumentation()->IsForcedInterpretOnly() && |
| 674 | !runtime->IsNativeDebuggable()) { |
| 675 | runtime->DeoptimizeBootImage(); |
| Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 676 | } |
| 677 | |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 678 | ScopedSuspendAll ssa(__FUNCTION__); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 679 | if (RequiresDeoptimization()) { |
| 680 | runtime->GetInstrumentation()->EnableDeoptimization(); |
| 681 | } |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 682 | instrumentation_events_ = 0; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 683 | gDebuggerActive = true; |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 684 | Runtime::Current()->GetRuntimeCallbacks()->AddMethodInspectionCallback(&gDebugActiveCallback); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 685 | LOG(INFO) << "Debugger is active"; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | void Dbg::Disconnected() { |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 689 | CHECK(gDebuggerConnected); |
| 690 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 691 | LOG(INFO) << "Debugger is no longer active"; |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 692 | |
| Hiroshi Yamauchi | 98810e3 | 2016-05-24 14:55:40 -0700 | [diff] [blame] | 693 | // 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] | 694 | // and clear the object registry. |
| 695 | Runtime* runtime = Runtime::Current(); |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 696 | Thread* self = Thread::Current(); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 697 | { |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 698 | // Required for DisableDeoptimization. |
| 699 | gc::ScopedGCCriticalSection gcs(self, |
| 700 | gc::kGcCauseInstrumentation, |
| 701 | gc::kCollectorTypeInstrumentation); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 702 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 703 | // Debugger may not be active at this point. |
| 704 | if (IsDebuggerActive()) { |
| 705 | { |
| 706 | // Since we're going to disable deoptimization, we clear the deoptimization requests queue. |
| 707 | // This prevents us from having any pending deoptimization request when the debugger attaches |
| 708 | // to us again while no event has been requested yet. |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 709 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 710 | deoptimization_requests_.clear(); |
| 711 | full_deoptimization_event_count_ = 0U; |
| 712 | } |
| 713 | if (instrumentation_events_ != 0) { |
| 714 | runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener, |
| 715 | instrumentation_events_); |
| 716 | instrumentation_events_ = 0; |
| 717 | } |
| 718 | if (RequiresDeoptimization()) { |
| 719 | runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey); |
| 720 | } |
| 721 | gDebuggerActive = false; |
| Alex Light | 2161193 | 2017-09-26 13:07:39 -0700 | [diff] [blame] | 722 | Runtime::Current()->GetRuntimeCallbacks()->RemoveMethodInspectionCallback( |
| 723 | &gDebugActiveCallback); |
| Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 724 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 725 | } |
| Sebastien Hertz | 55f6534 | 2015-01-13 22:48:34 +0100 | [diff] [blame] | 726 | |
| 727 | { |
| 728 | ScopedObjectAccess soa(self); |
| 729 | gRegistry->Clear(); |
| 730 | } |
| 731 | |
| 732 | gDebuggerConnected = false; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 733 | } |
| 734 | |
| Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 735 | void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) { |
| 736 | CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown); |
| 737 | gJdwpOptions = jdwp_options; |
| 738 | gJdwpConfigured = true; |
| 739 | } |
| 740 | |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 741 | bool Dbg::IsJdwpConfigured() { |
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 742 | return gJdwpConfigured; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | int64_t Dbg::LastDebuggerActivity() { |
| Elliott Hughes | ca95152 | 2011-12-05 12:01:32 -0800 | [diff] [blame] | 746 | return gJdwpState->LastDebuggerActivity(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 747 | } |
| 748 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 749 | void Dbg::UndoDebuggerSuspensions() { |
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 750 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 751 | } |
| 752 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 753 | std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 754 | JDWP::JdwpError error; |
| 755 | mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error); |
| 756 | if (o == nullptr) { |
| 757 | if (error == JDWP::ERR_NONE) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 758 | return "null"; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 759 | } else { |
| 760 | return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); |
| 761 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 762 | } |
| 763 | if (!o->IsClass()) { |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 764 | 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] | 765 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 766 | return GetClassName(o->AsClass()); |
| 767 | } |
| 768 | |
| 769 | std::string Dbg::GetClassName(mirror::Class* klass) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 770 | if (klass == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 771 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 772 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 773 | std::string temp; |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 774 | return DescriptorToName(klass->GetDescriptor(&temp)); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 775 | } |
| 776 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 777 | JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 778 | JDWP::JdwpError status; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 779 | mirror::Class* c = DecodeClass(id, &status); |
| 780 | if (c == nullptr) { |
| 781 | *class_object_id = 0; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 782 | return status; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 783 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 784 | *class_object_id = gRegistry->Add(c); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 785 | return JDWP::ERR_NONE; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 786 | } |
| 787 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 788 | JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 789 | JDWP::JdwpError status; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 790 | mirror::Class* c = DecodeClass(id, &status); |
| 791 | if (c == nullptr) { |
| 792 | *superclass_id = 0; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 793 | return status; |
| 794 | } |
| 795 | if (c->IsInterface()) { |
| 796 | // http://code.google.com/p/android/issues/detail?id=20856 |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 797 | *superclass_id = 0; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 798 | } else { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 799 | *superclass_id = gRegistry->Add(c->GetSuperClass()); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 800 | } |
| 801 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 802 | } |
| 803 | |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 804 | JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 805 | JDWP::JdwpError error; |
| Andreas Gampe | 7929a48 | 2015-12-30 19:33:49 -0800 | [diff] [blame] | 806 | mirror::Class* c = DecodeClass(id, &error); |
| 807 | if (c == nullptr) { |
| 808 | return error; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 809 | } |
| Andreas Gampe | 7929a48 | 2015-12-30 19:33:49 -0800 | [diff] [blame] | 810 | expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader())); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 811 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 814 | JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 815 | JDWP::JdwpError error; |
| 816 | mirror::Class* c = DecodeClass(id, &error); |
| 817 | if (c == nullptr) { |
| 818 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 819 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 820 | |
| 821 | uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask; |
| 822 | |
| Yevgeny Rouban | de34eea | 2014-02-15 01:06:03 +0700 | [diff] [blame] | 823 | // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set, |
| 824 | // not interfaces. |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 825 | // 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] | 826 | if ((access_flags & kAccInterface) == 0) { |
| 827 | access_flags |= kAccSuper; |
| 828 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 829 | |
| 830 | expandBufAdd4BE(pReply, access_flags); |
| 831 | |
| 832 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 833 | } |
| 834 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 835 | JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { |
| 836 | JDWP::JdwpError error; |
| 837 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 838 | if (o == nullptr) { |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 839 | return JDWP::ERR_INVALID_OBJECT; |
| 840 | } |
| 841 | |
| 842 | // Ensure all threads are suspended while we read objects' lock words. |
| 843 | Thread* self = Thread::Current(); |
| Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 844 | CHECK_EQ(self->GetState(), kRunnable); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 845 | |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 846 | MonitorInfo monitor_info; |
| 847 | { |
| 848 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 849 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 850 | monitor_info = MonitorInfo(o); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 851 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 852 | if (monitor_info.owner_ != nullptr) { |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 853 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread())); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 854 | } else { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 855 | expandBufAddObjectId(reply, gRegistry->Add(nullptr)); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 856 | } |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 857 | expandBufAdd4BE(reply, monitor_info.entry_count_); |
| 858 | expandBufAdd4BE(reply, monitor_info.waiters_.size()); |
| 859 | for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) { |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 860 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeerFromOtherThread())); |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 861 | } |
| 862 | return JDWP::ERR_NONE; |
| 863 | } |
| 864 | |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 865 | JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 866 | std::vector<JDWP::ObjectId>* monitors, |
| 867 | std::vector<uint32_t>* stack_depths) { |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 868 | struct OwnedMonitorVisitor : public StackVisitor { |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 869 | OwnedMonitorVisitor(Thread* thread, Context* context, |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 870 | std::vector<JDWP::ObjectId>* monitor_vector, |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 871 | std::vector<uint32_t>* stack_depth_vector) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 872 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 873 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 874 | current_stack_depth(0), |
| 875 | monitors(monitor_vector), |
| 876 | stack_depths(stack_depth_vector) {} |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 877 | |
| 878 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 879 | // annotalysis. |
| 880 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 881 | if (!GetMethod()->IsRuntimeMethod()) { |
| 882 | Monitor::VisitLocks(this, AppendOwnedMonitors, this); |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 883 | ++current_stack_depth; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 884 | } |
| 885 | return true; |
| 886 | } |
| 887 | |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 888 | static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 889 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 890 | OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg); |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 891 | visitor->monitors->push_back(gRegistry->Add(owned_monitor)); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 892 | visitor->stack_depths->push_back(visitor->current_stack_depth); |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 893 | } |
| 894 | |
| Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 895 | size_t current_stack_depth; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 896 | std::vector<JDWP::ObjectId>* const monitors; |
| 897 | std::vector<uint32_t>* const stack_depths; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 898 | }; |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 899 | |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 900 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 901 | JDWP::JdwpError error; |
| 902 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 903 | if (thread == nullptr) { |
| 904 | return error; |
| 905 | } |
| 906 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 907 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 908 | } |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 909 | std::unique_ptr<Context> context(Context::Create()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 910 | OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths); |
| Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 911 | visitor.WalkStack(); |
| Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 912 | return JDWP::ERR_NONE; |
| 913 | } |
| 914 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 915 | JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 916 | JDWP::ObjectId* contended_monitor) { |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 917 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 918 | *contended_monitor = 0; |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 919 | JDWP::JdwpError error; |
| 920 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 921 | if (thread == nullptr) { |
| 922 | return error; |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 923 | } |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 924 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 925 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 926 | } |
| 927 | mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 928 | // Add() requires the thread_list_lock_ not held to avoid the lock |
| 929 | // level violation. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 930 | *contended_monitor = gRegistry->Add(contended_monitor_obj); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 931 | return JDWP::ERR_NONE; |
| 932 | } |
| 933 | |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 934 | JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 935 | std::vector<uint64_t>* counts) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 936 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 937 | heap->CollectGarbage(false); |
| Mathieu Chartier | e8a3c57 | 2016-10-11 16:52:17 -0700 | [diff] [blame] | 938 | VariableSizedHandleScope hs(Thread::Current()); |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 939 | std::vector<Handle<mirror::Class>> classes; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 940 | counts->clear(); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 941 | for (size_t i = 0; i < class_ids.size(); ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 942 | JDWP::JdwpError error; |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 943 | ObjPtr<mirror::Class> c = DecodeClass(class_ids[i], &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 944 | if (c == nullptr) { |
| 945 | return error; |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 946 | } |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 947 | classes.push_back(hs.NewHandle(c)); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 948 | counts->push_back(0); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 949 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 950 | heap->CountInstances(classes, false, &(*counts)[0]); |
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 951 | return JDWP::ERR_NONE; |
| 952 | } |
| 953 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 954 | JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, |
| 955 | std::vector<JDWP::ObjectId>* instances) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 956 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 957 | // We only want reachable instances, so do a GC. |
| 958 | heap->CollectGarbage(false); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 959 | JDWP::JdwpError error; |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 960 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 961 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 962 | return error; |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 963 | } |
| Mathieu Chartier | 2d85595 | 2016-10-12 19:37:59 -0700 | [diff] [blame] | 964 | VariableSizedHandleScope hs(Thread::Current()); |
| 965 | std::vector<Handle<mirror::Object>> raw_instances; |
| 966 | Runtime::Current()->GetHeap()->GetInstances(hs, hs.NewHandle(c), max_count, raw_instances); |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 967 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
| Mathieu Chartier | 2d85595 | 2016-10-12 19:37:59 -0700 | [diff] [blame] | 968 | instances->push_back(gRegistry->Add(raw_instances[i].Get())); |
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 969 | } |
| 970 | return JDWP::ERR_NONE; |
| 971 | } |
| 972 | |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 973 | JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 974 | std::vector<JDWP::ObjectId>* referring_objects) { |
| Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 975 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 976 | heap->CollectGarbage(false); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 977 | JDWP::JdwpError error; |
| Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 978 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 979 | if (o == nullptr) { |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 980 | return JDWP::ERR_INVALID_OBJECT; |
| 981 | } |
| Mathieu Chartier | aea9bfb | 2016-10-12 19:19:56 -0700 | [diff] [blame] | 982 | VariableSizedHandleScope hs(Thread::Current()); |
| 983 | std::vector<Handle<mirror::Object>> raw_instances; |
| 984 | heap->GetReferringObjects(hs, hs.NewHandle(o), max_count, raw_instances); |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 985 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
| Mathieu Chartier | aea9bfb | 2016-10-12 19:19:56 -0700 | [diff] [blame] | 986 | referring_objects->push_back(gRegistry->Add(raw_instances[i].Get())); |
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 987 | } |
| 988 | return JDWP::ERR_NONE; |
| 989 | } |
| 990 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 991 | JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { |
| 992 | JDWP::JdwpError error; |
| 993 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 994 | if (o == nullptr) { |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 995 | return JDWP::ERR_INVALID_OBJECT; |
| 996 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 997 | gRegistry->DisableCollection(object_id); |
| 998 | return JDWP::ERR_NONE; |
| 999 | } |
| 1000 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1001 | JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { |
| 1002 | JDWP::JdwpError error; |
| 1003 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1004 | // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI |
| 1005 | // also ignores these cases and never return an error. However it's not obvious why this command |
| 1006 | // should behave differently from DisableCollection and IsCollected commands. So let's be more |
| 1007 | // strict and return an error if this happens. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1008 | if (o == nullptr) { |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1009 | return JDWP::ERR_INVALID_OBJECT; |
| 1010 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1011 | gRegistry->EnableCollection(object_id); |
| 1012 | return JDWP::ERR_NONE; |
| 1013 | } |
| 1014 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1015 | JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) { |
| 1016 | *is_collected = true; |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1017 | if (object_id == 0) { |
| 1018 | // Null object id is invalid. |
| Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1019 | return JDWP::ERR_INVALID_OBJECT; |
| 1020 | } |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1021 | // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However |
| 1022 | // the RI seems to ignore this and assume object has been collected. |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1023 | JDWP::JdwpError error; |
| 1024 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1025 | if (o != nullptr) { |
| 1026 | *is_collected = gRegistry->IsCollected(object_id); |
| Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1027 | } |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1028 | return JDWP::ERR_NONE; |
| 1029 | } |
| 1030 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1031 | void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) { |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1032 | gRegistry->DisposeObject(object_id, reference_count); |
| 1033 | } |
| 1034 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1035 | JDWP::JdwpTypeTag Dbg::GetTypeTag(ObjPtr<mirror::Class> klass) { |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1036 | DCHECK(klass != nullptr); |
| 1037 | if (klass->IsArrayClass()) { |
| 1038 | return JDWP::TT_ARRAY; |
| 1039 | } else if (klass->IsInterface()) { |
| 1040 | return JDWP::TT_INTERFACE; |
| 1041 | } else { |
| 1042 | return JDWP::TT_CLASS; |
| 1043 | } |
| 1044 | } |
| 1045 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1046 | JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1047 | JDWP::JdwpError error; |
| 1048 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1049 | if (c == nullptr) { |
| 1050 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1051 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1052 | |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1053 | JDWP::JdwpTypeTag type_tag = GetTypeTag(c); |
| 1054 | expandBufAdd1(pReply, type_tag); |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1055 | expandBufAddRefTypeId(pReply, class_id); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1056 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1057 | } |
| 1058 | |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1059 | // Get the complete list of reference classes (i.e. all classes except |
| 1060 | // the primitive types). |
| 1061 | // Returns a newly-allocated buffer full of RefTypeId values. |
| 1062 | class ClassListCreator : public ClassVisitor { |
| 1063 | public: |
| 1064 | explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes_(classes) {} |
| 1065 | |
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1066 | bool operator()(ObjPtr<mirror::Class> c) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1067 | if (!c->IsPrimitive()) { |
| 1068 | classes_->push_back(Dbg::GetObjectRegistry()->AddRefType(c)); |
| 1069 | } |
| 1070 | return true; |
| 1071 | } |
| 1072 | |
| 1073 | private: |
| 1074 | std::vector<JDWP::RefTypeId>* const classes_; |
| 1075 | }; |
| 1076 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1077 | void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) { |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1078 | ClassListCreator clc(classes); |
| Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1079 | Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&clc); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1080 | } |
| 1081 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1082 | JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, |
| 1083 | uint32_t* pStatus, std::string* pDescriptor) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1084 | JDWP::JdwpError error; |
| 1085 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1086 | if (c == nullptr) { |
| 1087 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1088 | } |
| 1089 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1090 | if (c->IsArrayClass()) { |
| 1091 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 1092 | *pTypeTag = JDWP::TT_ARRAY; |
| 1093 | } else { |
| 1094 | if (c->IsErroneous()) { |
| 1095 | *pStatus = JDWP::CS_ERROR; |
| 1096 | } else { |
| 1097 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED; |
| 1098 | } |
| 1099 | *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 1100 | } |
| 1101 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1102 | if (pDescriptor != nullptr) { |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1103 | std::string temp; |
| 1104 | *pDescriptor = c->GetDescriptor(&temp); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1105 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1106 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1107 | } |
| 1108 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1109 | void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) { |
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1110 | std::vector<ObjPtr<mirror::Class>> classes; |
| Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 1111 | Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1112 | ids->clear(); |
| Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1113 | for (ObjPtr<mirror::Class> c : classes) { |
| 1114 | ids->push_back(gRegistry->Add(c)); |
| Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1115 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1118 | JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { |
| 1119 | JDWP::JdwpError error; |
| 1120 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1121 | if (o == nullptr) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1122 | return JDWP::ERR_INVALID_OBJECT; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1123 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1124 | |
| Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1125 | JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass()); |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1126 | JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1127 | |
| 1128 | expandBufAdd1(pReply, type_tag); |
| 1129 | expandBufAddRefTypeId(pReply, type_id); |
| 1130 | |
| 1131 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1132 | } |
| 1133 | |
| Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 1134 | JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1135 | JDWP::JdwpError error; |
| 1136 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1137 | if (c == nullptr) { |
| 1138 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1139 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1140 | std::string temp; |
| 1141 | *signature = c->GetDescriptor(&temp); |
| Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 1142 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
| Orion Hodson | 77d8a1c | 2017-04-24 14:53:19 +0100 | [diff] [blame] | 1145 | JDWP::JdwpError Dbg::GetSourceDebugExtension(JDWP::RefTypeId class_id, |
| 1146 | std::string* extension_data) { |
| 1147 | JDWP::JdwpError error; |
| 1148 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1149 | if (c == nullptr) { |
| 1150 | return error; |
| 1151 | } |
| 1152 | StackHandleScope<1> hs(Thread::Current()); |
| 1153 | Handle<mirror::Class> klass(hs.NewHandle(c)); |
| 1154 | const char* data = annotations::GetSourceDebugExtension(klass); |
| 1155 | if (data == nullptr) { |
| 1156 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1157 | } |
| 1158 | *extension_data = data; |
| 1159 | return JDWP::ERR_NONE; |
| 1160 | } |
| 1161 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1162 | JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) { |
| 1163 | JDWP::JdwpError error; |
| 1164 | mirror::Class* c = DecodeClass(class_id, &error); |
| Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1165 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1166 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1167 | } |
| Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1168 | const char* source_file = c->GetSourceFile(); |
| 1169 | if (source_file == nullptr) { |
| Sebastien Hertz | b7054ba | 2014-03-13 11:52:31 +0100 | [diff] [blame] | 1170 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1171 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1172 | *result = source_file; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1173 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1174 | } |
| 1175 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1176 | JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1177 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1178 | JDWP::JdwpError error; |
| 1179 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1180 | if (error != JDWP::ERR_NONE) { |
| 1181 | *tag = JDWP::JT_VOID; |
| 1182 | return error; |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1183 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1184 | *tag = TagFromObject(soa, o); |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1185 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1186 | } |
| 1187 | |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1188 | size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1189 | switch (tag) { |
| 1190 | case JDWP::JT_VOID: |
| 1191 | return 0; |
| 1192 | case JDWP::JT_BYTE: |
| 1193 | case JDWP::JT_BOOLEAN: |
| 1194 | return 1; |
| 1195 | case JDWP::JT_CHAR: |
| 1196 | case JDWP::JT_SHORT: |
| 1197 | return 2; |
| 1198 | case JDWP::JT_FLOAT: |
| 1199 | case JDWP::JT_INT: |
| 1200 | return 4; |
| 1201 | case JDWP::JT_ARRAY: |
| 1202 | case JDWP::JT_OBJECT: |
| 1203 | case JDWP::JT_STRING: |
| 1204 | case JDWP::JT_THREAD: |
| 1205 | case JDWP::JT_THREAD_GROUP: |
| 1206 | case JDWP::JT_CLASS_LOADER: |
| 1207 | case JDWP::JT_CLASS_OBJECT: |
| 1208 | return sizeof(JDWP::ObjectId); |
| 1209 | case JDWP::JT_DOUBLE: |
| 1210 | case JDWP::JT_LONG: |
| 1211 | return 8; |
| 1212 | default: |
| Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1213 | LOG(FATAL) << "Unknown tag " << tag; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1214 | return -1; |
| 1215 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1216 | } |
| 1217 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1218 | JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { |
| 1219 | JDWP::JdwpError error; |
| 1220 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
| 1221 | if (a == nullptr) { |
| 1222 | return error; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1223 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1224 | *length = a->GetLength(); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1225 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1226 | } |
| 1227 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1228 | 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] | 1229 | JDWP::JdwpError error; |
| 1230 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1231 | if (a == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1232 | return error; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1233 | } |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1234 | |
| 1235 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 1236 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1237 | return JDWP::ERR_INVALID_LENGTH; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1238 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1239 | JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType()); |
| 1240 | expandBufAdd1(pReply, element_tag); |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1241 | expandBufAdd4BE(pReply, count); |
| 1242 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1243 | if (IsPrimitiveTag(element_tag)) { |
| 1244 | size_t width = GetTagWidth(element_tag); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1245 | uint8_t* dst = expandBufAddSpace(pReply, count * width); |
| 1246 | if (width == 8) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1247 | 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] | 1248 | for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]); |
| 1249 | } else if (width == 4) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1250 | 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] | 1251 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]); |
| 1252 | } else if (width == 2) { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1253 | 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] | 1254 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]); |
| 1255 | } else { |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1256 | 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] | 1257 | memcpy(dst, &src[offset * width], count * width); |
| 1258 | } |
| 1259 | } else { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1260 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1261 | mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>(); |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1262 | for (int i = 0; i < count; ++i) { |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1263 | mirror::Object* element = oa->Get(offset + i); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1264 | JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element) |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1265 | : element_tag; |
| Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1266 | expandBufAdd1(pReply, specific_tag); |
| 1267 | expandBufAddObjectId(pReply, gRegistry->Add(element)); |
| 1268 | } |
| 1269 | } |
| 1270 | |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1271 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1272 | } |
| 1273 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1274 | template <typename T> |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1275 | 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] | 1276 | NO_THREAD_SAFETY_ANALYSIS { |
| 1277 | // TODO: fix when annotalysis correctly handles non-member functions. |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1278 | DCHECK(a->GetClass()->IsPrimitiveArray()); |
| 1279 | |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1280 | T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1281 | for (int i = 0; i < count; ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1282 | *dst++ = src->ReadValue(sizeof(T)); |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1283 | } |
| 1284 | } |
| 1285 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1286 | JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1287 | JDWP::Request* request) { |
| 1288 | JDWP::JdwpError error; |
| 1289 | mirror::Array* dst = DecodeNonNullArray(array_id, &error); |
| 1290 | if (dst == nullptr) { |
| 1291 | return error; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1292 | } |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1293 | |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1294 | if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) { |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1295 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1296 | return JDWP::ERR_INVALID_LENGTH; |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1297 | } |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1298 | JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType()); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1299 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1300 | if (IsPrimitiveTag(element_tag)) { |
| 1301 | size_t width = GetTagWidth(element_tag); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1302 | if (width == 8) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1303 | CopyArrayData<uint64_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1304 | } else if (width == 4) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1305 | CopyArrayData<uint32_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1306 | } else if (width == 2) { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1307 | CopyArrayData<uint16_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1308 | } else { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1309 | CopyArrayData<uint8_t>(dst, request, offset, count); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1310 | } |
| 1311 | } else { |
| Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1312 | mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>(); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1313 | for (int i = 0; i < count; ++i) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1314 | JDWP::ObjectId id = request->ReadObjectId(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1315 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 1316 | if (error != JDWP::ERR_NONE) { |
| 1317 | return error; |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1318 | } |
| Sebastien Hertz | 2e1c16d | 2015-08-28 11:57:49 +0200 | [diff] [blame] | 1319 | // Check if the object's type is compatible with the array's type. |
| 1320 | if (o != nullptr && !o->InstanceOf(oa->GetClass()->GetComponentType())) { |
| 1321 | return JDWP::ERR_TYPE_MISMATCH; |
| 1322 | } |
| Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1323 | oa->Set<false>(offset + i, o); |
| Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1324 | } |
| 1325 | } |
| 1326 | |
| Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1327 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1328 | } |
| 1329 | |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1330 | JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) { |
| 1331 | Thread* self = Thread::Current(); |
| 1332 | mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str()); |
| 1333 | if (new_string == nullptr) { |
| 1334 | DCHECK(self->IsExceptionPending()); |
| 1335 | self->ClearException(); |
| 1336 | LOG(ERROR) << "Could not allocate string"; |
| 1337 | *new_string_id = 0; |
| 1338 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1339 | } |
| 1340 | *new_string_id = gRegistry->Add(new_string); |
| 1341 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1342 | } |
| 1343 | |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1344 | 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] | 1345 | JDWP::JdwpError error; |
| 1346 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1347 | if (c == nullptr) { |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1348 | *new_object_id = 0; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1349 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1350 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1351 | Thread* self = Thread::Current(); |
| Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 1352 | ObjPtr<mirror::Object> new_object; |
| Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1353 | if (c->IsStringClass()) { |
| 1354 | // Special case for java.lang.String. |
| 1355 | gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); |
| jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 1356 | new_object = mirror::String::AllocEmptyString<true>(self, allocator_type); |
| Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1357 | } else { |
| 1358 | new_object = c->AllocObject(self); |
| 1359 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1360 | if (new_object == nullptr) { |
| 1361 | DCHECK(self->IsExceptionPending()); |
| 1362 | self->ClearException(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1363 | LOG(ERROR) << "Could not allocate object of type " << mirror::Class::PrettyDescriptor(c); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1364 | *new_object_id = 0; |
| 1365 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1366 | } |
| Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 1367 | *new_object_id = gRegistry->Add(new_object.Ptr()); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1368 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1369 | } |
| 1370 | |
| Elliott Hughes | bf13d36 | 2011-12-08 15:51:37 -0800 | [diff] [blame] | 1371 | /* |
| 1372 | * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]". |
| 1373 | */ |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1374 | JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length, |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1375 | JDWP::ObjectId* new_array_id) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1376 | JDWP::JdwpError error; |
| 1377 | mirror::Class* c = DecodeClass(array_class_id, &error); |
| 1378 | if (c == nullptr) { |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1379 | *new_array_id = 0; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1380 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1381 | } |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1382 | Thread* self = Thread::Current(); |
| 1383 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1384 | mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length, |
| 1385 | c->GetComponentSizeShift(), |
| 1386 | heap->GetCurrentAllocator()); |
| 1387 | if (new_array == nullptr) { |
| 1388 | DCHECK(self->IsExceptionPending()); |
| 1389 | self->ClearException(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1390 | LOG(ERROR) << "Could not allocate array of type " << mirror::Class::PrettyDescriptor(c); |
| Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1391 | *new_array_id = 0; |
| 1392 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1393 | } |
| 1394 | *new_array_id = gRegistry->Add(new_array); |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1395 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1396 | } |
| 1397 | |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1398 | JDWP::FieldId Dbg::ToFieldId(const ArtField* f) { |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1399 | return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f)); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1400 | } |
| 1401 | |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 1402 | static JDWP::MethodId ToMethodId(ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1403 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 1404 | return static_cast<JDWP::MethodId>( |
| 1405 | reinterpret_cast<uintptr_t>(m->GetCanonicalMethod(kRuntimePointerSize))); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1406 | } |
| 1407 | |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1408 | static ArtField* FromFieldId(JDWP::FieldId fid) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1409 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1410 | return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid)); |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1411 | } |
| 1412 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1413 | static ArtMethod* FromMethodId(JDWP::MethodId mid) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1414 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1415 | return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(mid)); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1416 | } |
| 1417 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1418 | bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) { |
| 1419 | CHECK(event_thread != nullptr); |
| 1420 | JDWP::JdwpError error; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1421 | mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>( |
| 1422 | expected_thread_id, &error); |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 1423 | return expected_thread_peer == event_thread->GetPeerFromOtherThread(); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1424 | } |
| 1425 | |
| 1426 | bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location, |
| 1427 | const JDWP::EventLocation& event_location) { |
| 1428 | if (expected_location.dex_pc != event_location.dex_pc) { |
| 1429 | return false; |
| 1430 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1431 | ArtMethod* m = FromMethodId(expected_location.method_id); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1432 | return m == event_location.method; |
| 1433 | } |
| 1434 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1435 | bool Dbg::MatchType(ObjPtr<mirror::Class> event_class, JDWP::RefTypeId class_id) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1436 | if (event_class == nullptr) { |
| 1437 | return false; |
| 1438 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1439 | JDWP::JdwpError error; |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1440 | ObjPtr<mirror::Class> expected_class = DecodeClass(class_id, &error); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1441 | CHECK(expected_class != nullptr); |
| 1442 | return expected_class->IsAssignableFrom(event_class); |
| 1443 | } |
| 1444 | |
| 1445 | 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] | 1446 | ArtField* event_field) { |
| 1447 | ArtField* expected_field = FromFieldId(expected_field_id); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1448 | if (expected_field != event_field) { |
| 1449 | return false; |
| 1450 | } |
| 1451 | return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id); |
| 1452 | } |
| 1453 | |
| 1454 | bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) { |
| 1455 | JDWP::JdwpError error; |
| 1456 | mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error); |
| 1457 | return modifier_instance == event_instance; |
| 1458 | } |
| 1459 | |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1460 | void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1461 | if (m == nullptr) { |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1462 | memset(location, 0, sizeof(*location)); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1463 | } else { |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1464 | mirror::Class* c = m->GetDeclaringClass(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1465 | location->type_tag = GetTypeTag(c); |
| 1466 | location->class_id = gRegistry->AddRefType(c); |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 1467 | // The RI Seems to return 0 for all obsolete methods. For compatibility we shall do the same. |
| 1468 | location->method_id = m->IsObsolete() ? 0 : ToMethodId(m); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1469 | 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] | 1470 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1471 | } |
| 1472 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1473 | std::string Dbg::GetMethodName(JDWP::MethodId method_id) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1474 | ArtMethod* m = FromMethodId(method_id); |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1475 | if (m == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1476 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1477 | } |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1478 | return m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1479 | } |
| 1480 | |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 1481 | bool Dbg::IsMethodObsolete(JDWP::MethodId method_id) { |
| 1482 | ArtMethod* m = FromMethodId(method_id); |
| 1483 | if (m == nullptr) { |
| 1484 | // NB Since we return 0 as MID for obsolete methods we want to default to true here. |
| 1485 | return true; |
| 1486 | } |
| 1487 | return m->IsObsolete(); |
| 1488 | } |
| 1489 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1490 | std::string Dbg::GetFieldName(JDWP::FieldId field_id) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1491 | ArtField* f = FromFieldId(field_id); |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1492 | if (f == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1493 | return "null"; |
| Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1494 | } |
| 1495 | return f->GetName(); |
| Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 1496 | } |
| 1497 | |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1498 | /* |
| 1499 | * Augment the access flags for synthetic methods and fields by setting |
| 1500 | * the (as described by the spec) "0xf0000000 bit". Also, strip out any |
| 1501 | * flags not specified by the Java programming language. |
| 1502 | */ |
| 1503 | static uint32_t MangleAccessFlags(uint32_t accessFlags) { |
| 1504 | accessFlags &= kAccJavaFlagsMask; |
| 1505 | if ((accessFlags & kAccSynthetic) != 0) { |
| 1506 | accessFlags |= 0xf0000000; |
| 1507 | } |
| 1508 | return accessFlags; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1509 | } |
| 1510 | |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1511 | /* |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1512 | * Circularly shifts registers so that arguments come first. Debuggers |
| 1513 | * expect slots to begin with arguments, but dex code places them at |
| 1514 | * the end. |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1515 | */ |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1516 | static uint16_t MangleSlot(uint16_t slot, ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1517 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1518 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1519 | if (code_item == nullptr) { |
| 1520 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1521 | // return the slot as is since all registers are arguments. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1522 | LOG(WARNING) << "Trying to mangle slot for method without code " << m->PrettyMethod(); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1523 | return slot; |
| 1524 | } |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1525 | uint16_t ins_size = code_item->ins_size_; |
| 1526 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1527 | if (slot >= locals_size) { |
| 1528 | return slot - locals_size; |
| 1529 | } else { |
| 1530 | return slot + ins_size; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1531 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1532 | } |
| 1533 | |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1534 | static size_t GetMethodNumArgRegistersIncludingThis(ArtMethod* method) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1535 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1536 | uint32_t num_registers = ArtMethod::NumArgRegisters(method->GetShorty()); |
| 1537 | if (!method->IsStatic()) { |
| 1538 | ++num_registers; |
| 1539 | } |
| 1540 | return num_registers; |
| 1541 | } |
| 1542 | |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1543 | /* |
| 1544 | * Circularly shifts registers so that arguments come last. Reverts |
| 1545 | * slots to dex style argument placement. |
| 1546 | */ |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1547 | static uint16_t DemangleSlot(uint16_t slot, ArtMethod* m, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1548 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1549 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1550 | if (code_item == nullptr) { |
| 1551 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1552 | // return the slot as is since all registers are arguments. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1553 | LOG(WARNING) << "Trying to demangle slot for method without code " |
| 1554 | << m->PrettyMethod(); |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1555 | uint16_t vreg_count = GetMethodNumArgRegistersIncludingThis(m); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1556 | if (slot < vreg_count) { |
| 1557 | *error = JDWP::ERR_NONE; |
| 1558 | return slot; |
| 1559 | } |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1560 | } else { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1561 | if (slot < code_item->registers_size_) { |
| 1562 | uint16_t ins_size = code_item->ins_size_; |
| 1563 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1564 | *error = JDWP::ERR_NONE; |
| 1565 | return (slot < ins_size) ? slot + locals_size : slot - ins_size; |
| 1566 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1567 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1568 | |
| 1569 | // Slot is invalid in the method. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1570 | LOG(ERROR) << "Invalid local slot " << slot << " for method " << m->PrettyMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1571 | *error = JDWP::ERR_INVALID_SLOT; |
| 1572 | return DexFile::kDexNoIndex16; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1573 | } |
| 1574 | |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1575 | JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, |
| 1576 | JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1577 | JDWP::JdwpError error; |
| 1578 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1579 | if (c == nullptr) { |
| 1580 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1581 | } |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1582 | |
| 1583 | size_t instance_field_count = c->NumInstanceFields(); |
| 1584 | size_t static_field_count = c->NumStaticFields(); |
| 1585 | |
| 1586 | expandBufAdd4BE(pReply, instance_field_count + static_field_count); |
| 1587 | |
| 1588 | 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] | 1589 | ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : |
| 1590 | c->GetStaticField(i - instance_field_count); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1591 | expandBufAddFieldId(pReply, ToFieldId(f)); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1592 | expandBufAddUtf8String(pReply, f->GetName()); |
| 1593 | expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1594 | if (with_generic) { |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1595 | static const char genericSignature[1] = ""; |
| 1596 | expandBufAddUtf8String(pReply, genericSignature); |
| 1597 | } |
| 1598 | expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); |
| 1599 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1600 | return JDWP::ERR_NONE; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1601 | } |
| 1602 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1603 | JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1604 | JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1605 | JDWP::JdwpError error; |
| 1606 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1607 | if (c == nullptr) { |
| 1608 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1609 | } |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1610 | |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1611 | expandBufAdd4BE(pReply, c->NumMethods()); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1612 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1613 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 1614 | auto ptr_size = cl->GetImagePointerSize(); |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1615 | for (ArtMethod& m : c->GetMethods(ptr_size)) { |
| 1616 | expandBufAddMethodId(pReply, ToMethodId(&m)); |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1617 | expandBufAddUtf8String(pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName()); |
| 1618 | expandBufAddUtf8String( |
| 1619 | pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetSignature().ToString()); |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1620 | if (with_generic) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1621 | const char* generic_signature = ""; |
| 1622 | expandBufAddUtf8String(pReply, generic_signature); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1623 | } |
| Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1624 | expandBufAdd4BE(pReply, MangleAccessFlags(m.GetAccessFlags())); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1625 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1626 | return JDWP::ERR_NONE; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1627 | } |
| 1628 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1629 | JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1630 | JDWP::JdwpError error; |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1631 | Thread* self = Thread::Current(); |
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1632 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| 1633 | if (c == nullptr) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1634 | return error; |
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1635 | } |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1636 | size_t interface_count = c->NumDirectInterfaces(); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1637 | expandBufAdd4BE(pReply, interface_count); |
| 1638 | for (size_t i = 0; i < interface_count; ++i) { |
| Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1639 | ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, c, i); |
| 1640 | DCHECK(interface != nullptr); |
| 1641 | expandBufAddRefTypeId(pReply, gRegistry->AddRefType(interface)); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1642 | } |
| Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1643 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1644 | } |
| 1645 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1646 | void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) { |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1647 | struct DebugCallbackContext { |
| 1648 | int numItems; |
| 1649 | JDWP::ExpandBuf* pReply; |
| 1650 | |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1651 | static bool Callback(void* context, const DexFile::PositionInfo& entry) { |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1652 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1653 | expandBufAdd8BE(pContext->pReply, entry.address_); |
| 1654 | expandBufAdd4BE(pContext->pReply, entry.line_); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1655 | pContext->numItems++; |
| Sebastien Hertz | f2910ee | 2013-10-19 16:39:24 +0200 | [diff] [blame] | 1656 | return false; |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1657 | } |
| 1658 | }; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1659 | ArtMethod* m = FromMethodId(method_id); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1660 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1661 | uint64_t start, end; |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1662 | if (code_item == nullptr) { |
| 1663 | DCHECK(m->IsNative() || m->IsProxyMethod()); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1664 | start = -1; |
| 1665 | end = -1; |
| 1666 | } else { |
| 1667 | start = 0; |
| jeffhao | 14f0db9 | 2012-12-14 17:50:42 -0800 | [diff] [blame] | 1668 | // Return the index of the last instruction |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1669 | end = code_item->insns_size_in_code_units_ - 1; |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1670 | } |
| 1671 | |
| 1672 | expandBufAdd8BE(pReply, start); |
| 1673 | expandBufAdd8BE(pReply, end); |
| 1674 | |
| 1675 | // Add numLines later |
| 1676 | size_t numLinesOffset = expandBufGetLength(pReply); |
| 1677 | expandBufAdd4BE(pReply, 0); |
| 1678 | |
| 1679 | DebugCallbackContext context; |
| 1680 | context.numItems = 0; |
| 1681 | context.pReply = pReply; |
| 1682 | |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1683 | if (code_item != nullptr) { |
| Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 1684 | uint32_t debug_info_offset = OatFile::GetDebugInfoOffset(*(m->GetDexFile()), code_item); |
| 1685 | m->GetDexFile()->DecodeDebugPositionInfo( |
| 1686 | code_item, debug_info_offset, DebugCallbackContext::Callback, &context); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1687 | } |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1688 | |
| 1689 | JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1690 | } |
| 1691 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1692 | void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, |
| 1693 | JDWP::ExpandBuf* pReply) { |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1694 | struct DebugCallbackContext { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1695 | ArtMethod* method; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1696 | JDWP::ExpandBuf* pReply; |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1697 | size_t variable_count; |
| 1698 | bool with_generic; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1699 | |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1700 | static void Callback(void* context, const DexFile::LocalInfo& entry) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1701 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1702 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1703 | |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1704 | uint16_t slot = entry.reg_; |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1705 | VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1706 | pContext->variable_count, entry.start_address_, |
| 1707 | entry.end_address_ - entry.start_address_, |
| 1708 | entry.name_, entry.descriptor_, entry.signature_, slot, |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1709 | MangleSlot(slot, pContext->method)); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1710 | |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1711 | slot = MangleSlot(slot, pContext->method); |
| Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1712 | |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1713 | expandBufAdd8BE(pContext->pReply, entry.start_address_); |
| 1714 | expandBufAddUtf8String(pContext->pReply, entry.name_); |
| 1715 | expandBufAddUtf8String(pContext->pReply, entry.descriptor_); |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1716 | if (pContext->with_generic) { |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1717 | expandBufAddUtf8String(pContext->pReply, entry.signature_); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1718 | } |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1719 | expandBufAdd4BE(pContext->pReply, entry.end_address_- entry.start_address_); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1720 | expandBufAdd4BE(pContext->pReply, slot); |
| 1721 | |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1722 | ++pContext->variable_count; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1723 | } |
| 1724 | }; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1725 | ArtMethod* m = FromMethodId(method_id); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1726 | |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1727 | // arg_count considers doubles and longs to take 2 units. |
| 1728 | // variable_count considers everything to take 1 unit. |
| Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1729 | expandBufAdd4BE(pReply, GetMethodNumArgRegistersIncludingThis(m)); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1730 | |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1731 | // We don't know the total number of variables yet, so leave a blank and update it later. |
| 1732 | size_t variable_count_offset = expandBufGetLength(pReply); |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1733 | expandBufAdd4BE(pReply, 0); |
| 1734 | |
| 1735 | DebugCallbackContext context; |
| Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1736 | context.method = m; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1737 | context.pReply = pReply; |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1738 | context.variable_count = 0; |
| 1739 | context.with_generic = with_generic; |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1740 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1741 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1742 | if (code_item != nullptr) { |
| Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 1743 | uint32_t debug_info_offset = OatFile::GetDebugInfoOffset(*(m->GetDexFile()), code_item); |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1744 | m->GetDexFile()->DecodeDebugLocalInfo( |
| Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 1745 | code_item, debug_info_offset, m->IsStatic(), m->GetDexMethodIndex(), |
| 1746 | DebugCallbackContext::Callback, &context); |
| Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1747 | } |
| Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1748 | |
| Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1749 | JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1750 | } |
| 1751 | |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1752 | void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, |
| 1753 | JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1754 | ArtMethod* m = FromMethodId(method_id); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1755 | JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1756 | OutputJValue(tag, return_value, pReply); |
| 1757 | } |
| 1758 | |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1759 | void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, |
| 1760 | JDWP::ExpandBuf* pReply) { |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1761 | ArtField* f = FromFieldId(field_id); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1762 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1763 | OutputJValue(tag, field_value, pReply); |
| 1764 | } |
| 1765 | |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1766 | JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1767 | std::vector<uint8_t>* bytecodes) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1768 | ArtMethod* m = FromMethodId(method_id); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1769 | if (m == nullptr) { |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1770 | return JDWP::ERR_INVALID_METHODID; |
| 1771 | } |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1772 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1773 | size_t byte_count = code_item->insns_size_in_code_units_ * 2; |
| 1774 | const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_); |
| 1775 | const uint8_t* end = begin + byte_count; |
| 1776 | for (const uint8_t* p = begin; p != end; ++p) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1777 | bytecodes->push_back(*p); |
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1778 | } |
| 1779 | return JDWP::ERR_NONE; |
| 1780 | } |
| 1781 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1782 | JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) { |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1783 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1784 | } |
| 1785 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1786 | JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) { |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1787 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1788 | } |
| 1789 | |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1790 | static JValue GetArtFieldValue(ArtField* f, mirror::Object* o) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1791 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1792 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1793 | JValue field_value; |
| 1794 | switch (fieldType) { |
| 1795 | case Primitive::kPrimBoolean: |
| 1796 | field_value.SetZ(f->GetBoolean(o)); |
| 1797 | return field_value; |
| 1798 | |
| 1799 | case Primitive::kPrimByte: |
| 1800 | field_value.SetB(f->GetByte(o)); |
| 1801 | return field_value; |
| 1802 | |
| 1803 | case Primitive::kPrimChar: |
| 1804 | field_value.SetC(f->GetChar(o)); |
| 1805 | return field_value; |
| 1806 | |
| 1807 | case Primitive::kPrimShort: |
| 1808 | field_value.SetS(f->GetShort(o)); |
| 1809 | return field_value; |
| 1810 | |
| 1811 | case Primitive::kPrimInt: |
| 1812 | case Primitive::kPrimFloat: |
| 1813 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1814 | field_value.SetI(f->GetInt(o)); |
| 1815 | return field_value; |
| 1816 | |
| 1817 | case Primitive::kPrimLong: |
| 1818 | case Primitive::kPrimDouble: |
| 1819 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1820 | field_value.SetJ(f->GetLong(o)); |
| 1821 | return field_value; |
| 1822 | |
| 1823 | case Primitive::kPrimNot: |
| Mathieu Chartier | 1cc62e4 | 2016-10-03 18:01:28 -0700 | [diff] [blame] | 1824 | field_value.SetL(f->GetObject(o).Ptr()); |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1825 | return field_value; |
| 1826 | |
| 1827 | case Primitive::kPrimVoid: |
| 1828 | LOG(FATAL) << "Attempt to read from field of type 'void'"; |
| 1829 | UNREACHABLE(); |
| 1830 | } |
| 1831 | LOG(FATAL) << "Attempt to read from field of unknown type"; |
| 1832 | UNREACHABLE(); |
| 1833 | } |
| 1834 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1835 | static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id, |
| 1836 | JDWP::FieldId field_id, JDWP::ExpandBuf* pReply, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1837 | bool is_static) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1838 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1839 | JDWP::JdwpError error; |
| 1840 | mirror::Class* c = DecodeClass(ref_type_id, &error); |
| 1841 | if (ref_type_id != 0 && c == nullptr) { |
| 1842 | return error; |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1843 | } |
| 1844 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1845 | Thread* self = Thread::Current(); |
| 1846 | StackHandleScope<2> hs(self); |
| 1847 | MutableHandle<mirror::Object> |
| 1848 | o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error))); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1849 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1850 | return JDWP::ERR_INVALID_OBJECT; |
| 1851 | } |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1852 | ArtField* f = FromFieldId(field_id); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1853 | |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1854 | mirror::Class* receiver_class = c; |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1855 | if (receiver_class == nullptr && o != nullptr) { |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1856 | receiver_class = o->GetClass(); |
| 1857 | } |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1858 | |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1859 | // TODO: should we give up now if receiver_class is null? |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1860 | if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1861 | LOG(INFO) << "ERR_INVALID_FIELDID: " << f->PrettyField() << " " |
| 1862 | << receiver_class->PrettyClass(); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1863 | return JDWP::ERR_INVALID_FIELDID; |
| 1864 | } |
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1865 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1866 | // Ensure the field's class is initialized. |
| 1867 | Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass())); |
| 1868 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1869 | LOG(WARNING) << "Not able to initialize class for SetValues: " |
| 1870 | << mirror::Class::PrettyClass(klass.Get()); |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1871 | } |
| 1872 | |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1873 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1874 | // TODO: should we change the tests and check both? |
| 1875 | if (is_static) { |
| 1876 | if (!f->IsStatic()) { |
| 1877 | return JDWP::ERR_INVALID_FIELDID; |
| 1878 | } |
| 1879 | } else { |
| 1880 | if (f->IsStatic()) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1881 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.GetValues" |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1882 | << " on static field " << f->PrettyField(); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1883 | } |
| 1884 | } |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1885 | if (f->IsStatic()) { |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1886 | o.Assign(f->GetDeclaringClass()); |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1887 | } |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1888 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1889 | JValue field_value(GetArtFieldValue(f, o.Get())); |
| Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1890 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1891 | Dbg::OutputJValue(tag, &field_value, pReply); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1892 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1893 | } |
| 1894 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1895 | JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1896 | JDWP::ExpandBuf* pReply) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1897 | return GetFieldValueImpl(0, object_id, field_id, pReply, false); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1898 | } |
| 1899 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1900 | JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, |
| 1901 | JDWP::ExpandBuf* pReply) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1902 | return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1903 | } |
| 1904 | |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1905 | 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] | 1906 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1907 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1908 | // Debugging only happens at runtime so we know we are not running in a transaction. |
| 1909 | static constexpr bool kNoTransactionMode = false; |
| 1910 | switch (fieldType) { |
| 1911 | case Primitive::kPrimBoolean: |
| 1912 | CHECK_EQ(width, 1); |
| 1913 | f->SetBoolean<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1914 | return JDWP::ERR_NONE; |
| 1915 | |
| 1916 | case Primitive::kPrimByte: |
| 1917 | CHECK_EQ(width, 1); |
| 1918 | f->SetByte<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1919 | return JDWP::ERR_NONE; |
| 1920 | |
| 1921 | case Primitive::kPrimChar: |
| 1922 | CHECK_EQ(width, 2); |
| 1923 | f->SetChar<kNoTransactionMode>(o, static_cast<uint16_t>(value)); |
| 1924 | return JDWP::ERR_NONE; |
| 1925 | |
| 1926 | case Primitive::kPrimShort: |
| 1927 | CHECK_EQ(width, 2); |
| 1928 | f->SetShort<kNoTransactionMode>(o, static_cast<int16_t>(value)); |
| 1929 | return JDWP::ERR_NONE; |
| 1930 | |
| 1931 | case Primitive::kPrimInt: |
| 1932 | case Primitive::kPrimFloat: |
| 1933 | CHECK_EQ(width, 4); |
| 1934 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1935 | f->SetInt<kNoTransactionMode>(o, static_cast<int32_t>(value)); |
| 1936 | return JDWP::ERR_NONE; |
| 1937 | |
| 1938 | case Primitive::kPrimLong: |
| 1939 | case Primitive::kPrimDouble: |
| 1940 | CHECK_EQ(width, 8); |
| 1941 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1942 | f->SetLong<kNoTransactionMode>(o, value); |
| 1943 | return JDWP::ERR_NONE; |
| 1944 | |
| 1945 | case Primitive::kPrimNot: { |
| 1946 | JDWP::JdwpError error; |
| 1947 | mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error); |
| 1948 | if (error != JDWP::ERR_NONE) { |
| 1949 | return JDWP::ERR_INVALID_OBJECT; |
| 1950 | } |
| 1951 | if (v != nullptr) { |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1952 | ObjPtr<mirror::Class> field_type; |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1953 | { |
| 1954 | StackHandleScope<2> hs(Thread::Current()); |
| 1955 | HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v)); |
| 1956 | HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o)); |
| Vladimir Marko | 4098a7a | 2017-11-06 16:00:51 +0000 | [diff] [blame] | 1957 | field_type = f->ResolveType(); |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1958 | } |
| 1959 | if (!field_type->IsAssignableFrom(v->GetClass())) { |
| 1960 | return JDWP::ERR_INVALID_OBJECT; |
| 1961 | } |
| 1962 | } |
| 1963 | f->SetObject<kNoTransactionMode>(o, v); |
| 1964 | return JDWP::ERR_NONE; |
| 1965 | } |
| 1966 | |
| 1967 | case Primitive::kPrimVoid: |
| 1968 | LOG(FATAL) << "Attempt to write to field of type 'void'"; |
| 1969 | UNREACHABLE(); |
| 1970 | } |
| 1971 | LOG(FATAL) << "Attempt to write to field of unknown type"; |
| 1972 | UNREACHABLE(); |
| 1973 | } |
| 1974 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1975 | static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1976 | uint64_t value, int width, bool is_static) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1977 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1978 | JDWP::JdwpError error; |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1979 | Thread* self = Thread::Current(); |
| 1980 | StackHandleScope<2> hs(self); |
| 1981 | MutableHandle<mirror::Object> |
| 1982 | o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error))); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1983 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1984 | return JDWP::ERR_INVALID_OBJECT; |
| 1985 | } |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1986 | ArtField* f = FromFieldId(field_id); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1987 | |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1988 | // Ensure the field's class is initialized. |
| 1989 | Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass())); |
| 1990 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1991 | LOG(WARNING) << "Not able to initialize class for SetValues: " |
| 1992 | << mirror::Class::PrettyClass(klass.Get()); |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1993 | } |
| 1994 | |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1995 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1996 | // TODO: should we change the tests and check both? |
| 1997 | if (is_static) { |
| 1998 | if (!f->IsStatic()) { |
| 1999 | return JDWP::ERR_INVALID_FIELDID; |
| 2000 | } |
| 2001 | } else { |
| 2002 | if (f->IsStatic()) { |
| Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 2003 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues" |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 2004 | << " on static field " << f->PrettyField(); |
| Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 2005 | } |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 2006 | } |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 2007 | if (f->IsStatic()) { |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 2008 | o.Assign(f->GetDeclaringClass()); |
| jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 2009 | } |
| Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 2010 | return SetArtFieldValue(f, o.Get(), value, width); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2011 | } |
| 2012 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2013 | 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] | 2014 | int width) { |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2015 | return SetFieldValueImpl(object_id, field_id, value, width, false); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2016 | } |
| 2017 | |
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 2018 | JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { |
| 2019 | return SetFieldValueImpl(0, field_id, value, width, true); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2020 | } |
| 2021 | |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2022 | JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2023 | JDWP::JdwpError error; |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2024 | mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error); |
| 2025 | if (error != JDWP::ERR_NONE) { |
| 2026 | return error; |
| 2027 | } |
| 2028 | if (obj == nullptr) { |
| 2029 | return JDWP::ERR_INVALID_OBJECT; |
| 2030 | } |
| 2031 | { |
| 2032 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2033 | ObjPtr<mirror::Class> java_lang_String = |
| 2034 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_String); |
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 2035 | if (!java_lang_String->IsAssignableFrom(obj->GetClass())) { |
| 2036 | // This isn't a string. |
| 2037 | return JDWP::ERR_INVALID_STRING; |
| 2038 | } |
| 2039 | } |
| 2040 | *str = obj->AsString()->ToModifiedUtf8(); |
| 2041 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2042 | } |
| 2043 | |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2044 | void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { |
| 2045 | if (IsPrimitiveTag(tag)) { |
| 2046 | expandBufAdd1(pReply, tag); |
| 2047 | if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) { |
| 2048 | expandBufAdd1(pReply, return_value->GetI()); |
| 2049 | } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) { |
| 2050 | expandBufAdd2BE(pReply, return_value->GetI()); |
| 2051 | } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) { |
| 2052 | expandBufAdd4BE(pReply, return_value->GetI()); |
| 2053 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 2054 | expandBufAdd8BE(pReply, return_value->GetJ()); |
| 2055 | } else { |
| 2056 | CHECK_EQ(tag, JDWP::JT_VOID); |
| 2057 | } |
| 2058 | } else { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2059 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2060 | mirror::Object* value = return_value->GetL(); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2061 | expandBufAdd1(pReply, TagFromObject(soa, value)); |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2062 | expandBufAddObjectId(pReply, gRegistry->Add(value)); |
| 2063 | } |
| 2064 | } |
| 2065 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2066 | JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { |
| jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2067 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2068 | JDWP::JdwpError error; |
| Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2069 | DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2070 | if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2071 | return error; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2072 | } |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2073 | |
| 2074 | // 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] | 2075 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2076 | CHECK(thread_object != nullptr) << error; |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2077 | ArtField* java_lang_Thread_name_field = |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2078 | jni::DecodeArtField(WellKnownClasses::java_lang_Thread_name); |
| Mathieu Chartier | f8ac97f | 2016-10-05 15:56:52 -0700 | [diff] [blame] | 2079 | 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] | 2080 | if (s != nullptr) { |
| 2081 | *name = s->ToModifiedUtf8(); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2082 | } |
| 2083 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2084 | } |
| 2085 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2086 | JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2087 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2088 | JDWP::JdwpError error; |
| 2089 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2090 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2091 | return JDWP::ERR_INVALID_OBJECT; |
| 2092 | } |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2093 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroup"); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2094 | // Okay, so it's an object, but is it actually a thread? |
| Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2095 | DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2096 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2097 | // Zombie threads are in the null group. |
| 2098 | expandBufAddObjectId(pReply, JDWP::ObjectId(0)); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2099 | error = JDWP::ERR_NONE; |
| 2100 | } else if (error == JDWP::ERR_NONE) { |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2101 | ObjPtr<mirror::Class> c = soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2102 | CHECK(c != nullptr); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2103 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2104 | CHECK(f != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2105 | ObjPtr<mirror::Object> group = f->GetObject(thread_object); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2106 | CHECK(group != nullptr); |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2107 | JDWP::ObjectId thread_group_id = gRegistry->Add(group); |
| 2108 | expandBufAddObjectId(pReply, thread_group_id); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2109 | } |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2110 | return error; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2111 | } |
| 2112 | |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2113 | static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2114 | JDWP::ObjectId thread_group_id, JDWP::JdwpError* error) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2115 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2116 | mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, |
| 2117 | error); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2118 | if (*error != JDWP::ERR_NONE) { |
| 2119 | return nullptr; |
| 2120 | } |
| 2121 | if (thread_group == nullptr) { |
| 2122 | *error = JDWP::ERR_INVALID_OBJECT; |
| 2123 | return nullptr; |
| 2124 | } |
| Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2125 | ObjPtr<mirror::Class> c = |
| 2126 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup); |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2127 | CHECK(c != nullptr); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2128 | if (!c->IsAssignableFrom(thread_group->GetClass())) { |
| 2129 | // This is not a java.lang.ThreadGroup. |
| 2130 | *error = JDWP::ERR_INVALID_THREAD_GROUP; |
| 2131 | return nullptr; |
| 2132 | } |
| 2133 | *error = JDWP::ERR_NONE; |
| 2134 | return thread_group; |
| 2135 | } |
| 2136 | |
| 2137 | JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| 2138 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2139 | JDWP::JdwpError error; |
| 2140 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2141 | if (error != JDWP::ERR_NONE) { |
| 2142 | return error; |
| 2143 | } |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2144 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupName"); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2145 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_name); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2146 | CHECK(f != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2147 | ObjPtr<mirror::String> s = f->GetObject(thread_group)->AsString(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2148 | |
| 2149 | std::string thread_group_name(s->ToModifiedUtf8()); |
| 2150 | expandBufAddUtf8String(pReply, thread_group_name); |
| 2151 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2152 | } |
| 2153 | |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2154 | JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2155 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2156 | JDWP::JdwpError error; |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2157 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2158 | if (error != JDWP::ERR_NONE) { |
| 2159 | return error; |
| 2160 | } |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2161 | ObjPtr<mirror::Object> parent; |
| Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2162 | { |
| Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2163 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupParent"); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2164 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_parent); |
| Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2165 | CHECK(f != nullptr); |
| 2166 | parent = f->GetObject(thread_group); |
| 2167 | } |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2168 | JDWP::ObjectId parent_group_id = gRegistry->Add(parent); |
| 2169 | expandBufAddObjectId(pReply, parent_group_id); |
| 2170 | return JDWP::ERR_NONE; |
| 2171 | } |
| 2172 | |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2173 | static void GetChildThreadGroups(mirror::Object* thread_group, |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2174 | std::vector<JDWP::ObjectId>* child_thread_group_ids) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2175 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2176 | CHECK(thread_group != nullptr); |
| 2177 | |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2178 | // Get the int "ngroups" count of this thread group... |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2179 | ArtField* ngroups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_ngroups); |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2180 | CHECK(ngroups_field != nullptr); |
| 2181 | const int32_t size = ngroups_field->GetInt(thread_group); |
| 2182 | if (size == 0) { |
| 2183 | return; |
| Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2184 | } |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2185 | |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2186 | // Get the ThreadGroup[] "groups" out of this thread group... |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2187 | ArtField* groups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_groups); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2188 | ObjPtr<mirror::Object> groups_array = groups_field->GetObject(thread_group); |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2189 | |
| 2190 | CHECK(groups_array != nullptr); |
| 2191 | CHECK(groups_array->IsObjectArray()); |
| 2192 | |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2193 | ObjPtr<mirror::ObjectArray<mirror::Object>> groups_array_as_array = |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2194 | groups_array->AsObjectArray<mirror::Object>(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2195 | |
| 2196 | // Copy the first 'size' elements out of the array into the result. |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2197 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2198 | for (int32_t i = 0; i < size; ++i) { |
| Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2199 | 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] | 2200 | } |
| 2201 | } |
| 2202 | |
| 2203 | JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id, |
| 2204 | JDWP::ExpandBuf* pReply) { |
| 2205 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2206 | JDWP::JdwpError error; |
| 2207 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2208 | if (error != JDWP::ERR_NONE) { |
| 2209 | return error; |
| 2210 | } |
| 2211 | |
| 2212 | // Add child threads. |
| 2213 | { |
| 2214 | std::vector<JDWP::ObjectId> child_thread_ids; |
| 2215 | GetThreads(thread_group, &child_thread_ids); |
| 2216 | expandBufAdd4BE(pReply, child_thread_ids.size()); |
| 2217 | for (JDWP::ObjectId child_thread_id : child_thread_ids) { |
| 2218 | expandBufAddObjectId(pReply, child_thread_id); |
| 2219 | } |
| 2220 | } |
| 2221 | |
| 2222 | // Add child thread groups. |
| 2223 | { |
| 2224 | std::vector<JDWP::ObjectId> child_thread_groups_ids; |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2225 | GetChildThreadGroups(thread_group, &child_thread_groups_ids); |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2226 | expandBufAdd4BE(pReply, child_thread_groups_ids.size()); |
| 2227 | for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) { |
| 2228 | expandBufAddObjectId(pReply, child_thread_group_id); |
| 2229 | } |
| 2230 | } |
| 2231 | |
| 2232 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2233 | } |
| 2234 | |
| 2235 | JDWP::ObjectId Dbg::GetSystemThreadGroupId() { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2236 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2237 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2238 | ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass()); |
| Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 2239 | return gRegistry->Add(group); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2240 | } |
| 2241 | |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2242 | JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) { |
| 2243 | switch (state) { |
| 2244 | case kBlocked: |
| 2245 | return JDWP::TS_MONITOR; |
| 2246 | case kNative: |
| 2247 | case kRunnable: |
| 2248 | case kSuspended: |
| 2249 | return JDWP::TS_RUNNING; |
| 2250 | case kSleeping: |
| 2251 | return JDWP::TS_SLEEPING; |
| 2252 | case kStarting: |
| 2253 | case kTerminated: |
| 2254 | return JDWP::TS_ZOMBIE; |
| 2255 | case kTimedWaiting: |
| Alex Light | 77fee87 | 2017-09-05 14:51:49 -0700 | [diff] [blame] | 2256 | case kWaitingForTaskProcessor: |
| 2257 | case kWaitingForLockInflation: |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2258 | case kWaitingForCheckPointsToRun: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2259 | case kWaitingForDebuggerSend: |
| 2260 | case kWaitingForDebuggerSuspension: |
| 2261 | case kWaitingForDebuggerToAttach: |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2262 | case kWaitingForDeoptimization: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2263 | case kWaitingForGcToComplete: |
| Mathieu Chartier | b43390c | 2015-05-12 10:47:11 -0700 | [diff] [blame] | 2264 | case kWaitingForGetObjectsAllocated: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2265 | case kWaitingForJniOnLoad: |
| Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2266 | case kWaitingForMethodTracingStart: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2267 | case kWaitingForSignalCatcherOutput: |
| Hiroshi Yamauchi | 0c8c303 | 2015-01-16 16:54:35 -0800 | [diff] [blame] | 2268 | case kWaitingForVisitObjects: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2269 | case kWaitingInMainDebuggerLoop: |
| 2270 | case kWaitingInMainSignalCatcherLoop: |
| 2271 | case kWaitingPerformingGc: |
| Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 2272 | case kWaitingWeakGcRootRead: |
| Hiroshi Yamauchi | 76f55b0 | 2015-08-21 16:10:39 -0700 | [diff] [blame] | 2273 | case kWaitingForGcThreadFlip: |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2274 | case kWaiting: |
| 2275 | return JDWP::TS_WAIT; |
| 2276 | // Don't add a 'default' here so the compiler can spot incompatible enum changes. |
| 2277 | } |
| 2278 | LOG(FATAL) << "Unknown thread state: " << state; |
| 2279 | return JDWP::TS_ZOMBIE; |
| 2280 | } |
| 2281 | |
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2282 | JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, |
| 2283 | JDWP::JdwpSuspendStatus* pSuspendStatus) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2284 | ScopedObjectAccess soa(Thread::Current()); |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2285 | |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2286 | *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED; |
| 2287 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2288 | JDWP::JdwpError error; |
| 2289 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2290 | if (error != JDWP::ERR_NONE) { |
| 2291 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2292 | *pThreadStatus = JDWP::TS_ZOMBIE; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2293 | return JDWP::ERR_NONE; |
| 2294 | } |
| 2295 | return error; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2296 | } |
| 2297 | |
| Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2298 | if (IsSuspendedForDebugger(soa, thread)) { |
| 2299 | *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED; |
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2300 | } |
| 2301 | |
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2302 | *pThreadStatus = ToJdwpThreadStatus(thread->GetState()); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2303 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2304 | } |
| 2305 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2306 | JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2307 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2308 | JDWP::JdwpError error; |
| 2309 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2310 | if (error != JDWP::ERR_NONE) { |
| 2311 | return error; |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2312 | } |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2313 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2314 | expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2315 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2316 | } |
| 2317 | |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2318 | JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) { |
| 2319 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2320 | JDWP::JdwpError error; |
| 2321 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2322 | if (error != JDWP::ERR_NONE) { |
| 2323 | return error; |
| 2324 | } |
| Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2325 | thread->Interrupt(soa.Self()); |
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2326 | return JDWP::ERR_NONE; |
| 2327 | } |
| 2328 | |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2329 | static bool IsInDesiredThreadGroup(mirror::Object* desired_thread_group, mirror::Object* peer) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2330 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2331 | // Do we want threads from all thread groups? |
| 2332 | if (desired_thread_group == nullptr) { |
| 2333 | return true; |
| 2334 | } |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2335 | ArtField* thread_group_field = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2336 | DCHECK(thread_group_field != nullptr); |
| Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2337 | ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2338 | return (group == desired_thread_group); |
| 2339 | } |
| 2340 | |
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2341 | 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] | 2342 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2343 | std::list<Thread*> all_threads_list; |
| 2344 | { |
| 2345 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 2346 | all_threads_list = Runtime::Current()->GetThreadList()->GetList(); |
| 2347 | } |
| 2348 | for (Thread* t : all_threads_list) { |
| 2349 | if (t == Dbg::GetDebugThread()) { |
| 2350 | // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and |
| 2351 | // query all threads, so it's easier if we just don't tell them about this thread. |
| 2352 | continue; |
| 2353 | } |
| 2354 | if (t->IsStillStarting()) { |
| 2355 | // This thread is being started (and has been registered in the thread list). However, it is |
| 2356 | // not completely started yet so we must ignore it. |
| 2357 | continue; |
| 2358 | } |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 2359 | mirror::Object* peer = t->GetPeerFromOtherThread(); |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2360 | if (peer == nullptr) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 2361 | // 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] | 2362 | // this thread yet. |
| 2363 | // TODO: if we identified threads to the debugger by their Thread* |
| 2364 | // rather than their peer's mirror::Object*, we could fix this. |
| 2365 | // Doing so might help us report ZOMBIE threads too. |
| 2366 | continue; |
| 2367 | } |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2368 | if (IsInDesiredThreadGroup(thread_group, peer)) { |
| Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2369 | thread_ids->push_back(gRegistry->Add(peer)); |
| 2370 | } |
| 2371 | } |
| Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2372 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2373 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2374 | static int GetStackDepth(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2375 | struct CountStackDepthVisitor : public StackVisitor { |
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2376 | explicit CountStackDepthVisitor(Thread* thread_in) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2377 | : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2378 | depth(0) {} |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2379 | |
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 2380 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2381 | // annotalysis. |
| 2382 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2383 | if (!GetMethod()->IsRuntimeMethod()) { |
| Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 2384 | ++depth; |
| 2385 | } |
| Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2386 | return true; |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2387 | } |
| 2388 | size_t depth; |
| 2389 | }; |
| Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 2390 | |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2391 | CountStackDepthVisitor visitor(thread); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2392 | visitor.WalkStack(); |
| Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2393 | return visitor.depth; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2394 | } |
| 2395 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2396 | JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2397 | ScopedObjectAccess soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2398 | JDWP::JdwpError error; |
| 2399 | *result = 0; |
| 2400 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2401 | if (error != JDWP::ERR_NONE) { |
| 2402 | return error; |
| 2403 | } |
| Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2404 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2405 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2406 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2407 | *result = GetStackDepth(thread); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2408 | return JDWP::ERR_NONE; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2409 | } |
| 2410 | |
| Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 2411 | JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, |
| 2412 | size_t frame_count, JDWP::ExpandBuf* buf) { |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2413 | class GetFrameVisitor : public StackVisitor { |
| 2414 | public: |
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2415 | GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in, |
| 2416 | JDWP::ExpandBuf* buf_in) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2417 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2418 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2419 | depth_(0), |
| 2420 | start_frame_(start_frame_in), |
| 2421 | frame_count_(frame_count_in), |
| 2422 | buf_(buf_in) { |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2423 | expandBufAdd4BE(buf_, frame_count_); |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2424 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2425 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2426 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2427 | if (GetMethod()->IsRuntimeMethod()) { |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 2428 | return true; // The debugger can't do anything useful with a frame that has no Method*. |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2429 | } |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2430 | if (depth_ >= start_frame_ + frame_count_) { |
| Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2431 | return false; |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2432 | } |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2433 | if (depth_ >= start_frame_) { |
| 2434 | JDWP::FrameId frame_id(GetFrameId()); |
| 2435 | JDWP::JdwpLocation location; |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2436 | SetJdwpLocation(&location, GetMethod(), GetDexPc()); |
| Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2437 | VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location; |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2438 | expandBufAdd8BE(buf_, frame_id); |
| 2439 | expandBufAddLocation(buf_, location); |
| 2440 | } |
| 2441 | ++depth_; |
| Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2442 | return true; |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2443 | } |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2444 | |
| 2445 | private: |
| 2446 | size_t depth_; |
| 2447 | const size_t start_frame_; |
| 2448 | const size_t frame_count_; |
| 2449 | JDWP::ExpandBuf* buf_; |
| Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2450 | }; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2451 | |
| 2452 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2453 | JDWP::JdwpError error; |
| 2454 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2455 | if (error != JDWP::ERR_NONE) { |
| 2456 | return error; |
| 2457 | } |
| Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2458 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2459 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2460 | } |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2461 | GetFrameVisitor visitor(thread, start_frame, frame_count, buf); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2462 | visitor.WalkStack(); |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2463 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2464 | } |
| 2465 | |
| 2466 | JDWP::ObjectId Dbg::GetThreadSelfId() { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2467 | return GetThreadId(Thread::Current()); |
| 2468 | } |
| 2469 | |
| 2470 | JDWP::ObjectId Dbg::GetThreadId(Thread* thread) { |
| Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 2471 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 2472 | return gRegistry->Add(thread->GetPeerFromOtherThread()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2473 | } |
| 2474 | |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2475 | void Dbg::SuspendVM() { |
| Hiroshi Yamauchi | 8f95cf3 | 2016-04-19 11:14:06 -0700 | [diff] [blame] | 2476 | // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335. |
| 2477 | gc::ScopedGCCriticalSection gcs(Thread::Current(), |
| 2478 | gc::kGcCauseDebugger, |
| 2479 | gc::kCollectorTypeDebugger); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2480 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2481 | } |
| 2482 | |
| 2483 | void Dbg::ResumeVM() { |
| Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 2484 | Runtime::Current()->GetThreadList()->ResumeAllForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2485 | } |
| 2486 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2487 | JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2488 | Thread* self = Thread::Current(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2489 | ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2490 | { |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2491 | ScopedObjectAccess soa(self); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2492 | JDWP::JdwpError error; |
| 2493 | peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error))); |
| Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2494 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2495 | if (peer.get() == nullptr) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2496 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2497 | } |
| Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 2498 | // Suspend thread to build stack trace. |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2499 | bool timed_out; |
| Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2500 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 2501 | Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), |
| 2502 | request_suspension, |
| Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 2503 | SuspendReason::kForDebugger, |
| Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2504 | &timed_out); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2505 | if (thread != nullptr) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2506 | return JDWP::ERR_NONE; |
| Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2507 | } else if (timed_out) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2508 | return JDWP::ERR_INTERNAL; |
| 2509 | } else { |
| 2510 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2511 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2512 | } |
| 2513 | |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2514 | void Dbg::ResumeThread(JDWP::ObjectId thread_id) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2515 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2516 | JDWP::JdwpError error; |
| 2517 | mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2518 | CHECK(peer != nullptr) << error; |
| jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2519 | Thread* thread; |
| 2520 | { |
| 2521 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2522 | thread = Thread::FromManagedThread(soa, peer); |
| 2523 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2524 | if (thread == nullptr) { |
| Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2525 | LOG(WARNING) << "No such thread for resume: " << peer; |
| 2526 | return; |
| 2527 | } |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2528 | bool needs_resume; |
| 2529 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2530 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Sebastien Hertz | 70d6027 | 2017-04-14 14:18:36 +0200 | [diff] [blame] | 2531 | needs_resume = thread->GetDebugSuspendCount() > 0; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2532 | } |
| 2533 | if (needs_resume) { |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 2534 | bool resumed = Runtime::Current()->GetThreadList()->Resume(thread, SuspendReason::kForDebugger); |
| 2535 | DCHECK(resumed); |
| Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 2536 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2537 | } |
| 2538 | |
| 2539 | void Dbg::SuspendSelf() { |
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2540 | Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2541 | } |
| 2542 | |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2543 | struct GetThisVisitor : public StackVisitor { |
| Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2544 | GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2545 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2546 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2547 | this_object(nullptr), |
| 2548 | frame_id(frame_id_in) {} |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2549 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2550 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2551 | // annotalysis. |
| 2552 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2553 | if (frame_id != GetFrameId()) { |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2554 | return true; // continue |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2555 | } else { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2556 | this_object = GetThisObject(); |
| 2557 | return false; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2558 | } |
| Elliott Hughes | 86b0010 | 2011-12-05 17:54:26 -0800 | [diff] [blame] | 2559 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2560 | |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2561 | mirror::Object* this_object; |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2562 | JDWP::FrameId frame_id; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2563 | }; |
| 2564 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2565 | JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, |
| 2566 | JDWP::ObjectId* result) { |
| 2567 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2568 | JDWP::JdwpError error; |
| 2569 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2570 | if (error != JDWP::ERR_NONE) { |
| 2571 | return error; |
| 2572 | } |
| 2573 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2574 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2575 | } |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2576 | std::unique_ptr<Context> context(Context::Create()); |
| Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2577 | GetThisVisitor visitor(thread, context.get(), frame_id); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2578 | visitor.WalkStack(); |
| Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2579 | *result = gRegistry->Add(visitor.this_object); |
| 2580 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2581 | } |
| 2582 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2583 | // Walks the stack until we find the frame with the given FrameId. |
| 2584 | class FindFrameVisitor FINAL : public StackVisitor { |
| 2585 | public: |
| 2586 | FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2587 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2588 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2589 | frame_id_(frame_id), |
| 2590 | error_(JDWP::ERR_INVALID_FRAMEID) {} |
| Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 2591 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2592 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2593 | // annotalysis. |
| 2594 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 2595 | if (GetFrameId() != frame_id_) { |
| 2596 | return true; // Not our frame, carry on. |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2597 | } |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2598 | ArtMethod* m = GetMethod(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2599 | if (m->IsNative()) { |
| 2600 | // We can't read/write local value from/into native method. |
| 2601 | error_ = JDWP::ERR_OPAQUE_FRAME; |
| 2602 | } else { |
| 2603 | // We found our frame. |
| 2604 | error_ = JDWP::ERR_NONE; |
| 2605 | } |
| 2606 | return false; |
| 2607 | } |
| 2608 | |
| 2609 | JDWP::JdwpError GetError() const { |
| 2610 | return error_; |
| 2611 | } |
| 2612 | |
| 2613 | private: |
| 2614 | const JDWP::FrameId frame_id_; |
| 2615 | JDWP::JdwpError error_; |
| Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 2616 | |
| 2617 | DISALLOW_COPY_AND_ASSIGN(FindFrameVisitor); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2618 | }; |
| 2619 | |
| 2620 | JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { |
| 2621 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2622 | JDWP::FrameId frame_id = request->ReadFrameId(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2623 | |
| 2624 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2625 | JDWP::JdwpError error; |
| 2626 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2627 | if (error != JDWP::ERR_NONE) { |
| 2628 | return error; |
| 2629 | } |
| 2630 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2631 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2632 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2633 | // Find the frame with the given frame_id. |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2634 | std::unique_ptr<Context> context(Context::Create()); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2635 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2636 | visitor.WalkStack(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2637 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2638 | return visitor.GetError(); |
| 2639 | } |
| 2640 | |
| 2641 | // Read the values from visitor's context. |
| 2642 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2643 | expandBufAdd4BE(pReply, slot_count); /* "int values" */ |
| 2644 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2645 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2646 | JDWP::JdwpTag reqSigByte = request->ReadTag(); |
| 2647 | |
| 2648 | VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte; |
| 2649 | |
| 2650 | size_t width = Dbg::GetTagWidth(reqSigByte); |
| Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 2651 | uint8_t* ptr = expandBufAddSpace(pReply, width + 1); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2652 | error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2653 | if (error != JDWP::ERR_NONE) { |
| 2654 | return error; |
| 2655 | } |
| 2656 | } |
| 2657 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2658 | } |
| 2659 | |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2660 | constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION; |
| 2661 | |
| 2662 | static std::string GetStackContextAsString(const StackVisitor& visitor) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2663 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2664 | 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] | 2665 | ArtMethod::PrettyMethod(visitor.GetMethod()).c_str()); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2666 | } |
| 2667 | |
| 2668 | static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2669 | JDWP::JdwpTag tag) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2670 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2671 | LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg |
| 2672 | << GetStackContextAsString(visitor); |
| 2673 | return kStackFrameLocalAccessError; |
| 2674 | } |
| 2675 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2676 | JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, |
| 2677 | int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2678 | ArtMethod* m = visitor.GetMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2679 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2680 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2681 | if (error != JDWP::ERR_NONE) { |
| 2682 | return error; |
| 2683 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2684 | // 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] | 2685 | switch (tag) { |
| 2686 | case JDWP::JT_BOOLEAN: { |
| 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); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2691 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2692 | VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; |
| 2693 | JDWP::Set1(buf + 1, intVal != 0); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2694 | break; |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2695 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2696 | case JDWP::JT_BYTE: { |
| 2697 | CHECK_EQ(width, 1U); |
| 2698 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2699 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2700 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2701 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2702 | VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; |
| 2703 | JDWP::Set1(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2704 | break; |
| 2705 | } |
| 2706 | case JDWP::JT_SHORT: |
| 2707 | case JDWP::JT_CHAR: { |
| 2708 | CHECK_EQ(width, 2U); |
| 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 short/char local " << vreg << " = " << intVal; |
| 2714 | JDWP::Set2BE(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2715 | break; |
| 2716 | } |
| 2717 | case JDWP::JT_INT: { |
| 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, kIntVReg, &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 int 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_FLOAT: { |
| 2728 | CHECK_EQ(width, 4U); |
| 2729 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2730 | if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) { |
| 2731 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2732 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2733 | VLOG(jdwp) << "get float local " << vreg << " = " << intVal; |
| 2734 | JDWP::Set4BE(buf + 1, intVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2735 | break; |
| 2736 | } |
| 2737 | case JDWP::JT_ARRAY: |
| 2738 | case JDWP::JT_CLASS_LOADER: |
| 2739 | case JDWP::JT_CLASS_OBJECT: |
| 2740 | case JDWP::JT_OBJECT: |
| 2741 | case JDWP::JT_STRING: |
| 2742 | case JDWP::JT_THREAD: |
| 2743 | case JDWP::JT_THREAD_GROUP: { |
| 2744 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| 2745 | uint32_t intVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2746 | if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) { |
| 2747 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2748 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2749 | mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal); |
| 2750 | VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o; |
| 2751 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) { |
| 2752 | LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u", |
| 2753 | reinterpret_cast<uintptr_t>(o), vreg) |
| 2754 | << GetStackContextAsString(visitor); |
| 2755 | UNREACHABLE(); |
| 2756 | } |
| 2757 | tag = TagFromObject(soa, o); |
| 2758 | JDWP::SetObjectId(buf + 1, gRegistry->Add(o)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2759 | break; |
| 2760 | } |
| 2761 | case JDWP::JT_DOUBLE: { |
| 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, kDoubleLoVReg, kDoubleHiVReg, &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 double 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 | case JDWP::JT_LONG: { |
| 2772 | CHECK_EQ(width, 8U); |
| 2773 | uint64_t longVal; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2774 | if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) { |
| 2775 | return FailGetLocalValue(visitor, vreg, tag); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2776 | } |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2777 | VLOG(jdwp) << "get long local " << vreg << " = " << longVal; |
| 2778 | JDWP::Set8BE(buf + 1, longVal); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2779 | break; |
| 2780 | } |
| 2781 | default: |
| 2782 | LOG(FATAL) << "Unknown tag " << tag; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2783 | UNREACHABLE(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2784 | } |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2785 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2786 | // Prepend tag, which may have been updated. |
| 2787 | JDWP::Set1(buf, tag); |
| 2788 | return JDWP::ERR_NONE; |
| 2789 | } |
| 2790 | |
| 2791 | JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { |
| 2792 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2793 | JDWP::FrameId frame_id = request->ReadFrameId(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2794 | |
| 2795 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2796 | JDWP::JdwpError error; |
| 2797 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2798 | if (error != JDWP::ERR_NONE) { |
| 2799 | return error; |
| 2800 | } |
| 2801 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2802 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2803 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2804 | // Find the frame with the given frame_id. |
| Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2805 | std::unique_ptr<Context> context(Context::Create()); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2806 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2807 | visitor.WalkStack(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2808 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2809 | return visitor.GetError(); |
| 2810 | } |
| 2811 | |
| 2812 | // Writes the values into visitor's context. |
| 2813 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2814 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2815 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2816 | JDWP::JdwpTag sigByte = request->ReadTag(); |
| 2817 | size_t width = Dbg::GetTagWidth(sigByte); |
| 2818 | uint64_t value = request->ReadValue(width); |
| 2819 | |
| 2820 | VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value; |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2821 | error = Dbg::SetLocalValue(thread, visitor, slot, sigByte, value, width); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2822 | if (error != JDWP::ERR_NONE) { |
| 2823 | return error; |
| 2824 | } |
| 2825 | } |
| 2826 | return JDWP::ERR_NONE; |
| 2827 | } |
| 2828 | |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2829 | template<typename T> |
| 2830 | static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2831 | JDWP::JdwpTag tag, T value) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2832 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2833 | LOG(ERROR) << "Failed to write " << tag << " local " << value |
| 2834 | << " (0x" << std::hex << value << ") into register v" << vreg |
| 2835 | << GetStackContextAsString(visitor); |
| 2836 | return kStackFrameLocalAccessError; |
| 2837 | } |
| 2838 | |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2839 | JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot, |
| 2840 | JDWP::JdwpTag tag, uint64_t value, size_t width) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2841 | ArtMethod* m = visitor.GetMethod(); |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2842 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2843 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2844 | if (error != JDWP::ERR_NONE) { |
| 2845 | return error; |
| 2846 | } |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2847 | // 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] | 2848 | switch (tag) { |
| 2849 | case JDWP::JT_BOOLEAN: |
| 2850 | case JDWP::JT_BYTE: |
| 2851 | CHECK_EQ(width, 1U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2852 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2853 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2854 | } |
| 2855 | break; |
| 2856 | case JDWP::JT_SHORT: |
| 2857 | case JDWP::JT_CHAR: |
| 2858 | CHECK_EQ(width, 2U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2859 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2860 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2861 | } |
| 2862 | break; |
| 2863 | case JDWP::JT_INT: |
| 2864 | CHECK_EQ(width, 4U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2865 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2866 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2867 | } |
| 2868 | break; |
| 2869 | case JDWP::JT_FLOAT: |
| 2870 | CHECK_EQ(width, 4U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2871 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2872 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2873 | } |
| 2874 | break; |
| 2875 | case JDWP::JT_ARRAY: |
| 2876 | case JDWP::JT_CLASS_LOADER: |
| 2877 | case JDWP::JT_CLASS_OBJECT: |
| 2878 | case JDWP::JT_OBJECT: |
| 2879 | case JDWP::JT_STRING: |
| 2880 | case JDWP::JT_THREAD: |
| 2881 | case JDWP::JT_THREAD_GROUP: { |
| 2882 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2883 | mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value), |
| 2884 | &error); |
| 2885 | if (error != JDWP::ERR_NONE) { |
| 2886 | VLOG(jdwp) << tag << " object " << o << " is an invalid object"; |
| 2887 | return JDWP::ERR_INVALID_OBJECT; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2888 | } |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2889 | 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] | 2890 | kReferenceVReg)) { |
| 2891 | return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o)); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2892 | } |
| 2893 | break; |
| 2894 | } |
| 2895 | case JDWP::JT_DOUBLE: { |
| 2896 | CHECK_EQ(width, 8U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2897 | if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2898 | return FailSetLocalValue(visitor, vreg, tag, value); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2899 | } |
| 2900 | break; |
| 2901 | } |
| 2902 | case JDWP::JT_LONG: { |
| 2903 | CHECK_EQ(width, 8U); |
| Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2904 | if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) { |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2905 | return FailSetLocalValue(visitor, vreg, tag, value); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2906 | } |
| 2907 | break; |
| 2908 | } |
| 2909 | default: |
| 2910 | LOG(FATAL) << "Unknown tag " << tag; |
| Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2911 | UNREACHABLE(); |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2912 | } |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2913 | |
| 2914 | // If we set the local variable in a compiled frame, we need to trigger a deoptimization of |
| 2915 | // the stack so we continue execution with the interpreter using the new value(s) of the updated |
| 2916 | // local variable(s). To achieve this, we install instrumentation exit stub on each method of the |
| 2917 | // thread's stack. The stub will cause the deoptimization to happen. |
| 2918 | if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) { |
| 2919 | Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread); |
| 2920 | } |
| 2921 | |
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2922 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2923 | } |
| 2924 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2925 | static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2926 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2927 | DCHECK(location != nullptr); |
| 2928 | if (m == nullptr) { |
| 2929 | memset(location, 0, sizeof(*location)); |
| 2930 | } else { |
| Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 2931 | location->method = m->GetCanonicalMethod(kRuntimePointerSize); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2932 | 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] | 2933 | } |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2934 | } |
| 2935 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2936 | void Dbg::PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object, |
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2937 | int event_flags, const JValue* return_value) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2938 | if (!IsDebuggerActive()) { |
| 2939 | return; |
| 2940 | } |
| 2941 | DCHECK(m != nullptr); |
| 2942 | DCHECK_EQ(m->IsStatic(), this_object == nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2943 | JDWP::EventLocation location; |
| 2944 | SetEventLocation(&location, m, dex_pc); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2945 | |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2946 | // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent. |
| 2947 | // This is required to be able to call JNI functions to create JDWP ids. To achieve this, |
| 2948 | // we temporarily clear the current thread's exception (if any) and will restore it after |
| 2949 | // the call. |
| 2950 | // Note: the only way to get a pending exception here is to suspend on a move-exception |
| 2951 | // instruction. |
| 2952 | Thread* const self = Thread::Current(); |
| 2953 | StackHandleScope<1> hs(self); |
| 2954 | Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException())); |
| 2955 | self->ClearException(); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2956 | if (kIsDebugBuild && pending_exception != nullptr) { |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2957 | const DexFile::CodeItem* code_item = location.method->GetCodeItem(); |
| 2958 | const Instruction* instr = Instruction::At(&code_item->insns_[location.dex_pc]); |
| 2959 | CHECK_EQ(Instruction::MOVE_EXCEPTION, instr->Opcode()); |
| 2960 | } |
| 2961 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2962 | gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value); |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2963 | |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2964 | if (pending_exception != nullptr) { |
| Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2965 | self->SetException(pending_exception.Get()); |
| 2966 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2967 | } |
| 2968 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2969 | void Dbg::PostFieldAccessEvent(ArtMethod* m, int dex_pc, |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2970 | mirror::Object* this_object, ArtField* f) { |
| Alex Light | e00ec30 | 2017-06-16 08:56:43 -0700 | [diff] [blame] | 2971 | // TODO We should send events for native methods. |
| 2972 | if (!IsDebuggerActive() || m->IsNative()) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2973 | return; |
| 2974 | } |
| 2975 | DCHECK(m != nullptr); |
| 2976 | DCHECK(f != nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2977 | JDWP::EventLocation location; |
| 2978 | SetEventLocation(&location, m, dex_pc); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2979 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2980 | gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2981 | } |
| 2982 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2983 | void Dbg::PostFieldModificationEvent(ArtMethod* m, int dex_pc, |
| Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2984 | mirror::Object* this_object, ArtField* f, |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2985 | const JValue* field_value) { |
| Alex Light | e00ec30 | 2017-06-16 08:56:43 -0700 | [diff] [blame] | 2986 | // TODO We should send events for native methods. |
| 2987 | if (!IsDebuggerActive() || m->IsNative()) { |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2988 | return; |
| 2989 | } |
| 2990 | DCHECK(m != nullptr); |
| 2991 | DCHECK(f != nullptr); |
| 2992 | DCHECK(field_value != nullptr); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2993 | JDWP::EventLocation location; |
| 2994 | SetEventLocation(&location, m, dex_pc); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2995 | |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2996 | gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true); |
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2997 | } |
| 2998 | |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2999 | /** |
| 3000 | * Finds the location where this exception will be caught. We search until we reach the top |
| 3001 | * frame, in which case this exception is considered uncaught. |
| 3002 | */ |
| 3003 | class CatchLocationFinder : public StackVisitor { |
| 3004 | public: |
| 3005 | CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3006 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 3007 | : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3008 | exception_(exception), |
| 3009 | handle_scope_(self), |
| 3010 | this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)), |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3011 | catch_method_(nullptr), |
| 3012 | throw_method_(nullptr), |
| Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 3013 | catch_dex_pc_(dex::kDexNoIndex), |
| 3014 | throw_dex_pc_(dex::kDexNoIndex) { |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3015 | } |
| 3016 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3017 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3018 | ArtMethod* method = GetMethod(); |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3019 | DCHECK(method != nullptr); |
| 3020 | if (method->IsRuntimeMethod()) { |
| 3021 | // Ignore callee save method. |
| 3022 | DCHECK(method->IsCalleeSaveMethod()); |
| 3023 | return true; |
| 3024 | } |
| 3025 | |
| 3026 | uint32_t dex_pc = GetDexPc(); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3027 | if (throw_method_ == nullptr) { |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3028 | // First Java method found. It is either the method that threw the exception, |
| 3029 | // or the Java native method that is reporting an exception thrown by |
| 3030 | // native code. |
| 3031 | this_at_throw_.Assign(GetThisObject()); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3032 | throw_method_ = method; |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3033 | throw_dex_pc_ = dex_pc; |
| 3034 | } |
| 3035 | |
| Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 3036 | if (dex_pc != dex::kDexNoIndex) { |
| Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 3037 | StackHandleScope<1> hs(GetThread()); |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3038 | uint32_t found_dex_pc; |
| 3039 | Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass())); |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3040 | bool unused_clear_exception; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3041 | found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception); |
| Andreas Gampe | e2abbc6 | 2017-09-15 11:59:26 -0700 | [diff] [blame] | 3042 | if (found_dex_pc != dex::kDexNoIndex) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3043 | catch_method_ = method; |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3044 | catch_dex_pc_ = found_dex_pc; |
| 3045 | return false; // End stack walk. |
| 3046 | } |
| 3047 | } |
| 3048 | return true; // Continue stack walk. |
| 3049 | } |
| 3050 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3051 | ArtMethod* GetCatchMethod() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3052 | return catch_method_; |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3053 | } |
| 3054 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3055 | ArtMethod* GetThrowMethod() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3056 | return throw_method_; |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3057 | } |
| 3058 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3059 | mirror::Object* GetThisAtThrow() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3060 | return this_at_throw_.Get(); |
| 3061 | } |
| 3062 | |
| 3063 | uint32_t GetCatchDexPc() const { |
| 3064 | return catch_dex_pc_; |
| 3065 | } |
| 3066 | |
| 3067 | uint32_t GetThrowDexPc() const { |
| 3068 | return throw_dex_pc_; |
| 3069 | } |
| 3070 | |
| 3071 | private: |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3072 | const Handle<mirror::Throwable>& exception_; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3073 | StackHandleScope<1> handle_scope_; |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3074 | MutableHandle<mirror::Object> this_at_throw_; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3075 | ArtMethod* catch_method_; |
| 3076 | ArtMethod* throw_method_; |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3077 | uint32_t catch_dex_pc_; |
| 3078 | uint32_t throw_dex_pc_; |
| 3079 | |
| 3080 | DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder); |
| 3081 | }; |
| 3082 | |
| 3083 | void Dbg::PostException(mirror::Throwable* exception_object) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3084 | if (!IsDebuggerActive()) { |
| Ian Rogers | 0ad5bb8 | 2011-12-07 10:16:32 -0800 | [diff] [blame] | 3085 | return; |
| 3086 | } |
| Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 3087 | Thread* const self = Thread::Current(); |
| 3088 | StackHandleScope<1> handle_scope(self); |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3089 | Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object)); |
| 3090 | std::unique_ptr<Context> context(Context::Create()); |
| Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 3091 | CatchLocationFinder clf(self, h_exception, context.get()); |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3092 | clf.WalkStack(/* include_transitions */ false); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3093 | JDWP::EventLocation exception_throw_location; |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3094 | SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc()); |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3095 | JDWP::EventLocation exception_catch_location; |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3096 | SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc()); |
| Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 3097 | |
| Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3098 | gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location, |
| 3099 | clf.GetThisAtThrow()); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3100 | } |
| 3101 | |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 3102 | void Dbg::PostClassPrepare(mirror::Class* c) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3103 | if (!IsDebuggerActive()) { |
| Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 3104 | return; |
| 3105 | } |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3106 | gJdwpState->PostClassPrepare(c); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3107 | } |
| 3108 | |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3109 | void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3110 | ArtMethod* m, uint32_t dex_pc, |
| Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 3111 | int event_flags, const JValue* return_value) { |
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3112 | if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) { |
| Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 3113 | return; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3114 | } |
| 3115 | |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3116 | if (IsBreakpoint(m, dex_pc)) { |
| 3117 | event_flags |= kBreakpoint; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3118 | } |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3119 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3120 | // If the debugger is single-stepping one of our threads, check to |
| 3121 | // see if we're that thread and we've reached a step point. |
| 3122 | const SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3123 | if (single_step_control != nullptr) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3124 | CHECK(!m->IsNative()); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3125 | if (single_step_control->GetStepDepth() == JDWP::SD_INTO) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3126 | // Step into method calls. We break when the line number |
| 3127 | // or method pointer changes. If we're in SS_MIN mode, we |
| 3128 | // always stop. |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3129 | if (single_step_control->GetMethod() != m) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3130 | event_flags |= kSingleStep; |
| 3131 | VLOG(jdwp) << "SS new method"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3132 | } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3133 | event_flags |= kSingleStep; |
| 3134 | VLOG(jdwp) << "SS new instruction"; |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3135 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3136 | event_flags |= kSingleStep; |
| 3137 | VLOG(jdwp) << "SS new line"; |
| 3138 | } |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3139 | } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3140 | // Step over method calls. We break when the line number is |
| 3141 | // different and the frame depth is <= the original frame |
| 3142 | // depth. (We can't just compare on the method, because we |
| 3143 | // might get unrolled past it by an exception, and it's tricky |
| 3144 | // to identify recursion.) |
| 3145 | |
| 3146 | int stack_depth = GetStackDepth(thread); |
| 3147 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3148 | if (stack_depth < single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3149 | // Popped up one or more frames, always trigger. |
| 3150 | event_flags |= kSingleStep; |
| 3151 | VLOG(jdwp) << "SS method pop"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3152 | } else if (stack_depth == single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3153 | // Same depth, see if we moved. |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3154 | if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3155 | event_flags |= kSingleStep; |
| 3156 | VLOG(jdwp) << "SS new instruction"; |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3157 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3158 | event_flags |= kSingleStep; |
| 3159 | VLOG(jdwp) << "SS new line"; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3160 | } |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3161 | } |
| 3162 | } else { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3163 | CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3164 | // Return from the current method. We break when the frame |
| 3165 | // depth pops up. |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3166 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3167 | // This differs from the "method exit" break in that it stops |
| 3168 | // with the PC at the next instruction in the returned-to |
| 3169 | // function, rather than the end of the returning function. |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3170 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3171 | int stack_depth = GetStackDepth(thread); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3172 | if (stack_depth < single_step_control->GetStackDepth()) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3173 | event_flags |= kSingleStep; |
| 3174 | VLOG(jdwp) << "SS method pop"; |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3175 | } |
| 3176 | } |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3177 | } |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3178 | |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3179 | // If there's something interesting going on, see if it matches one |
| 3180 | // of the debugger filters. |
| 3181 | if (event_flags != 0) { |
| Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 3182 | Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value); |
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3183 | } |
| 3184 | } |
| 3185 | |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3186 | size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) { |
| 3187 | switch (instrumentation_event) { |
| 3188 | case instrumentation::Instrumentation::kMethodEntered: |
| 3189 | return &method_enter_event_ref_count_; |
| 3190 | case instrumentation::Instrumentation::kMethodExited: |
| 3191 | return &method_exit_event_ref_count_; |
| 3192 | case instrumentation::Instrumentation::kDexPcMoved: |
| 3193 | return &dex_pc_change_event_ref_count_; |
| 3194 | case instrumentation::Instrumentation::kFieldRead: |
| 3195 | return &field_read_event_ref_count_; |
| 3196 | case instrumentation::Instrumentation::kFieldWritten: |
| 3197 | return &field_write_event_ref_count_; |
| Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 3198 | case instrumentation::Instrumentation::kExceptionThrown: |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3199 | return &exception_catch_event_ref_count_; |
| 3200 | default: |
| 3201 | return nullptr; |
| 3202 | } |
| 3203 | } |
| 3204 | |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3205 | // Process request while all mutator threads are suspended. |
| 3206 | void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3207 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3208 | switch (request.GetKind()) { |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3209 | case DeoptimizationRequest::kNothing: |
| 3210 | LOG(WARNING) << "Ignoring empty deoptimization request."; |
| 3211 | break; |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3212 | case DeoptimizationRequest::kRegisterForEvent: |
| 3213 | VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3214 | request.InstrumentationEvent()); |
| 3215 | instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); |
| 3216 | instrumentation_events_ |= request.InstrumentationEvent(); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3217 | break; |
| 3218 | case DeoptimizationRequest::kUnregisterForEvent: |
| 3219 | VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3220 | request.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3221 | instrumentation->RemoveListener(&gDebugInstrumentationListener, |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3222 | request.InstrumentationEvent()); |
| 3223 | instrumentation_events_ &= ~request.InstrumentationEvent(); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3224 | break; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3225 | case DeoptimizationRequest::kFullDeoptimization: |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3226 | VLOG(jdwp) << "Deoptimize the world ..."; |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3227 | instrumentation->DeoptimizeEverything(kDbgInstrumentationKey); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3228 | VLOG(jdwp) << "Deoptimize the world DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3229 | break; |
| 3230 | case DeoptimizationRequest::kFullUndeoptimization: |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3231 | VLOG(jdwp) << "Undeoptimize the world ..."; |
| Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3232 | instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3233 | VLOG(jdwp) << "Undeoptimize the world DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3234 | break; |
| 3235 | case DeoptimizationRequest::kSelectiveDeoptimization: |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3236 | VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3237 | instrumentation->Deoptimize(request.Method()); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3238 | VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3239 | break; |
| 3240 | case DeoptimizationRequest::kSelectiveUndeoptimization: |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3241 | VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3242 | instrumentation->Undeoptimize(request.Method()); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3243 | VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3244 | break; |
| 3245 | default: |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3246 | LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3247 | break; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3248 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3249 | } |
| 3250 | |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3251 | void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3252 | if (req.GetKind() == DeoptimizationRequest::kNothing) { |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3253 | // Nothing to do. |
| 3254 | return; |
| 3255 | } |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3256 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3257 | RequestDeoptimizationLocked(req); |
| 3258 | } |
| 3259 | |
| 3260 | void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3261 | switch (req.GetKind()) { |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3262 | case DeoptimizationRequest::kRegisterForEvent: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3263 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3264 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3265 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3266 | req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3267 | if (*counter == 0) { |
| Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3268 | 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] | 3269 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3270 | deoptimization_requests_.push_back(req); |
| 3271 | } |
| 3272 | *counter = *counter + 1; |
| 3273 | break; |
| 3274 | } |
| 3275 | case DeoptimizationRequest::kUnregisterForEvent: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3276 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3277 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3278 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3279 | req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3280 | *counter = *counter - 1; |
| 3281 | if (*counter == 0) { |
| Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3282 | 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] | 3283 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3284 | deoptimization_requests_.push_back(req); |
| 3285 | } |
| 3286 | break; |
| 3287 | } |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3288 | case DeoptimizationRequest::kFullDeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3289 | DCHECK(req.Method() == nullptr); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3290 | if (full_deoptimization_event_count_ == 0) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3291 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3292 | << " for full deoptimization"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3293 | deoptimization_requests_.push_back(req); |
| 3294 | } |
| 3295 | ++full_deoptimization_event_count_; |
| 3296 | break; |
| 3297 | } |
| 3298 | case DeoptimizationRequest::kFullUndeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3299 | DCHECK(req.Method() == nullptr); |
| Sebastien Hertz | e713d93 | 2014-05-15 10:48:53 +0200 | [diff] [blame] | 3300 | DCHECK_GT(full_deoptimization_event_count_, 0U); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3301 | --full_deoptimization_event_count_; |
| 3302 | if (full_deoptimization_event_count_ == 0) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3303 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3304 | << " for full undeoptimization"; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3305 | deoptimization_requests_.push_back(req); |
| 3306 | } |
| 3307 | break; |
| 3308 | } |
| 3309 | case DeoptimizationRequest::kSelectiveDeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3310 | DCHECK(req.Method() != nullptr); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3311 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3312 | << " for deoptimization of " << req.Method()->PrettyMethod(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3313 | deoptimization_requests_.push_back(req); |
| 3314 | break; |
| 3315 | } |
| 3316 | case DeoptimizationRequest::kSelectiveUndeoptimization: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3317 | DCHECK(req.Method() != nullptr); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3318 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3319 | << " for undeoptimization of " << req.Method()->PrettyMethod(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3320 | deoptimization_requests_.push_back(req); |
| 3321 | break; |
| 3322 | } |
| 3323 | default: { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3324 | LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind(); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3325 | break; |
| 3326 | } |
| 3327 | } |
| 3328 | } |
| 3329 | |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3330 | void Dbg::ManageDeoptimization() { |
| 3331 | Thread* const self = Thread::Current(); |
| 3332 | { |
| 3333 | // Avoid suspend/resume if there is no pending request. |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3334 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3335 | if (deoptimization_requests_.empty()) { |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3336 | return; |
| 3337 | } |
| 3338 | } |
| 3339 | CHECK_EQ(self->GetState(), kRunnable); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3340 | ScopedThreadSuspension sts(self, kWaitingForDeoptimization); |
| Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 3341 | // Required for ProcessDeoptimizationRequest. |
| 3342 | gc::ScopedGCCriticalSection gcs(self, |
| 3343 | gc::kGcCauseInstrumentation, |
| 3344 | gc::kCollectorTypeInstrumentation); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3345 | // We need to suspend mutator threads first. |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 3346 | ScopedSuspendAll ssa(__FUNCTION__); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3347 | const ThreadState old_state = self->SetStateUnsafe(kRunnable); |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3348 | { |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3349 | MutexLock mu(self, *Locks::deoptimization_lock_); |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3350 | size_t req_index = 0; |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3351 | for (DeoptimizationRequest& request : deoptimization_requests_) { |
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3352 | VLOG(jdwp) << "Process deoptimization request #" << req_index++; |
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3353 | ProcessDeoptimizationRequest(request); |
| 3354 | } |
| 3355 | deoptimization_requests_.clear(); |
| 3356 | } |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3357 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3358 | } |
| 3359 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3360 | static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3361 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3362 | for (Breakpoint& breakpoint : gBreakpoints) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3363 | if (breakpoint.IsInMethod(m)) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3364 | return &breakpoint; |
| 3365 | } |
| 3366 | } |
| 3367 | return nullptr; |
| 3368 | } |
| 3369 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3370 | bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) { |
| Mathieu Chartier | d856545 | 2015-03-26 09:41:50 -0700 | [diff] [blame] | 3371 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 3372 | return FindFirstBreakpointForMethod(method) != nullptr; |
| 3373 | } |
| 3374 | |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3375 | // Sanity checks all existing breakpoints on the same method. |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3376 | static void SanityCheckExistingBreakpoints(ArtMethod* m, |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3377 | DeoptimizationRequest::Kind deoptimization_kind) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3378 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3379 | for (const Breakpoint& breakpoint : gBreakpoints) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3380 | if (breakpoint.IsInMethod(m)) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3381 | CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind()); |
| 3382 | } |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3383 | } |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3384 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 3385 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3386 | // We should have deoptimized everything but not "selectively" deoptimized this method. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3387 | CHECK(instrumentation->AreAllMethodsDeoptimized()); |
| 3388 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3389 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3390 | // We should have "selectively" deoptimized this method. |
| 3391 | // Note: while we have not deoptimized everything for this method, we may have done it for |
| 3392 | // another event. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3393 | CHECK(instrumentation->IsDeoptimized(m)); |
| 3394 | } else { |
| 3395 | // This method does not require deoptimization. |
| 3396 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3397 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3398 | } |
| 3399 | } |
| 3400 | |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3401 | // Returns the deoptimization kind required to set a breakpoint in a method. |
| 3402 | // If a breakpoint has already been set, we also return the first breakpoint |
| 3403 | // through the given 'existing_brkpt' pointer. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3404 | static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self, |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3405 | ArtMethod* m, |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3406 | const Breakpoint** existing_brkpt) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3407 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3408 | if (!Dbg::RequiresDeoptimization()) { |
| 3409 | // We already run in interpreter-only mode so we don't need to deoptimize anything. |
| 3410 | 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] | 3411 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3412 | return DeoptimizationRequest::kNothing; |
| 3413 | } |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3414 | const Breakpoint* first_breakpoint; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3415 | { |
| 3416 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3417 | first_breakpoint = FindFirstBreakpointForMethod(m); |
| 3418 | *existing_brkpt = first_breakpoint; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3419 | } |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3420 | |
| 3421 | if (first_breakpoint == nullptr) { |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3422 | // There is no breakpoint on this method yet: we need to deoptimize. If this method is default, |
| 3423 | // we deoptimize everything; otherwise we deoptimize only this method. We |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3424 | // 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] | 3425 | // of the copies could be missed. |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3426 | // TODO Deoptimizing on default methods might not be necessary in all cases. |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3427 | bool need_full_deoptimization = m->IsDefault(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3428 | if (need_full_deoptimization) { |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3429 | VLOG(jdwp) << "Need full deoptimization because of copying of method " |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3430 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3431 | return DeoptimizationRequest::kFullDeoptimization; |
| 3432 | } else { |
| 3433 | // 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] | 3434 | const bool is_compiled = m->HasAnyCompiledCode(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3435 | if (is_compiled) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3436 | VLOG(jdwp) << "Need selective deoptimization for compiled method " |
| 3437 | << ArtMethod::PrettyMethod(m); |
| Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3438 | return DeoptimizationRequest::kSelectiveDeoptimization; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3439 | } else { |
| 3440 | // Method is not compiled: we don't need to deoptimize. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3441 | VLOG(jdwp) << "No need for deoptimization for non-compiled method " |
| 3442 | << ArtMethod::PrettyMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3443 | return DeoptimizationRequest::kNothing; |
| 3444 | } |
| 3445 | } |
| 3446 | } else { |
| 3447 | // There is at least one breakpoint for this method: we don't need to deoptimize. |
| 3448 | // Let's check that all breakpoints are configured the same way for deoptimization. |
| 3449 | VLOG(jdwp) << "Breakpoint already set: no deoptimization is required"; |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3450 | DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind(); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3451 | if (kIsDebugBuild) { |
| 3452 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3453 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
| 3454 | } |
| 3455 | return DeoptimizationRequest::kNothing; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3456 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3457 | } |
| 3458 | |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3459 | // Installs a breakpoint at the specified location. Also indicates through the deoptimization |
| 3460 | // request if we need to deoptimize. |
| 3461 | void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| 3462 | Thread* const self = Thread::Current(); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3463 | ArtMethod* m = FromMethodId(location->method_id); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3464 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3465 | |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3466 | const Breakpoint* existing_breakpoint = nullptr; |
| 3467 | const DeoptimizationRequest::Kind deoptimization_kind = |
| 3468 | GetRequiredDeoptimizationKind(self, m, &existing_breakpoint); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3469 | req->SetKind(deoptimization_kind); |
| 3470 | if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| 3471 | req->SetMethod(m); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3472 | } else { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3473 | CHECK(deoptimization_kind == DeoptimizationRequest::kNothing || |
| 3474 | deoptimization_kind == DeoptimizationRequest::kFullDeoptimization); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3475 | req->SetMethod(nullptr); |
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3476 | } |
| 3477 | |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3478 | { |
| 3479 | WriterMutexLock mu(self, *Locks::breakpoint_lock_); |
| Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3480 | // If there is at least one existing breakpoint on the same method, the new breakpoint |
| 3481 | // must have the same deoptimization kind than the existing breakpoint(s). |
| 3482 | DeoptimizationRequest::Kind breakpoint_deoptimization_kind; |
| 3483 | if (existing_breakpoint != nullptr) { |
| 3484 | breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind(); |
| 3485 | } else { |
| 3486 | breakpoint_deoptimization_kind = deoptimization_kind; |
| 3487 | } |
| 3488 | gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind)); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3489 | VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " |
| 3490 | << gBreakpoints[gBreakpoints.size() - 1]; |
| 3491 | } |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3492 | } |
| 3493 | |
| 3494 | // Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization |
| 3495 | // request if we need to undeoptimize. |
| 3496 | void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3497 | WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3498 | ArtMethod* m = FromMethodId(location->method_id); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3499 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3500 | DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing; |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3501 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
| Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3502 | if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].IsInMethod(m)) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3503 | VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3504 | deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind(); |
| 3505 | DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization, |
| 3506 | Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3507 | gBreakpoints.erase(gBreakpoints.begin() + i); |
| 3508 | break; |
| 3509 | } |
| 3510 | } |
| 3511 | const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3512 | if (existing_breakpoint == nullptr) { |
| 3513 | // There is no more breakpoint on this method: we need to undeoptimize. |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3514 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3515 | // This method required full deoptimization: we need to undeoptimize everything. |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3516 | req->SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3517 | req->SetMethod(nullptr); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3518 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3519 | // This method required selective deoptimization: we need to undeoptimize only that method. |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3520 | req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization); |
| 3521 | req->SetMethod(m); |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3522 | } else { |
| 3523 | // This method had no need for deoptimization: do nothing. |
| 3524 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3525 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3526 | req->SetMethod(nullptr); |
| Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3527 | } |
| 3528 | } else { |
| 3529 | // 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] | 3530 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3531 | req->SetMethod(nullptr); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3532 | if (kIsDebugBuild) { |
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3533 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
| Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3534 | } |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3535 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3536 | } |
| 3537 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3538 | bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) { |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3539 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3540 | if (ssc == nullptr) { |
| 3541 | // If we are not single-stepping, then we don't have to force interpreter. |
| 3542 | return false; |
| 3543 | } |
| 3544 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3545 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3546 | return false; |
| 3547 | } |
| 3548 | |
| 3549 | if (!m->IsNative() && !m->IsProxyMethod()) { |
| 3550 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3551 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3552 | return true; |
| 3553 | } |
| 3554 | } |
| 3555 | return false; |
| 3556 | } |
| 3557 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3558 | bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3559 | instrumentation::Instrumentation* const instrumentation = |
| 3560 | Runtime::Current()->GetInstrumentation(); |
| 3561 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3562 | if (instrumentation->InterpretOnly()) { |
| 3563 | return false; |
| 3564 | } |
| 3565 | // We can only interpret pure Java method. |
| 3566 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3567 | return false; |
| 3568 | } |
| 3569 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3570 | if (ssc != nullptr) { |
| 3571 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3572 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3573 | return true; |
| 3574 | } |
| 3575 | // If we are stepping out from a static initializer, by issuing a step |
| 3576 | // in or step over, that was implicitly invoked by calling a static method, |
| 3577 | // then we need to step into that method. Having a lower stack depth than |
| 3578 | // the one the single step control has indicates that the step originates |
| 3579 | // from the static initializer. |
| 3580 | if (ssc->GetStepDepth() != JDWP::SD_OUT && |
| 3581 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3582 | return true; |
| 3583 | } |
| 3584 | } |
| 3585 | // There are cases where we have to force interpreter on deoptimized methods, |
| 3586 | // because in some cases the call will not be performed by invoking an entry |
| 3587 | // point that has been replaced by the deoptimization, but instead by directly |
| 3588 | // invoking the compiled code of the method, for example. |
| 3589 | return instrumentation->IsDeoptimized(m); |
| 3590 | } |
| 3591 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3592 | bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3593 | // 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] | 3594 | if (m == nullptr) { |
| 3595 | return false; |
| 3596 | } |
| 3597 | instrumentation::Instrumentation* const instrumentation = |
| 3598 | Runtime::Current()->GetInstrumentation(); |
| 3599 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3600 | if (instrumentation->InterpretOnly()) { |
| 3601 | return false; |
| 3602 | } |
| 3603 | // We can only interpret pure Java method. |
| 3604 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3605 | return false; |
| 3606 | } |
| 3607 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3608 | if (ssc != nullptr) { |
| 3609 | // If we are stepping out from a static initializer, by issuing a step |
| 3610 | // out, that was implicitly invoked by calling a static method, then we |
| 3611 | // need to step into the caller of that method. Having a lower stack |
| 3612 | // depth than the one the single step control has indicates that the |
| 3613 | // step originates from the static initializer. |
| 3614 | if (ssc->GetStepDepth() == JDWP::SD_OUT && |
| 3615 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3616 | return true; |
| 3617 | } |
| 3618 | } |
| 3619 | // If we are returning from a static intializer, that was implicitly |
| 3620 | // invoked by calling a static method and the caller is deoptimized, |
| 3621 | // then we have to deoptimize the stack without forcing interpreter |
| 3622 | // on the static method that was called originally. This problem can |
| 3623 | // be solved easily by forcing instrumentation on the called method, |
| 3624 | // because the instrumentation exit hook will recognise the need of |
| 3625 | // stack deoptimization by calling IsForcedInterpreterNeededForUpcall. |
| 3626 | return instrumentation->IsDeoptimized(m); |
| 3627 | } |
| 3628 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3629 | bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) { |
| Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3630 | // 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] | 3631 | if (m == nullptr) { |
| 3632 | return false; |
| 3633 | } |
| 3634 | instrumentation::Instrumentation* const instrumentation = |
| 3635 | Runtime::Current()->GetInstrumentation(); |
| 3636 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3637 | if (instrumentation->InterpretOnly()) { |
| 3638 | return false; |
| 3639 | } |
| 3640 | // We can only interpret pure Java method. |
| 3641 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3642 | return false; |
| 3643 | } |
| 3644 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3645 | if (ssc != nullptr) { |
| 3646 | // The debugger is not interested in what is happening under the level |
| 3647 | // of the step, thus we only force interpreter when we are not below of |
| 3648 | // the step. |
| 3649 | if (ssc->GetStackDepth() >= GetStackDepth(thread)) { |
| 3650 | return true; |
| 3651 | } |
| 3652 | } |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3653 | if (thread->HasDebuggerShadowFrames()) { |
| 3654 | // We need to deoptimize the stack for the exception handling flow so that |
| 3655 | // we don't miss any deoptimization that should be done when there are |
| 3656 | // debugger shadow frames. |
| 3657 | return true; |
| 3658 | } |
| Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3659 | // We have to require stack deoptimization if the upcall is deoptimized. |
| 3660 | return instrumentation->IsDeoptimized(m); |
| 3661 | } |
| 3662 | |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3663 | class NeedsDeoptimizationVisitor : public StackVisitor { |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3664 | public: |
| 3665 | explicit NeedsDeoptimizationVisitor(Thread* self) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3666 | REQUIRES_SHARED(Locks::mutator_lock_) |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3667 | : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3668 | needs_deoptimization_(false) {} |
| 3669 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3670 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3671 | // The visitor is meant to be used when handling exception from compiled code only. |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3672 | CHECK(!IsShadowFrame()) << "We only expect to visit compiled frame: " |
| 3673 | << ArtMethod::PrettyMethod(GetMethod()); |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3674 | ArtMethod* method = GetMethod(); |
| 3675 | if (method == nullptr) { |
| 3676 | // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment) |
| 3677 | // so we can stop the visit. |
| 3678 | DCHECK(!needs_deoptimization_); |
| 3679 | return false; |
| 3680 | } |
| 3681 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3682 | // We found a compiled frame in the stack but instrumentation is set to interpret |
| 3683 | // everything: we need to deoptimize. |
| 3684 | needs_deoptimization_ = true; |
| 3685 | return false; |
| 3686 | } |
| 3687 | if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) { |
| 3688 | // We found a deoptimized method in the stack. |
| 3689 | needs_deoptimization_ = true; |
| 3690 | return false; |
| 3691 | } |
| Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3692 | ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(GetFrameId()); |
| 3693 | if (frame != nullptr) { |
| 3694 | // The debugger allocated a ShadowFrame to update a variable in the stack: we need to |
| 3695 | // deoptimize the stack to execute (and deallocate) this frame. |
| 3696 | needs_deoptimization_ = true; |
| 3697 | return false; |
| 3698 | } |
| Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3699 | return true; |
| 3700 | } |
| 3701 | |
| 3702 | bool NeedsDeoptimization() const { |
| 3703 | return needs_deoptimization_; |
| 3704 | } |
| 3705 | |
| 3706 | private: |
| 3707 | // Do we need to deoptimize the stack? |
| 3708 | bool needs_deoptimization_; |
| 3709 | |
| 3710 | DISALLOW_COPY_AND_ASSIGN(NeedsDeoptimizationVisitor); |
| 3711 | }; |
| 3712 | |
| 3713 | // Do we need to deoptimize the stack to handle an exception? |
| 3714 | bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) { |
| 3715 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3716 | if (ssc != nullptr) { |
| 3717 | // We deopt to step into the catch handler. |
| 3718 | return true; |
| 3719 | } |
| 3720 | // Deoptimization is required if at least one method in the stack needs it. However we |
| 3721 | // skip frames that will be unwound (thus not executed). |
| 3722 | NeedsDeoptimizationVisitor visitor(thread); |
| 3723 | visitor.WalkStack(true); // includes upcall. |
| 3724 | return visitor.NeedsDeoptimization(); |
| 3725 | } |
| 3726 | |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3727 | // Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't |
| 3728 | // cause suspension if the thread is the current thread. |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3729 | class ScopedDebuggerThreadSuspension { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3730 | public: |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3731 | ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id) |
| Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3732 | REQUIRES(!Locks::thread_list_lock_) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3733 | REQUIRES_SHARED(Locks::mutator_lock_) : |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3734 | thread_(nullptr), |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3735 | error_(JDWP::ERR_NONE), |
| 3736 | self_suspend_(false), |
| Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3737 | other_suspend_(false) { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3738 | ScopedObjectAccessUnchecked soa(self); |
| Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 3739 | thread_ = DecodeThread(soa, thread_id, &error_); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3740 | if (error_ == JDWP::ERR_NONE) { |
| 3741 | if (thread_ == soa.Self()) { |
| 3742 | self_suspend_ = true; |
| 3743 | } else { |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3744 | Thread* suspended_thread; |
| 3745 | { |
| 3746 | ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension); |
| 3747 | jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); |
| 3748 | bool timed_out; |
| 3749 | ThreadList* const thread_list = Runtime::Current()->GetThreadList(); |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 3750 | suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, |
| 3751 | /* request_suspension */ true, |
| Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 3752 | SuspendReason::kForDebugger, |
| Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 3753 | &timed_out); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3754 | } |
| Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3755 | if (suspended_thread == nullptr) { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3756 | // Thread terminated from under us while suspending. |
| 3757 | error_ = JDWP::ERR_INVALID_THREAD; |
| 3758 | } else { |
| 3759 | CHECK_EQ(suspended_thread, thread_); |
| 3760 | other_suspend_ = true; |
| 3761 | } |
| 3762 | } |
| 3763 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3764 | } |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3765 | |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3766 | Thread* GetThread() const { |
| 3767 | return thread_; |
| 3768 | } |
| 3769 | |
| 3770 | JDWP::JdwpError GetError() const { |
| 3771 | return error_; |
| 3772 | } |
| 3773 | |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3774 | ~ScopedDebuggerThreadSuspension() { |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3775 | if (other_suspend_) { |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 3776 | bool resumed = Runtime::Current()->GetThreadList()->Resume(thread_, |
| 3777 | SuspendReason::kForDebugger); |
| 3778 | DCHECK(resumed); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3779 | } |
| 3780 | } |
| 3781 | |
| 3782 | private: |
| 3783 | Thread* thread_; |
| 3784 | JDWP::JdwpError error_; |
| 3785 | bool self_suspend_; |
| 3786 | bool other_suspend_; |
| 3787 | }; |
| 3788 | |
| 3789 | JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, |
| 3790 | JDWP::JdwpStepDepth step_depth) { |
| 3791 | Thread* self = Thread::Current(); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3792 | ScopedDebuggerThreadSuspension sts(self, thread_id); |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3793 | if (sts.GetError() != JDWP::ERR_NONE) { |
| 3794 | return sts.GetError(); |
| 3795 | } |
| 3796 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3797 | // 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] | 3798 | // is for step-out. |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3799 | struct SingleStepStackVisitor : public StackVisitor { |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3800 | explicit SingleStepStackVisitor(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) |
| Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 3801 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3802 | stack_depth(0), |
| 3803 | method(nullptr), |
| 3804 | line_number(-1) {} |
| Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 3805 | |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3806 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 3807 | // annotalysis. |
| 3808 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3809 | ArtMethod* m = GetMethod(); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3810 | if (!m->IsRuntimeMethod()) { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3811 | ++stack_depth; |
| 3812 | if (method == nullptr) { |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 3813 | const DexFile* dex_file = m->GetDexFile(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3814 | method = m; |
| Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 3815 | if (dex_file != nullptr) { |
| David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 3816 | line_number = annotations::GetLineNumFromPC(dex_file, m, GetDexPc()); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3817 | } |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3818 | } |
| 3819 | } |
| Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3820 | return true; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3821 | } |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3822 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3823 | int stack_depth; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3824 | ArtMethod* method; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3825 | int32_t line_number; |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3826 | }; |
| Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3827 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3828 | Thread* const thread = sts.GetThread(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3829 | SingleStepStackVisitor visitor(thread); |
| Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3830 | visitor.WalkStack(); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3831 | |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3832 | // Find the dex_pc values that correspond to the current line, for line-based single-stepping. |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3833 | struct DebugCallbackContext { |
| Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 3834 | DebugCallbackContext(SingleStepControl* single_step_control_cb, |
| 3835 | int32_t line_number_cb, const DexFile::CodeItem* code_item) |
| 3836 | : single_step_control_(single_step_control_cb), line_number_(line_number_cb), |
| 3837 | code_item_(code_item), last_pc_valid(false), last_pc(0) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3838 | } |
| 3839 | |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3840 | static bool Callback(void* raw_context, const DexFile::PositionInfo& entry) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3841 | DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context); |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3842 | if (static_cast<int32_t>(entry.line_) == context->line_number_) { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3843 | if (!context->last_pc_valid) { |
| 3844 | // Everything from this address until the next line change is ours. |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3845 | context->last_pc = entry.address_; |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3846 | context->last_pc_valid = true; |
| 3847 | } |
| 3848 | // Otherwise, if we're already in a valid range for this line, |
| 3849 | // just keep going (shouldn't really happen)... |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3850 | } else if (context->last_pc_valid) { // and the line number is new |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3851 | // Add everything from the last entry up until here to the set |
| David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3852 | for (uint32_t dex_pc = context->last_pc; dex_pc < entry.address_; ++dex_pc) { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3853 | context->single_step_control_->AddDexPc(dex_pc); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3854 | } |
| 3855 | context->last_pc_valid = false; |
| 3856 | } |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3857 | return false; // There may be multiple entries for any given line. |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3858 | } |
| 3859 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3860 | ~DebugCallbackContext() { |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3861 | // If the line number was the last in the position table... |
| 3862 | if (last_pc_valid) { |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3863 | size_t end = code_item_->insns_size_in_code_units_; |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3864 | for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3865 | single_step_control_->AddDexPc(dex_pc); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3866 | } |
| 3867 | } |
| 3868 | } |
| 3869 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3870 | SingleStepControl* const single_step_control_; |
| 3871 | const int32_t line_number_; |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3872 | const DexFile::CodeItem* const code_item_; |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3873 | bool last_pc_valid; |
| 3874 | uint32_t last_pc; |
| 3875 | }; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3876 | |
| 3877 | // Allocate single step. |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3878 | SingleStepControl* single_step_control = |
| 3879 | new (std::nothrow) SingleStepControl(step_size, step_depth, |
| 3880 | visitor.stack_depth, visitor.method); |
| 3881 | if (single_step_control == nullptr) { |
| 3882 | LOG(ERROR) << "Failed to allocate SingleStepControl"; |
| 3883 | return JDWP::ERR_OUT_OF_MEMORY; |
| 3884 | } |
| 3885 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3886 | ArtMethod* m = single_step_control->GetMethod(); |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3887 | const int32_t line_number = visitor.line_number; |
| Sebastien Hertz | 52f5f93 | 2015-05-28 11:00:57 +0200 | [diff] [blame] | 3888 | // Note: if the thread is not running Java code (pure native thread), there is no "current" |
| 3889 | // method on the stack (and no line number either). |
| 3890 | if (m != nullptr && !m->IsNative()) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3891 | const DexFile::CodeItem* const code_item = m->GetCodeItem(); |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3892 | DebugCallbackContext context(single_step_control, line_number, code_item); |
| Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 3893 | uint32_t debug_info_offset = OatFile::GetDebugInfoOffset(*(m->GetDexFile()), code_item); |
| 3894 | m->GetDexFile()->DecodeDebugPositionInfo( |
| 3895 | code_item, debug_info_offset, DebugCallbackContext::Callback, &context); |
| Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 3896 | } |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3897 | |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3898 | // Activate single-step in the thread. |
| 3899 | thread->ActivateSingleStepControl(single_step_control); |
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3900 | |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3901 | if (VLOG_IS_ON(jdwp)) { |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3902 | VLOG(jdwp) << "Single-step thread: " << *thread; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3903 | VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize(); |
| 3904 | VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3905 | VLOG(jdwp) << "Single-step current method: " |
| 3906 | << ArtMethod::PrettyMethod(single_step_control->GetMethod()); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3907 | VLOG(jdwp) << "Single-step current line: " << line_number; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3908 | VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth(); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3909 | VLOG(jdwp) << "Single-step dex_pc values:"; |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3910 | for (uint32_t dex_pc : single_step_control->GetDexPcs()) { |
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3911 | VLOG(jdwp) << StringPrintf(" %#x", dex_pc); |
| Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3912 | } |
| 3913 | } |
| 3914 | |
| 3915 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3916 | } |
| 3917 | |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3918 | void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) { |
| 3919 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3920 | JDWP::JdwpError error; |
| 3921 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| Sebastien Hertz | 87118ed | 2013-11-26 17:57:18 +0100 | [diff] [blame] | 3922 | if (error == JDWP::ERR_NONE) { |
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3923 | thread->DeactivateSingleStepControl(); |
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3924 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3925 | } |
| 3926 | |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3927 | static char JdwpTagToShortyChar(JDWP::JdwpTag tag) { |
| 3928 | switch (tag) { |
| 3929 | default: |
| 3930 | LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag); |
| Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3931 | UNREACHABLE(); |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3932 | |
| 3933 | // Primitives. |
| 3934 | case JDWP::JT_BYTE: return 'B'; |
| 3935 | case JDWP::JT_CHAR: return 'C'; |
| 3936 | case JDWP::JT_FLOAT: return 'F'; |
| 3937 | case JDWP::JT_DOUBLE: return 'D'; |
| 3938 | case JDWP::JT_INT: return 'I'; |
| 3939 | case JDWP::JT_LONG: return 'J'; |
| 3940 | case JDWP::JT_SHORT: return 'S'; |
| 3941 | case JDWP::JT_VOID: return 'V'; |
| 3942 | case JDWP::JT_BOOLEAN: return 'Z'; |
| 3943 | |
| 3944 | // Reference types. |
| 3945 | case JDWP::JT_ARRAY: |
| 3946 | case JDWP::JT_OBJECT: |
| 3947 | case JDWP::JT_STRING: |
| 3948 | case JDWP::JT_THREAD: |
| 3949 | case JDWP::JT_THREAD_GROUP: |
| 3950 | case JDWP::JT_CLASS_LOADER: |
| 3951 | case JDWP::JT_CLASS_OBJECT: |
| 3952 | return 'L'; |
| 3953 | } |
| 3954 | } |
| 3955 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3956 | JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, |
| 3957 | JDWP::ObjectId object_id, JDWP::RefTypeId class_id, |
| 3958 | JDWP::MethodId method_id, uint32_t arg_count, |
| 3959 | uint64_t arg_values[], JDWP::JdwpTag* arg_types, |
| 3960 | uint32_t options) { |
| 3961 | Thread* const self = Thread::Current(); |
| 3962 | CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread"; |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3963 | const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3964 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3965 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3966 | Thread* targetThread = nullptr; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3967 | { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3968 | ScopedObjectAccessUnchecked soa(self); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3969 | JDWP::JdwpError error; |
| 3970 | targetThread = DecodeThread(soa, thread_id, &error); |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 3971 | if (error != JDWP::ERR_NONE) { |
| 3972 | LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id; |
| 3973 | return error; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3974 | } |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3975 | if (targetThread->GetInvokeReq() != nullptr) { |
| 3976 | // Thread is already invoking a method on behalf of the debugger. |
| 3977 | LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread; |
| 3978 | return JDWP::ERR_ALREADY_INVOKING; |
| 3979 | } |
| 3980 | if (!targetThread->IsReadyForDebugInvoke()) { |
| 3981 | // 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] | 3982 | LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread; |
| 3983 | return JDWP::ERR_INVALID_THREAD; |
| 3984 | } |
| 3985 | |
| 3986 | /* |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3987 | * According to the JDWP specs, we are expected to resume all threads (or only the |
| 3988 | * target thread) once. So if a thread has been suspended more than once (either by |
| 3989 | * the debugger for an event or by the runtime for GC), it will remain suspended before |
| 3990 | * the invoke is executed. This means the debugger is responsible to properly resume all |
| 3991 | * 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] | 3992 | * |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3993 | * However, for compatibility reason with older versions of debuggers (like Eclipse), we |
| 3994 | * fully resume all threads (by canceling *all* debugger suspensions) when the debugger |
| 3995 | * wants us to resume all threads. This is to avoid ending up in deadlock situation. |
| 3996 | * |
| 3997 | * On the other hand, if we are asked to only resume the target thread, then we follow the |
| 3998 | * JDWP specs by resuming that thread only once. This means the thread will remain suspended |
| 3999 | * if it has been suspended more than once before the invoke (and again, this is the |
| 4000 | * 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] | 4001 | */ |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4002 | int suspend_count; |
| 4003 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4004 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4005 | suspend_count = targetThread->GetSuspendCount(); |
| 4006 | } |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 4007 | if (suspend_count > 1 && resume_all_threads) { |
| 4008 | // The target thread will remain suspended even after we resume it. Let's emit a warning |
| 4009 | // to indicate the invoke won't be executed until the thread is resumed. |
| 4010 | LOG(WARNING) << *targetThread << " suspended more than once (suspend count == " |
| 4011 | << suspend_count << "). This thread will invoke the method only once " |
| 4012 | << "it is fully resumed."; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4013 | } |
| 4014 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4015 | mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 4016 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 4017 | return JDWP::ERR_INVALID_OBJECT; |
| 4018 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4019 | |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4020 | gRegistry->Get<mirror::Object*>(thread_id, &error); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4021 | if (error != JDWP::ERR_NONE) { |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 4022 | return JDWP::ERR_INVALID_OBJECT; |
| 4023 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4024 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4025 | mirror::Class* c = DecodeClass(class_id, &error); |
| 4026 | if (c == nullptr) { |
| 4027 | return error; |
| Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 4028 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4029 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4030 | ArtMethod* m = FromMethodId(method_id); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4031 | if (m->IsStatic() != (receiver == nullptr)) { |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4032 | return JDWP::ERR_INVALID_METHODID; |
| 4033 | } |
| 4034 | if (m->IsStatic()) { |
| 4035 | if (m->GetDeclaringClass() != c) { |
| 4036 | return JDWP::ERR_INVALID_METHODID; |
| 4037 | } |
| 4038 | } else { |
| 4039 | if (!m->GetDeclaringClass()->IsAssignableFrom(c)) { |
| 4040 | return JDWP::ERR_INVALID_METHODID; |
| 4041 | } |
| 4042 | } |
| 4043 | |
| 4044 | // Check the argument list matches the method. |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4045 | uint32_t shorty_len = 0; |
| 4046 | const char* shorty = m->GetShorty(&shorty_len); |
| 4047 | if (shorty_len - 1 != arg_count) { |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4048 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4049 | } |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4050 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4051 | { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4052 | StackHandleScope<2> hs(soa.Self()); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4053 | HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver)); |
| 4054 | HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c)); |
| 4055 | const DexFile::TypeList* types = m->GetParameterTypeList(); |
| 4056 | for (size_t i = 0; i < arg_count; ++i) { |
| 4057 | if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) { |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4058 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4059 | } |
| 4060 | |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4061 | if (shorty[i + 1] == 'L') { |
| 4062 | // Did we really get an argument of an appropriate reference type? |
| Vladimir Marko | b45528c | 2017-07-27 14:14:28 +0100 | [diff] [blame] | 4063 | ObjPtr<mirror::Class> parameter_type = |
| 4064 | m->ResolveClassFromTypeIndex(types->GetTypeItem(i).type_idx_); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4065 | mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error); |
| 4066 | if (error != JDWP::ERR_NONE) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4067 | return JDWP::ERR_INVALID_OBJECT; |
| 4068 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4069 | if (argument != nullptr && !argument->InstanceOf(parameter_type)) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4070 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4071 | } |
| 4072 | |
| 4073 | // Turn the on-the-wire ObjectId into a jobject. |
| 4074 | jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]); |
| 4075 | v.l = gRegistry->GetJObject(arg_values[i]); |
| 4076 | } |
| Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4077 | } |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4078 | } |
| 4079 | |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4080 | // Allocates a DebugInvokeReq. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4081 | DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m, |
| 4082 | options, arg_values, arg_count); |
| 4083 | if (req == nullptr) { |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4084 | LOG(ERROR) << "Failed to allocate DebugInvokeReq"; |
| 4085 | return JDWP::ERR_OUT_OF_MEMORY; |
| 4086 | } |
| 4087 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4088 | // Attaches the DebugInvokeReq to the target thread so it executes the method when |
| 4089 | // it is resumed. Once the invocation completes, the target thread will delete it before |
| 4090 | // suspending itself (see ThreadList::SuspendSelfForDebugger). |
| 4091 | targetThread->SetDebugInvokeReq(req); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4092 | } |
| 4093 | |
| 4094 | // 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] | 4095 | // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions |
| 4096 | // call. |
| Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 4097 | if (resume_all_threads) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4098 | VLOG(jdwp) << " Resuming all threads"; |
| 4099 | thread_list->UndoDebuggerSuspensions(); |
| 4100 | } else { |
| 4101 | VLOG(jdwp) << " Resuming event thread only"; |
| Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 4102 | bool resumed = thread_list->Resume(targetThread, SuspendReason::kForDebugger); |
| 4103 | DCHECK(resumed); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4104 | } |
| 4105 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4106 | return JDWP::ERR_NONE; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4107 | } |
| 4108 | |
| 4109 | void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4110 | Thread* const self = Thread::Current(); |
| 4111 | CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread"; |
| 4112 | |
| 4113 | ScopedObjectAccess soa(self); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4114 | |
| Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4115 | // We can be called while an exception is pending. We need |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4116 | // to preserve that across the method invocation. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4117 | StackHandleScope<1> hs(soa.Self()); |
| 4118 | Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4119 | soa.Self()->ClearException(); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4120 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4121 | // Execute the method then sends reply to the debugger. |
| 4122 | ExecuteMethodWithoutPendingException(soa, pReq); |
| 4123 | |
| 4124 | // If an exception was pending before the invoke, restore it now. |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 4125 | if (old_exception != nullptr) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4126 | soa.Self()->SetException(old_exception.Get()); |
| 4127 | } |
| 4128 | } |
| 4129 | |
| 4130 | // Helper function: write a variable-width value into the output input buffer. |
| 4131 | static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) { |
| 4132 | switch (width) { |
| 4133 | case 1: |
| 4134 | expandBufAdd1(pReply, value); |
| 4135 | break; |
| 4136 | case 2: |
| 4137 | expandBufAdd2BE(pReply, value); |
| 4138 | break; |
| 4139 | case 4: |
| 4140 | expandBufAdd4BE(pReply, value); |
| 4141 | break; |
| 4142 | case 8: |
| 4143 | expandBufAdd8BE(pReply, value); |
| 4144 | break; |
| 4145 | default: |
| 4146 | LOG(FATAL) << width; |
| 4147 | UNREACHABLE(); |
| 4148 | } |
| 4149 | } |
| 4150 | |
| 4151 | void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) { |
| 4152 | soa.Self()->AssertNoPendingException(); |
| 4153 | |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4154 | // 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] | 4155 | ArtMethod* m = pReq->method; |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 4156 | PointerSize image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4157 | if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) { |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4158 | ArtMethod* actual_method = |
| 4159 | pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size); |
| 4160 | if (actual_method != m) { |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4161 | VLOG(jdwp) << "ExecuteMethod translated " << ArtMethod::PrettyMethod(m) |
| 4162 | << " to " << ArtMethod::PrettyMethod(actual_method); |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4163 | m = actual_method; |
| Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4164 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4165 | } |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4166 | VLOG(jdwp) << "ExecuteMethod " << ArtMethod::PrettyMethod(m) |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4167 | << " receiver=" << pReq->receiver.Read() |
| Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 4168 | << " arg_count=" << pReq->arg_count; |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4169 | CHECK(m != nullptr); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4170 | |
| Roland Levillain | 33d6903 | 2015-06-18 18:20:59 +0100 | [diff] [blame] | 4171 | 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] | 4172 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4173 | // Invoke the method. |
| Jeff Hao | 39b6c24 | 2015-05-19 20:30:23 -0700 | [diff] [blame] | 4174 | ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read())); |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 4175 | JValue result = InvokeWithJValues(soa, ref.get(), jni::EncodeArtMethod(m), |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4176 | reinterpret_cast<jvalue*>(pReq->arg_values.get())); |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4177 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4178 | // Prepare JDWP ids for the reply. |
| 4179 | JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty()); |
| 4180 | const bool is_object_result = (result_tag == JDWP::JT_OBJECT); |
| Jeff Hao | 064d24e | 2016-08-25 03:52:40 +0000 | [diff] [blame] | 4181 | StackHandleScope<3> hs(soa.Self()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4182 | Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr); |
| 4183 | Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException()); |
| 4184 | soa.Self()->ClearException(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4185 | |
| 4186 | if (!IsDebuggerActive()) { |
| 4187 | // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply |
| 4188 | // because it won't be sent either. |
| 4189 | return; |
| 4190 | } |
| 4191 | |
| 4192 | JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception); |
| 4193 | uint64_t result_value = 0; |
| 4194 | if (exceptionObjectId != 0) { |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4195 | VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get() |
| 4196 | << " " << exception->Dump(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4197 | result_value = 0; |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4198 | } else if (is_object_result) { |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4199 | /* if no exception was thrown, examine object result more closely */ |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4200 | JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get()); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4201 | if (new_tag != result_tag) { |
| 4202 | VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; |
| 4203 | result_tag = new_tag; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4204 | } |
| 4205 | |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4206 | // Register the object in the registry and reference its ObjectId. This ensures |
| 4207 | // 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] | 4208 | result_value = gRegistry->Add(object_result.Get()); |
| Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4209 | } else { |
| 4210 | // Primitive result. |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4211 | DCHECK(IsPrimitiveTag(result_tag)); |
| 4212 | result_value = result.GetJ(); |
| 4213 | } |
| 4214 | const bool is_constructor = m->IsConstructor() && !m->IsStatic(); |
| 4215 | if (is_constructor) { |
| 4216 | // If we invoked a constructor (which actually returns void), return the receiver, |
| 4217 | // unless we threw, in which case we return null. |
| Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4218 | DCHECK_EQ(JDWP::JT_VOID, result_tag); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4219 | if (exceptionObjectId == 0) { |
| Jeff Hao | 064d24e | 2016-08-25 03:52:40 +0000 | [diff] [blame] | 4220 | if (m->GetDeclaringClass()->IsStringClass()) { |
| 4221 | // For string constructors, the new string is remapped to the receiver (stored in ref). |
| 4222 | Handle<mirror::Object> decoded_ref = hs.NewHandle(soa.Self()->DecodeJObject(ref.get())); |
| 4223 | result_value = gRegistry->Add(decoded_ref); |
| 4224 | result_tag = TagFromObject(soa, decoded_ref.Get()); |
| 4225 | } else { |
| 4226 | // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the |
| 4227 | // object registry. |
| 4228 | result_value = GetObjectRegistry()->Add(pReq->receiver.Read()); |
| 4229 | result_tag = TagFromObject(soa, pReq->receiver.Read()); |
| 4230 | } |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4231 | } else { |
| 4232 | result_value = 0; |
| Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4233 | result_tag = JDWP::JT_OBJECT; |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4234 | } |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4235 | } |
| 4236 | |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4237 | // Suspend other threads if the invoke is not single-threaded. |
| 4238 | if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4239 | ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension); |
| Hiroshi Yamauchi | 8f95cf3 | 2016-04-19 11:14:06 -0700 | [diff] [blame] | 4240 | // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335. |
| 4241 | gc::ScopedGCCriticalSection gcs(soa.Self(), gc::kGcCauseDebugger, gc::kCollectorTypeDebugger); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4242 | VLOG(jdwp) << " Suspending all threads"; |
| 4243 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
| Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4244 | } |
| 4245 | |
| 4246 | VLOG(jdwp) << " --> returned " << result_tag |
| 4247 | << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value, |
| 4248 | exceptionObjectId); |
| 4249 | |
| 4250 | // Show detailed debug output. |
| 4251 | if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) { |
| 4252 | if (result_value != 0) { |
| 4253 | if (VLOG_IS_ON(jdwp)) { |
| 4254 | std::string result_string; |
| 4255 | JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string); |
| 4256 | CHECK_EQ(error, JDWP::ERR_NONE); |
| 4257 | VLOG(jdwp) << " string '" << result_string << "'"; |
| 4258 | } |
| 4259 | } else { |
| 4260 | VLOG(jdwp) << " string (null)"; |
| 4261 | } |
| 4262 | } |
| 4263 | |
| 4264 | // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread |
| 4265 | // is ready to suspend. |
| 4266 | BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId); |
| 4267 | } |
| 4268 | |
| 4269 | void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag, |
| 4270 | uint64_t result_value, JDWP::ObjectId exception) { |
| 4271 | // Make room for the JDWP header since we do not know the size of the reply yet. |
| 4272 | JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen); |
| 4273 | |
| 4274 | size_t width = GetTagWidth(result_tag); |
| 4275 | JDWP::expandBufAdd1(pReply, result_tag); |
| 4276 | if (width != 0) { |
| 4277 | WriteValue(pReply, width, result_value); |
| 4278 | } |
| 4279 | JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT); |
| 4280 | JDWP::expandBufAddObjectId(pReply, exception); |
| 4281 | |
| 4282 | // Now we know the size, we can complete the JDWP header. |
| 4283 | uint8_t* buf = expandBufGetBuffer(pReply); |
| 4284 | JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply)); |
| 4285 | JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id); |
| 4286 | JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags |
| 4287 | JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE); |
| 4288 | } |
| 4289 | |
| 4290 | void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) { |
| 4291 | CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread"; |
| 4292 | |
| 4293 | JDWP::ExpandBuf* const pReply = pReq->reply; |
| 4294 | CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq"; |
| 4295 | |
| 4296 | // We need to prevent other threads (including JDWP thread) from interacting with the debugger |
| 4297 | // while we send the reply but are not yet suspended. The JDWP token will be released just before |
| 4298 | // we suspend ourself again (see ThreadList::SuspendSelfForDebugger). |
| 4299 | gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id); |
| 4300 | |
| 4301 | // Send the reply unless the debugger detached before the completion of the method. |
| 4302 | if (IsDebuggerActive()) { |
| 4303 | const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen; |
| 4304 | VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)", |
| 4305 | pReq->request_id, replyDataLength); |
| 4306 | |
| 4307 | gJdwpState->SendRequest(pReply); |
| 4308 | } else { |
| 4309 | VLOG(jdwp) << "Not sending invoke reply because debugger detached"; |
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4310 | } |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4311 | } |
| 4312 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4313 | bool Dbg::DdmHandleChunk(JNIEnv* env, |
| 4314 | uint32_t type, |
| 4315 | const ArrayRef<const jbyte>& data, |
| 4316 | /*out*/uint32_t* out_type, |
| 4317 | /*out*/std::vector<uint8_t>* out_data) { |
| 4318 | ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(data.size())); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4319 | if (dataArray.get() == nullptr) { |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4320 | LOG(WARNING) << "byte[] allocation failed: " << data.size(); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4321 | env->ExceptionClear(); |
| 4322 | return false; |
| 4323 | } |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4324 | env->SetByteArrayRegion(dataArray.get(), |
| 4325 | 0, |
| 4326 | data.size(), |
| 4327 | reinterpret_cast<const jbyte*>(data.data())); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4328 | // 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] | 4329 | ScopedLocalRef<jobject> chunk( |
| 4330 | env, |
| 4331 | env->CallStaticObjectMethod( |
| 4332 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4333 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch, |
| 4334 | type, dataArray.get(), 0, data.size())); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4335 | if (env->ExceptionCheck()) { |
| 4336 | LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type); |
| 4337 | env->ExceptionDescribe(); |
| 4338 | env->ExceptionClear(); |
| 4339 | return false; |
| 4340 | } |
| 4341 | |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4342 | if (chunk.get() == nullptr) { |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4343 | return false; |
| 4344 | } |
| 4345 | |
| 4346 | /* |
| 4347 | * Pull the pieces out of the chunk. We copy the results into a |
| 4348 | * newly-allocated buffer that the caller can free. We don't want to |
| 4349 | * continue using the Chunk object because nothing has a reference to it. |
| 4350 | * |
| 4351 | * We could avoid this by returning type/data/offset/length and having |
| 4352 | * the caller be aware of the object lifetime issues, but that |
| Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4353 | * 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] | 4354 | * if we have responses for multiple chunks. |
| 4355 | * |
| 4356 | * So we're pretty much stuck with copying data around multiple times. |
| 4357 | */ |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4358 | ScopedLocalRef<jbyteArray> replyData( |
| 4359 | env, |
| 4360 | reinterpret_cast<jbyteArray>( |
| 4361 | env->GetObjectField( |
| 4362 | chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data))); |
| 4363 | jint offset = env->GetIntField(chunk.get(), |
| 4364 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset); |
| 4365 | jint length = env->GetIntField(chunk.get(), |
| 4366 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length); |
| 4367 | *out_type = env->GetIntField(chunk.get(), |
| 4368 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4369 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4370 | VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", |
| 4371 | type, |
| 4372 | replyData.get(), |
| 4373 | offset, |
| 4374 | length); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4375 | if (length == 0 || replyData.get() == nullptr) { |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4376 | return false; |
| 4377 | } |
| 4378 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4379 | out_data->resize(length); |
| 4380 | env->GetByteArrayRegion(replyData.get(), |
| 4381 | offset, |
| 4382 | length, |
| 4383 | reinterpret_cast<jbyte*>(out_data->data())); |
| 4384 | return true; |
| 4385 | } |
| 4386 | |
| 4387 | /* |
| 4388 | * "request" contains a full JDWP packet, possibly with multiple chunks. We |
| 4389 | * need to process each, accumulate the replies, and ship the whole thing |
| 4390 | * back. |
| 4391 | * |
| 4392 | * Returns "true" if we have a reply. The reply buffer is newly allocated, |
| 4393 | * and includes the chunk type/length, followed by the data. |
| 4394 | * |
| 4395 | * OLD-TODO: we currently assume that the request and reply include a single |
| 4396 | * chunk. If this becomes inconvenient we will need to adapt. |
| 4397 | */ |
| 4398 | bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { |
| 4399 | Thread* self = Thread::Current(); |
| 4400 | JNIEnv* env = self->GetJniEnv(); |
| 4401 | |
| 4402 | uint32_t type = request->ReadUnsigned32("type"); |
| 4403 | uint32_t length = request->ReadUnsigned32("length"); |
| 4404 | |
| 4405 | // Create a byte[] corresponding to 'request'. |
| 4406 | size_t request_length = request->size(); |
| 4407 | // Run through and find all chunks. [Currently just find the first.] |
| 4408 | if (length != request_length) { |
| 4409 | 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] | 4410 | return false; |
| 4411 | } |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4412 | |
| Alex Light | 8c2b929 | 2017-11-09 13:21:01 -0800 | [diff] [blame] | 4413 | ArrayRef<const jbyte> data(reinterpret_cast<const jbyte*>(request->data()), request_length); |
| 4414 | std::vector<uint8_t> out_data; |
| 4415 | uint32_t out_type = 0; |
| 4416 | request->Skip(request_length); |
| 4417 | if (!DdmHandleChunk(env, type, data, &out_type, &out_data)) { |
| 4418 | return false; |
| 4419 | } |
| 4420 | const uint32_t kDdmHeaderSize = 8; |
| 4421 | *pReplyLen = out_data.size() + kDdmHeaderSize; |
| 4422 | *pReplyBuf = new uint8_t[out_data.size() + kDdmHeaderSize]; |
| 4423 | memcpy((*pReplyBuf) + kDdmHeaderSize, out_data.data(), out_data.size()); |
| 4424 | JDWP::Set4BE(*pReplyBuf, out_type); |
| 4425 | JDWP::Set4BE((*pReplyBuf) + 4, static_cast<uint32_t>(out_data.size())); |
| 4426 | VLOG(jdwp) |
| 4427 | << StringPrintf("dvmHandleDdm returning type=%.4s", reinterpret_cast<char*>(*pReplyBuf)) |
| 4428 | << "0x" << std::hex << reinterpret_cast<uintptr_t>(*pReplyBuf) << std::dec |
| 4429 | << " len= " << out_data.size(); |
| Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4430 | return true; |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4431 | } |
| 4432 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4433 | void Dbg::DdmBroadcast(bool connect) { |
| Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4434 | VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4435 | |
| 4436 | Thread* self = Thread::Current(); |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4437 | if (self->GetState() != kRunnable) { |
| 4438 | LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); |
| 4439 | /* try anyway? */ |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4440 | } |
| 4441 | |
| 4442 | JNIEnv* env = self->GetJniEnv(); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4443 | jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/; |
| Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4444 | env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4445 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast, |
| 4446 | event); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4447 | if (env->ExceptionCheck()) { |
| 4448 | LOG(ERROR) << "DdmServer.broadcast " << event << " failed"; |
| 4449 | env->ExceptionDescribe(); |
| 4450 | env->ExceptionClear(); |
| 4451 | } |
| 4452 | } |
| 4453 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4454 | void Dbg::DdmConnected() { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4455 | Dbg::DdmBroadcast(true); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4456 | } |
| 4457 | |
| 4458 | void Dbg::DdmDisconnected() { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4459 | Dbg::DdmBroadcast(false); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4460 | gDdmThreadNotification = false; |
| 4461 | } |
| 4462 | |
| 4463 | /* |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4464 | * Send a notification when a thread starts, stops, or changes its name. |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4465 | * |
| 4466 | * Because we broadcast the full set of threads when the notifications are |
| 4467 | * first enabled, it's possible for "thread" to be actively executing. |
| 4468 | */ |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4469 | void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) { |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4470 | if (!gDdmThreadNotification) { |
| 4471 | return; |
| 4472 | } |
| 4473 | |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4474 | RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4475 | if (type == CHUNK_TYPE("THDE")) { |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4476 | uint8_t buf[4]; |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4477 | JDWP::Set4BE(&buf[0], t->GetThreadId()); |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4478 | cb->DdmPublishChunk(CHUNK_TYPE("THDE"), ArrayRef<const uint8_t>(buf)); |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4479 | } else { |
| 4480 | CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type; |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4481 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 4482 | StackHandleScope<1> hs(soa.Self()); |
| Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 4483 | Handle<mirror::String> name(hs.NewHandle(t->GetThreadName())); |
| Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 4484 | size_t char_count = (name != nullptr) ? name->GetLength() : 0; |
| 4485 | const jchar* chars = (name != nullptr) ? name->GetValue() : nullptr; |
| 4486 | bool is_compressed = (name != nullptr) ? name->IsCompressed() : false; |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4487 | |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4488 | std::vector<uint8_t> bytes; |
| Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4489 | JDWP::Append4BE(bytes, t->GetThreadId()); |
| jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 4490 | if (is_compressed) { |
| 4491 | const uint8_t* chars_compressed = name->GetValueCompressed(); |
| 4492 | JDWP::AppendUtf16CompressedBE(bytes, chars_compressed, char_count); |
| 4493 | } else { |
| 4494 | JDWP::AppendUtf16BE(bytes, chars, char_count); |
| 4495 | } |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4496 | CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2); |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4497 | cb->DdmPublishChunk(type, ArrayRef<const uint8_t>(bytes)); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4498 | } |
| 4499 | } |
| 4500 | |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4501 | void Dbg::DdmSetThreadNotification(bool enable) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4502 | // Enable/disable thread notifications. |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4503 | gDdmThreadNotification = enable; |
| 4504 | if (enable) { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4505 | // Suspend the VM then post thread start notifications for all threads. Threads attaching will |
| 4506 | // see a suspension in progress and block until that ends. They then post their own start |
| 4507 | // notification. |
| 4508 | SuspendVM(); |
| 4509 | std::list<Thread*> threads; |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4510 | Thread* self = Thread::Current(); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4511 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4512 | MutexLock mu(self, *Locks::thread_list_lock_); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4513 | threads = Runtime::Current()->GetThreadList()->GetList(); |
| 4514 | } |
| 4515 | { |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4516 | ScopedObjectAccess soa(self); |
| Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4517 | for (Thread* thread : threads) { |
| 4518 | Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR")); |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4519 | } |
| 4520 | } |
| 4521 | ResumeVM(); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4522 | } |
| 4523 | } |
| 4524 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4525 | void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) { |
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 4526 | if (IsDebuggerActive()) { |
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 4527 | gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR")); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4528 | } |
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4529 | Dbg::DdmSendThreadNotification(t, type); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4530 | } |
| 4531 | |
| 4532 | void Dbg::PostThreadStart(Thread* t) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4533 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR")); |
| Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4534 | } |
| 4535 | |
| 4536 | void Dbg::PostThreadDeath(Thread* t) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4537 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE")); |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4538 | } |
| 4539 | |
| Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 4540 | JDWP::JdwpState* Dbg::GetJdwpState() { |
| 4541 | return gJdwpState; |
| 4542 | } |
| 4543 | |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4544 | int Dbg::DdmHandleHpifChunk(HpifWhen when) { |
| 4545 | if (when == HPIF_WHEN_NOW) { |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4546 | DdmSendHeapInfo(when); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4547 | return true; |
| 4548 | } |
| 4549 | |
| 4550 | if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) { |
| 4551 | LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when); |
| 4552 | return false; |
| 4553 | } |
| 4554 | |
| 4555 | gDdmHpifWhen = when; |
| 4556 | return true; |
| 4557 | } |
| 4558 | |
| 4559 | bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { |
| 4560 | if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) { |
| 4561 | LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when); |
| 4562 | return false; |
| 4563 | } |
| 4564 | |
| 4565 | if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { |
| 4566 | LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); |
| 4567 | return false; |
| 4568 | } |
| 4569 | |
| 4570 | if (native) { |
| 4571 | gDdmNhsgWhen = when; |
| 4572 | gDdmNhsgWhat = what; |
| 4573 | } else { |
| 4574 | gDdmHpsgWhen = when; |
| 4575 | gDdmHpsgWhat = what; |
| 4576 | } |
| 4577 | return true; |
| 4578 | } |
| 4579 | |
| Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4580 | void Dbg::DdmSendHeapInfo(HpifWhen reason) { |
| 4581 | // If there's a one-shot 'when', reset it. |
| 4582 | if (reason == gDdmHpifWhen) { |
| 4583 | if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) { |
| 4584 | gDdmHpifWhen = HPIF_WHEN_NEVER; |
| 4585 | } |
| 4586 | } |
| 4587 | |
| 4588 | /* |
| 4589 | * Chunk HPIF (client --> server) |
| 4590 | * |
| 4591 | * Heap Info. General information about the heap, |
| 4592 | * suitable for a summary display. |
| 4593 | * |
| 4594 | * [u4]: number of heaps |
| 4595 | * |
| 4596 | * For each heap: |
| 4597 | * [u4]: heap ID |
| 4598 | * [u8]: timestamp in ms since Unix epoch |
| 4599 | * [u1]: capture reason (same as 'when' value from server) |
| 4600 | * [u4]: max heap size in bytes (-Xmx) |
| 4601 | * [u4]: current heap size in bytes |
| 4602 | * [u4]: current number of bytes allocated |
| 4603 | * [u4]: current number of objects allocated |
| 4604 | */ |
| 4605 | uint8_t heap_count = 1; |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4606 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4607 | std::vector<uint8_t> bytes; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4608 | JDWP::Append4BE(bytes, heap_count); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4609 | JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap). |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4610 | JDWP::Append8BE(bytes, MilliTime()); |
| 4611 | JDWP::Append1BE(bytes, reason); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4612 | JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes. |
| 4613 | JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. |
| Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 4614 | JDWP::Append4BE(bytes, heap->GetBytesAllocated()); |
| 4615 | JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); |
| Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4616 | 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] | 4617 | Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(CHUNK_TYPE("HPIF"), |
| 4618 | ArrayRef<const uint8_t>(bytes)); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4619 | } |
| 4620 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4621 | enum HpsgSolidity { |
| 4622 | SOLIDITY_FREE = 0, |
| 4623 | SOLIDITY_HARD = 1, |
| 4624 | SOLIDITY_SOFT = 2, |
| 4625 | SOLIDITY_WEAK = 3, |
| 4626 | SOLIDITY_PHANTOM = 4, |
| 4627 | SOLIDITY_FINALIZABLE = 5, |
| 4628 | SOLIDITY_SWEEP = 6, |
| 4629 | }; |
| 4630 | |
| 4631 | enum HpsgKind { |
| 4632 | KIND_OBJECT = 0, |
| 4633 | KIND_CLASS_OBJECT = 1, |
| 4634 | KIND_ARRAY_1 = 2, |
| 4635 | KIND_ARRAY_2 = 3, |
| 4636 | KIND_ARRAY_4 = 4, |
| 4637 | KIND_ARRAY_8 = 5, |
| 4638 | KIND_UNKNOWN = 6, |
| 4639 | KIND_NATIVE = 7, |
| 4640 | }; |
| 4641 | |
| 4642 | #define HPSG_PARTIAL (1<<7) |
| 4643 | #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7))) |
| 4644 | |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4645 | class HeapChunkContext { |
| 4646 | public: |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4647 | // Maximum chunk size. Obtain this from the formula: |
| 4648 | // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2 |
| 4649 | HeapChunkContext(bool merge, bool native) |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4650 | : buf_(16384 - 16), |
| 4651 | type_(0), |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4652 | chunk_overhead_(0) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4653 | Reset(); |
| 4654 | if (native) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4655 | type_ = CHUNK_TYPE("NHSG"); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4656 | } else { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4657 | type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4658 | } |
| 4659 | } |
| 4660 | |
| 4661 | ~HeapChunkContext() { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4662 | if (p_ > &buf_[0]) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4663 | Flush(); |
| 4664 | } |
| 4665 | } |
| 4666 | |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4667 | void SetChunkOverhead(size_t chunk_overhead) { |
| 4668 | chunk_overhead_ = chunk_overhead; |
| 4669 | } |
| 4670 | |
| 4671 | void ResetStartOfNextChunk() { |
| 4672 | startOfNextMemoryChunk_ = nullptr; |
| 4673 | } |
| 4674 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4675 | void EnsureHeader(const void* chunk_ptr) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4676 | if (!needHeader_) { |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4677 | return; |
| 4678 | } |
| 4679 | |
| 4680 | // Start a new HPSx chunk. |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4681 | JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). |
| 4682 | JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4683 | |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4684 | JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. |
| 4685 | 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] | 4686 | // [u4]: length of piece, in allocation units |
| 4687 | // 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] | 4688 | pieceLenField_ = p_; |
| 4689 | JDWP::Write4BE(&p_, 0x55555555); |
| 4690 | needHeader_ = false; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4691 | } |
| 4692 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4693 | void Flush() REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4694 | if (pieceLenField_ == nullptr) { |
| Ian Rogers | d636b06 | 2013-01-18 17:51:18 -0800 | [diff] [blame] | 4695 | // Flush immediately post Reset (maybe back-to-back Flush). Ignore. |
| 4696 | CHECK(needHeader_); |
| 4697 | return; |
| 4698 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4699 | // Patch the "length of piece" field. |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4700 | CHECK_LE(&buf_[0], pieceLenField_); |
| 4701 | CHECK_LE(pieceLenField_, p_); |
| 4702 | JDWP::Set4BE(pieceLenField_, totalAllocationUnits_); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4703 | |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4704 | ArrayRef<const uint8_t> out(&buf_[0], p_ - &buf_[0]); |
| 4705 | Runtime::Current()->GetRuntimeCallbacks()->DdmPublishChunk(type_, out); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4706 | Reset(); |
| 4707 | } |
| 4708 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4709 | 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] | 4710 | REQUIRES_SHARED(Locks::heap_bitmap_lock_, |
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4711 | Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4712 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes); |
| 4713 | } |
| 4714 | |
| 4715 | 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] | 4716 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4717 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4718 | } |
| 4719 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4720 | private: |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4721 | enum { ALLOCATION_UNIT_SIZE = 8 }; |
| 4722 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4723 | void Reset() { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4724 | p_ = &buf_[0]; |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4725 | ResetStartOfNextChunk(); |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4726 | totalAllocationUnits_ = 0; |
| 4727 | needHeader_ = true; |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4728 | pieceLenField_ = nullptr; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4729 | } |
| 4730 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4731 | bool IsNative() const { |
| 4732 | return type_ == CHUNK_TYPE("NHSG"); |
| 4733 | } |
| 4734 | |
| 4735 | // Returns true if the object is not an empty chunk. |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4736 | 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] | 4737 | // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken |
| 4738 | // 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] | 4739 | if (used_bytes == 0) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4740 | if (start == nullptr) { |
| 4741 | // Reset for start of new heap. |
| 4742 | startOfNextMemoryChunk_ = nullptr; |
| 4743 | Flush(); |
| 4744 | } |
| 4745 | // Only process in use memory so that free region information |
| 4746 | // also includes dlmalloc book keeping. |
| 4747 | return false; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4748 | } |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4749 | if (startOfNextMemoryChunk_ != nullptr) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4750 | // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because |
| 4751 | // of the use of mmaps, so don't report. If not free memory then start a new segment. |
| 4752 | bool flush = true; |
| 4753 | if (start > startOfNextMemoryChunk_) { |
| 4754 | const size_t kMaxFreeLen = 2 * kPageSize; |
| 4755 | void* free_start = startOfNextMemoryChunk_; |
| 4756 | void* free_end = start; |
| 4757 | const size_t free_len = |
| 4758 | reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start); |
| 4759 | if (!IsNative() || free_len < kMaxFreeLen) { |
| 4760 | AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative()); |
| 4761 | flush = false; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4762 | } |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4763 | } |
| 4764 | if (flush) { |
| 4765 | startOfNextMemoryChunk_ = nullptr; |
| 4766 | Flush(); |
| 4767 | } |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4768 | } |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4769 | return true; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4770 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4771 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4772 | void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4773 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4774 | if (ProcessRecord(start, used_bytes)) { |
| 4775 | uint8_t state = ExamineNativeObject(start); |
| 4776 | AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/); |
| 4777 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4778 | } |
| 4779 | } |
| 4780 | |
| 4781 | void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4782 | REQUIRES_SHARED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4783 | if (ProcessRecord(start, used_bytes)) { |
| 4784 | // Determine the type of this chunk. |
| 4785 | // OLD-TODO: if context.merge, see if this chunk is different from the last chunk. |
| 4786 | // If it's the same, we should combine them. |
| 4787 | uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start)); |
| 4788 | AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/); |
| 4789 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4790 | } |
| 4791 | } |
| 4792 | |
| 4793 | 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] | 4794 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4795 | // Make sure there's enough room left in the buffer. |
| 4796 | // We need to use two bytes for every fractional 256 allocation units used by the chunk plus |
| 4797 | // 17 bytes for any header. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4798 | const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17; |
| 4799 | size_t byte_left = &buf_.back() - p_; |
| 4800 | if (byte_left < needed) { |
| 4801 | if (is_native) { |
| Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4802 | // Cannot trigger memory allocation while walking native heap. |
| Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4803 | return; |
| 4804 | } |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4805 | Flush(); |
| 4806 | } |
| 4807 | |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4808 | byte_left = &buf_.back() - p_; |
| 4809 | if (byte_left < needed) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4810 | LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", " |
| 4811 | << needed << " bytes)"; |
| 4812 | return; |
| 4813 | } |
| 4814 | EnsureHeader(ptr); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4815 | // Write out the chunk description. |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4816 | length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units. |
| 4817 | totalAllocationUnits_ += length; |
| 4818 | while (length > 256) { |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4819 | *p_++ = state | HPSG_PARTIAL; |
| 4820 | *p_++ = 255; // length - 1 |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4821 | length -= 256; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4822 | } |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4823 | *p_++ = state; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4824 | *p_++ = length - 1; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4825 | } |
| 4826 | |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4827 | uint8_t ExamineNativeObject(const void* p) REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4828 | return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4829 | } |
| 4830 | |
| 4831 | uint8_t ExamineJavaObject(mirror::Object* o) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4832 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4833 | if (o == nullptr) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4834 | return HPSG_STATE(SOLIDITY_FREE, 0); |
| 4835 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4836 | // It's an allocated chunk. Figure out what it is. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4837 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 4838 | if (!heap->IsLiveObjectLocked(o)) { |
| 4839 | LOG(ERROR) << "Invalid object in managed heap: " << o; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4840 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4841 | } |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 4842 | mirror::Class* c = o->GetClass(); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4843 | if (c == nullptr) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4844 | // The object was probably just created but hasn't been initialized yet. |
| 4845 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4846 | } |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4847 | if (!heap->IsValidObjectAddress(c)) { |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4848 | LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4849 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4850 | } |
| Mathieu Chartier | f26e1b3 | 2015-01-29 10:47:10 -0800 | [diff] [blame] | 4851 | if (c->GetClass() == nullptr) { |
| 4852 | LOG(ERROR) << "Null class of class " << c << " for object " << o; |
| 4853 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4854 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4855 | if (c->IsClassClass()) { |
| 4856 | return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT); |
| 4857 | } |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4858 | if (c->IsArrayClass()) { |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4859 | switch (c->GetComponentSize()) { |
| 4860 | case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1); |
| 4861 | case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2); |
| 4862 | case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4863 | case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8); |
| 4864 | } |
| 4865 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4866 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4867 | } |
| 4868 | |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4869 | std::vector<uint8_t> buf_; |
| 4870 | uint8_t* p_; |
| 4871 | uint8_t* pieceLenField_; |
| Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4872 | void* startOfNextMemoryChunk_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4873 | size_t totalAllocationUnits_; |
| 4874 | uint32_t type_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4875 | bool needHeader_; |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4876 | size_t chunk_overhead_; |
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4877 | |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4878 | DISALLOW_COPY_AND_ASSIGN(HeapChunkContext); |
| 4879 | }; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4880 | |
| 4881 | void Dbg::DdmSendHeapSegments(bool native) { |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4882 | Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen; |
| 4883 | Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat; |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4884 | if (when == HPSG_WHEN_NEVER) { |
| 4885 | return; |
| 4886 | } |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4887 | RuntimeCallbacks* cb = Runtime::Current()->GetRuntimeCallbacks(); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4888 | // Figure out what kind of chunks we'll be sending. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4889 | CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) |
| 4890 | << static_cast<int>(what); |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4891 | |
| 4892 | // First, send a heap start chunk. |
| 4893 | uint8_t heap_id[4]; |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4894 | 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] | 4895 | cb->DdmPublishChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), |
| 4896 | ArrayRef<const uint8_t>(heap_id)); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4897 | Thread* self = Thread::Current(); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4898 | Locks::mutator_lock_->AssertSharedHeld(self); |
| Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4899 | |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4900 | // Send a series of heap segment chunks. |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4901 | HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4902 | auto bump_pointer_space_visitor = [&](mirror::Object* obj) |
| 4903 | REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) { |
| 4904 | const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment); |
| 4905 | HeapChunkContext::HeapChunkJavaCallback( |
| 4906 | obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, &context); |
| 4907 | }; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4908 | if (native) { |
| Dimitry Ivanov | e6465bc | 2015-12-14 18:55:02 -0800 | [diff] [blame] | 4909 | UNIMPLEMENTED(WARNING) << "Native heap inspection is not supported"; |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4910 | } else { |
| Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4911 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4912 | for (const auto& space : heap->GetContinuousSpaces()) { |
| 4913 | if (space->IsDlMallocSpace()) { |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4914 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4915 | // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an |
| 4916 | // allocation then the first sizeof(size_t) may belong to it. |
| 4917 | context.SetChunkOverhead(sizeof(size_t)); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4918 | space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4919 | } else if (space->IsRosAllocSpace()) { |
| 4920 | context.SetChunkOverhead(0); |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4921 | // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since |
| 4922 | // 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] | 4923 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4924 | ScopedSuspendAll ssa(__FUNCTION__); |
| 4925 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4926 | space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4927 | } else if (space->IsBumpPointerSpace()) { |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4928 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4929 | context.SetChunkOverhead(0); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4930 | space->AsBumpPointerSpace()->Walk(bump_pointer_space_visitor); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4931 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
| Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4932 | } else if (space->IsRegionSpace()) { |
| 4933 | heap->IncrementDisableMovingGC(self); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4934 | { |
| 4935 | ScopedThreadSuspension sts(self, kSuspended); |
| Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4936 | ScopedSuspendAll ssa(__FUNCTION__); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4937 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4938 | context.SetChunkOverhead(0); |
| Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4939 | space->AsRegionSpace()->Walk(bump_pointer_space_visitor); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4940 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
| Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4941 | } |
| Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4942 | heap->DecrementDisableMovingGC(self); |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4943 | } else { |
| 4944 | UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space; |
| Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4945 | } |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4946 | context.ResetStartOfNextChunk(); |
| Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4947 | } |
| Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4948 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4949 | // Walk the large objects, these are not in the AllocSpace. |
| Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4950 | context.SetChunkOverhead(0); |
| Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4951 | heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4952 | } |
| Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4953 | |
| 4954 | // Finally, send a heap end chunk. |
| Alex Light | 772099a | 2017-11-21 14:05:04 -0800 | [diff] [blame] | 4955 | cb->DdmPublishChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), |
| 4956 | ArrayRef<const uint8_t>(heap_id)); |
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4957 | } |
| 4958 | |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4959 | void Dbg::SetAllocTrackingEnabled(bool enable) { |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4960 | gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4961 | } |
| 4962 | |
| 4963 | void Dbg::DumpRecentAllocations() { |
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4964 | ScopedObjectAccess soa(Thread::Current()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4965 | MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4966 | if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4967 | LOG(INFO) << "Not recording tracked allocations"; |
| 4968 | return; |
| 4969 | } |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4970 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 4971 | CHECK(records != nullptr); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4972 | |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 4973 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4974 | uint16_t count = capped_count; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4975 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4976 | LOG(INFO) << "Tracked allocations, (count=" << count << ")"; |
| 4977 | for (auto it = records->RBegin(), end = records->REnd(); |
| 4978 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 4979 | const gc::AllocRecord* record = &it->second; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4980 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4981 | LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4982 | << mirror::Class::PrettyClass(record->GetClass()); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4983 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4984 | for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { |
| 4985 | const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); |
| 4986 | ArtMethod* m = stack_element.GetMethod(); |
| David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4987 | LOG(INFO) << " " << ArtMethod::PrettyMethod(m) << " line " |
| 4988 | << stack_element.ComputeLineNumber(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4989 | } |
| 4990 | |
| 4991 | // pause periodically to help logcat catch up |
| 4992 | if ((count % 5) == 0) { |
| 4993 | usleep(40000); |
| 4994 | } |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4995 | } |
| 4996 | } |
| 4997 | |
| 4998 | class StringTable { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4999 | private: |
| 5000 | struct Entry { |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 5001 | explicit Entry(const char* data_in) |
| 5002 | : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { |
| 5003 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5004 | Entry(const Entry& entry) = default; |
| 5005 | Entry(Entry&& entry) = default; |
| 5006 | |
| 5007 | // Pointer to the actual string data. |
| 5008 | const char* data; |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 5009 | |
| 5010 | // The hash of the data. |
| 5011 | const uint32_t hash; |
| 5012 | |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5013 | // The index. This will be filled in on Finish and is not part of the ordering, so mark it |
| 5014 | // mutable. |
| 5015 | mutable uint32_t index; |
| 5016 | |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 5017 | bool operator==(const Entry& other) const { |
| 5018 | return strcmp(data, other.data) == 0; |
| 5019 | } |
| 5020 | }; |
| 5021 | struct EntryHash { |
| 5022 | size_t operator()(const Entry& entry) const { |
| 5023 | return entry.hash; |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5024 | } |
| 5025 | }; |
| 5026 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5027 | public: |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5028 | StringTable() : finished_(false) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5029 | } |
| 5030 | |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5031 | void Add(const char* str, bool copy_string) { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5032 | DCHECK(!finished_); |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5033 | if (UNLIKELY(copy_string)) { |
| 5034 | // Check whether it's already there. |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5035 | Entry entry(str); |
| 5036 | if (table_.find(entry) != table_.end()) { |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5037 | return; |
| 5038 | } |
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 5039 | |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5040 | // Make a copy. |
| 5041 | size_t str_len = strlen(str); |
| 5042 | char* copy = new char[str_len + 1]; |
| 5043 | strlcpy(copy, str, str_len + 1); |
| 5044 | string_backup_.emplace_back(copy); |
| 5045 | str = copy; |
| 5046 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5047 | Entry entry(str); |
| 5048 | table_.insert(entry); |
| 5049 | } |
| 5050 | |
| 5051 | // Update all entries and give them an index. Note that this is likely not the insertion order, |
| 5052 | // as the set will with high likelihood reorder elements. Thus, Add must not be called after |
| 5053 | // Finish, and Finish must be called before IndexOf. In that case, WriteTo will walk in |
| 5054 | // the same order as Finish, and indices will agree. The order invariant, as well as indices, |
| 5055 | // are enforced through debug checks. |
| 5056 | void Finish() { |
| 5057 | DCHECK(!finished_); |
| 5058 | finished_ = true; |
| 5059 | uint32_t index = 0; |
| 5060 | for (auto& entry : table_) { |
| 5061 | entry.index = index; |
| 5062 | ++index; |
| 5063 | } |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5064 | } |
| 5065 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5066 | size_t IndexOf(const char* s) const { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5067 | DCHECK(finished_); |
| 5068 | Entry entry(s); |
| 5069 | auto it = table_.find(entry); |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5070 | if (it == table_.end()) { |
| 5071 | LOG(FATAL) << "IndexOf(\"" << s << "\") failed"; |
| 5072 | } |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5073 | return it->index; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5074 | } |
| 5075 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5076 | size_t Size() const { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5077 | return table_.size(); |
| 5078 | } |
| 5079 | |
| Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5080 | void WriteTo(std::vector<uint8_t>& bytes) const { |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5081 | DCHECK(finished_); |
| 5082 | uint32_t cur_index = 0; |
| 5083 | for (const auto& entry : table_) { |
| 5084 | DCHECK_EQ(cur_index++, entry.index); |
| 5085 | |
| 5086 | size_t s_len = CountModifiedUtf8Chars(entry.data); |
| Christopher Ferris | 8a35405 | 2015-04-24 17:23:53 -0700 | [diff] [blame] | 5087 | std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]); |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5088 | ConvertModifiedUtf8ToUtf16(s_utf16.get(), entry.data); |
| Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 5089 | JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5090 | } |
| 5091 | } |
| 5092 | |
| 5093 | private: |
| Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 5094 | std::unordered_set<Entry, EntryHash> table_; |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5095 | std::vector<std::unique_ptr<char[]>> string_backup_; |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5096 | |
| 5097 | bool finished_; |
| 5098 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5099 | DISALLOW_COPY_AND_ASSIGN(StringTable); |
| 5100 | }; |
| 5101 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5102 | static const char* GetMethodSourceFile(ArtMethod* method) |
| Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 5103 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5104 | DCHECK(method != nullptr); |
| 5105 | const char* source_file = method->GetDeclaringClassSourceFile(); |
| Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 5106 | return (source_file != nullptr) ? source_file : ""; |
| 5107 | } |
| 5108 | |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5109 | /* |
| 5110 | * The data we send to DDMS contains everything we have recorded. |
| 5111 | * |
| 5112 | * Message header (all values big-endian): |
| 5113 | * (1b) message header len (to allow future expansion); includes itself |
| 5114 | * (1b) entry header len |
| 5115 | * (1b) stack frame len |
| 5116 | * (2b) number of entries |
| 5117 | * (4b) offset to string table from start of message |
| 5118 | * (2b) number of class name strings |
| 5119 | * (2b) number of method name strings |
| 5120 | * (2b) number of source file name strings |
| 5121 | * For each entry: |
| 5122 | * (4b) total allocation size |
| Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 5123 | * (2b) thread id |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5124 | * (2b) allocated object's class name index |
| 5125 | * (1b) stack depth |
| 5126 | * For each stack frame: |
| 5127 | * (2b) method's class name |
| 5128 | * (2b) method name |
| 5129 | * (2b) method source file |
| 5130 | * (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| 5131 | * (xb) class name strings |
| 5132 | * (xb) method name strings |
| 5133 | * (xb) source file strings |
| 5134 | * |
| 5135 | * As with other DDM traffic, strings are sent as a 4-byte length |
| 5136 | * followed by UTF-16 data. |
| 5137 | * |
| 5138 | * 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] | 5139 | * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5140 | * each table, but in practice there should be far fewer. |
| 5141 | * |
| 5142 | * The chief reason for using a string table here is to keep the size of |
| 5143 | * the DDMS message to a minimum. This is partly to make the protocol |
| 5144 | * efficient, but also because we have to form the whole thing up all at |
| 5145 | * once in a memory buffer. |
| 5146 | * |
| 5147 | * We use separate string tables for class names, method names, and source |
| 5148 | * files to keep the indexes small. There will generally be no overlap |
| 5149 | * between the contents of these tables. |
| 5150 | */ |
| 5151 | jbyteArray Dbg::GetRecentAllocations() { |
| Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 5152 | if ((false)) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5153 | DumpRecentAllocations(); |
| 5154 | } |
| 5155 | |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5156 | Thread* self = Thread::Current(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5157 | std::vector<uint8_t> bytes; |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5158 | { |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5159 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5160 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 5161 | // In case this method is called when allocation tracker is disabled, |
| 5162 | // we should still send some data back. |
| 5163 | gc::AllocRecordObjectMap dummy; |
| 5164 | if (records == nullptr) { |
| 5165 | CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()); |
| 5166 | records = &dummy; |
| 5167 | } |
| Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5168 | // We don't need to wait on the condition variable records->new_record_condition_, because this |
| 5169 | // function only reads the class objects, which are already marked so it doesn't change their |
| 5170 | // reachability. |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5171 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5172 | // |
| 5173 | // Part 1: generate string tables. |
| 5174 | // |
| 5175 | StringTable class_names; |
| 5176 | StringTable method_names; |
| 5177 | StringTable filenames; |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5178 | |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5179 | VLOG(jdwp) << "Collecting StringTables."; |
| 5180 | |
| Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 5181 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5182 | uint16_t count = capped_count; |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5183 | size_t alloc_byte_count = 0; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5184 | for (auto it = records->RBegin(), end = records->REnd(); |
| 5185 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 5186 | const gc::AllocRecord* record = &it->second; |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 5187 | std::string temp; |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5188 | const char* class_descr = record->GetClassDescriptor(&temp); |
| 5189 | class_names.Add(class_descr, !temp.empty()); |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5190 | |
| 5191 | // Size + tid + class name index + stack depth. |
| 5192 | alloc_byte_count += 4u + 2u + 2u + 1u; |
| 5193 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5194 | for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { |
| 5195 | ArtMethod* m = record->StackElement(i).GetMethod(); |
| Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5196 | class_names.Add(m->GetDeclaringClassDescriptor(), false); |
| 5197 | method_names.Add(m->GetName(), false); |
| 5198 | filenames.Add(GetMethodSourceFile(m), false); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5199 | } |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5200 | |
| 5201 | // Depth * (class index + method name index + file name index + line number). |
| 5202 | alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5203 | } |
| 5204 | |
| Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5205 | class_names.Finish(); |
| 5206 | method_names.Finish(); |
| 5207 | filenames.Finish(); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5208 | VLOG(jdwp) << "Done collecting StringTables:" << std::endl |
| 5209 | << " ClassNames: " << class_names.Size() << std::endl |
| 5210 | << " MethodNames: " << method_names.Size() << std::endl |
| 5211 | << " Filenames: " << filenames.Size(); |
| 5212 | |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5213 | LOG(INFO) << "recent allocation records: " << capped_count; |
| 5214 | LOG(INFO) << "allocation records all objects: " << records->Size(); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5215 | |
| 5216 | // |
| 5217 | // Part 2: Generate the output and store it in the buffer. |
| 5218 | // |
| 5219 | |
| 5220 | // (1b) message header len (to allow future expansion); includes itself |
| 5221 | // (1b) entry header len |
| 5222 | // (1b) stack frame len |
| 5223 | const int kMessageHeaderLen = 15; |
| 5224 | const int kEntryHeaderLen = 9; |
| 5225 | const int kStackFrameLen = 8; |
| 5226 | JDWP::Append1BE(bytes, kMessageHeaderLen); |
| 5227 | JDWP::Append1BE(bytes, kEntryHeaderLen); |
| 5228 | JDWP::Append1BE(bytes, kStackFrameLen); |
| 5229 | |
| 5230 | // (2b) number of entries |
| 5231 | // (4b) offset to string table from start of message |
| 5232 | // (2b) number of class name strings |
| 5233 | // (2b) number of method name strings |
| 5234 | // (2b) number of source file name strings |
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5235 | JDWP::Append2BE(bytes, capped_count); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5236 | size_t string_table_offset = bytes.size(); |
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 5237 | JDWP::Append4BE(bytes, 0); // We'll patch this later... |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5238 | JDWP::Append2BE(bytes, class_names.Size()); |
| 5239 | JDWP::Append2BE(bytes, method_names.Size()); |
| 5240 | JDWP::Append2BE(bytes, filenames.Size()); |
| 5241 | |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5242 | VLOG(jdwp) << "Dumping allocations with stacks"; |
| 5243 | |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5244 | // Enlarge the vector for the allocation data. |
| 5245 | size_t reserve_size = bytes.size() + alloc_byte_count; |
| 5246 | bytes.reserve(reserve_size); |
| 5247 | |
| Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 5248 | std::string temp; |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5249 | count = capped_count; |
| 5250 | // The last "count" number of allocation records in "records" are the most recent "count" number |
| 5251 | // of allocations. Reverse iterate to get them. The most recent allocation is sent first. |
| 5252 | for (auto it = records->RBegin(), end = records->REnd(); |
| 5253 | count > 0 && it != end; count--, it++) { |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5254 | // For each entry: |
| 5255 | // (4b) total allocation size |
| 5256 | // (2b) thread id |
| 5257 | // (2b) allocated object's class name index |
| 5258 | // (1b) stack depth |
| Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 5259 | const gc::AllocRecord* record = &it->second; |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5260 | size_t stack_depth = record->GetDepth(); |
| Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 5261 | size_t allocated_object_class_name_index = |
| Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5262 | class_names.IndexOf(record->GetClassDescriptor(&temp)); |
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 5263 | JDWP::Append4BE(bytes, record->ByteCount()); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5264 | JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid())); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5265 | JDWP::Append2BE(bytes, allocated_object_class_name_index); |
| 5266 | JDWP::Append1BE(bytes, stack_depth); |
| 5267 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5268 | for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { |
| 5269 | // For each stack frame: |
| 5270 | // (2b) method's class name |
| 5271 | // (2b) method name |
| 5272 | // (2b) method source file |
| 5273 | // (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] | 5274 | ArtMethod* m = record->StackElement(stack_frame).GetMethod(); |
| Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5275 | size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); |
| 5276 | size_t method_name_index = method_names.IndexOf(m->GetName()); |
| 5277 | size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5278 | JDWP::Append2BE(bytes, class_name_index); |
| 5279 | JDWP::Append2BE(bytes, method_name_index); |
| 5280 | JDWP::Append2BE(bytes, file_name_index); |
| Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5281 | JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber()); |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5282 | } |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5283 | } |
| 5284 | |
| Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5285 | CHECK_EQ(bytes.size(), reserve_size); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5286 | VLOG(jdwp) << "Dumping tables."; |
| 5287 | |
| Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5288 | // (xb) class name strings |
| 5289 | // (xb) method name strings |
| 5290 | // (xb) source file strings |
| 5291 | JDWP::Set4BE(&bytes[string_table_offset], bytes.size()); |
| 5292 | class_names.WriteTo(bytes); |
| 5293 | method_names.WriteTo(bytes); |
| 5294 | filenames.WriteTo(bytes); |
| Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5295 | |
| 5296 | VLOG(jdwp) << "GetRecentAllocations: data created. " << bytes.size(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5297 | } |
| Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5298 | JNIEnv* env = self->GetJniEnv(); |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5299 | jbyteArray result = env->NewByteArray(bytes.size()); |
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 5300 | if (result != nullptr) { |
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5301 | env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); |
| 5302 | } |
| 5303 | return result; |
| 5304 | } |
| 5305 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5306 | ArtMethod* DeoptimizationRequest::Method() const { |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 5307 | return jni::DecodeArtMethod(method_); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5308 | } |
| 5309 | |
| Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5310 | void DeoptimizationRequest::SetMethod(ArtMethod* m) { |
| Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 5311 | method_ = jni::EncodeArtMethod(m); |
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5312 | } |
| 5313 | |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5314 | void Dbg::VisitRoots(RootVisitor* visitor) { |
| 5315 | // Visit breakpoint roots, used to prevent unloading of methods with breakpoints. |
| 5316 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 5317 | BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal)); |
| 5318 | for (Breakpoint& breakpoint : gBreakpoints) { |
| Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 5319 | breakpoint.Method()->VisitRoots(root_visitor, kRuntimePointerSize); |
| Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5320 | } |
| 5321 | } |
| 5322 | |
| Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 5323 | void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) { |
| 5324 | Dbg::PostThreadStart(self); |
| 5325 | } |
| 5326 | |
| 5327 | void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) { |
| 5328 | Dbg::PostThreadDeath(self); |
| 5329 | } |
| 5330 | |
| Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 5331 | void Dbg::DbgClassLoadCallback::ClassLoad(Handle<mirror::Class> klass ATTRIBUTE_UNUSED) { |
| 5332 | // Ignore ClassLoad; |
| 5333 | } |
| 5334 | void Dbg::DbgClassLoadCallback::ClassPrepare(Handle<mirror::Class> temp_klass ATTRIBUTE_UNUSED, |
| 5335 | Handle<mirror::Class> klass) { |
| 5336 | Dbg::PostClassPrepare(klass.Get()); |
| 5337 | } |
| 5338 | |
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 5339 | } // namespace art |