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 | |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 21 | #include <memory> |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 22 | #include <set> |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 23 | #include <vector> |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 24 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 25 | #include "android-base/stringprintf.h" |
| 26 | |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 27 | #include "arch/context.h" |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 28 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 29 | #include "art_method-inl.h" |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 30 | #include "base/enums.h" |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 31 | #include "base/strlcpy.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 32 | #include "base/time_utils.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 33 | #include "class_linker-inl.h" |
Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 34 | #include "class_linker.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 35 | #include "dex_file-inl.h" |
David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 36 | #include "dex_file_annotations.h" |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 37 | #include "dex_instruction.h" |
Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 38 | #include "entrypoints/runtime_asm_entrypoints.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 39 | #include "gc/accounting/card_table-inl.h" |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 40 | #include "gc/allocation_record.h" |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 41 | #include "gc/scoped_gc_critical_section.h" |
Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 42 | #include "gc/space/bump_pointer_space-walk-inl.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 43 | #include "gc/space/large_object_space.h" |
| 44 | #include "gc/space/space-inl.h" |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 45 | #include "handle_scope-inl.h" |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 46 | #include "jdwp/jdwp_priv.h" |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 47 | #include "jdwp/object_registry.h" |
Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 48 | #include "jni_internal.h" |
Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 49 | #include "jvalue-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 50 | #include "mirror/class-inl.h" |
Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 51 | #include "mirror/class.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 52 | #include "mirror/class_loader.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 53 | #include "mirror/object-inl.h" |
| 54 | #include "mirror/object_array-inl.h" |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 55 | #include "mirror/string-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 56 | #include "mirror/throwable.h" |
Steven Moreland | e431e27 | 2017-07-18 16:53:49 -0700 | [diff] [blame] | 57 | #include "nativehelper/ScopedLocalRef.h" |
| 58 | #include "nativehelper/ScopedPrimitiveArray.h" |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 59 | #include "obj_ptr-inl.h" |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 60 | #include "reflection.h" |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 61 | #include "safe_map.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 62 | #include "scoped_thread_state_change-inl.h" |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 63 | #include "stack.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 64 | #include "thread_list.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 65 | #include "utf.h" |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 66 | #include "well_known_classes.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 67 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 68 | namespace art { |
| 69 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 70 | using android::base::StringPrintf; |
| 71 | |
Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 72 | // The key identifying the debugger to update instrumentation. |
| 73 | static constexpr const char* kDbgInstrumentationKey = "Debugger"; |
| 74 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 75 | // 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] | 76 | static uint16_t CappedAllocRecordCount(size_t alloc_record_count) { |
Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 77 | const size_t cap = 0xffff; |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 78 | if (alloc_record_count > cap) { |
| 79 | return cap; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 80 | } |
| 81 | return alloc_record_count; |
| 82 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 83 | |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 84 | class Breakpoint : public ValueObject { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 85 | public: |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 86 | Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind) |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 87 | : method_(method->GetCanonicalMethod(kRuntimePointerSize)), |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 88 | dex_pc_(dex_pc), |
| 89 | deoptimization_kind_(deoptimization_kind) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 90 | CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing || |
| 91 | deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization || |
| 92 | deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 95 | Breakpoint(const Breakpoint& other) REQUIRES_SHARED(Locks::mutator_lock_) |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 96 | : method_(other.method_), |
| 97 | dex_pc_(other.dex_pc_), |
| 98 | deoptimization_kind_(other.deoptimization_kind_) {} |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 99 | |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 100 | // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause |
| 101 | // GC to deadlock if another thread tries to call SuspendAll while the GC is in a runnable state. |
| 102 | ArtMethod* Method() const { |
| 103 | return method_; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | uint32_t DexPc() const { |
| 107 | return dex_pc_; |
| 108 | } |
| 109 | |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 110 | DeoptimizationRequest::Kind GetDeoptimizationKind() const { |
| 111 | return deoptimization_kind_; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 112 | } |
| 113 | |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 114 | // Returns true if the method of this breakpoint and the passed in method should be considered the |
| 115 | // 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] | 116 | bool IsInMethod(ArtMethod* m) const REQUIRES_SHARED(Locks::mutator_lock_) { |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 117 | return method_ == m->GetCanonicalMethod(kRuntimePointerSize); |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 118 | } |
| 119 | |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 120 | private: |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 121 | // The location of this breakpoint. |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 122 | ArtMethod* method_; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 123 | uint32_t dex_pc_; |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 124 | |
| 125 | // Indicates whether breakpoint needs full deoptimization or selective deoptimization. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 126 | DeoptimizationRequest::Kind deoptimization_kind_; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 127 | }; |
| 128 | |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 129 | static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 130 | REQUIRES_SHARED(Locks::mutator_lock_) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 131 | os << StringPrintf("Breakpoint[%s @%#x]", ArtMethod::PrettyMethod(rhs.Method()).c_str(), |
| 132 | rhs.DexPc()); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 133 | return os; |
| 134 | } |
| 135 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 136 | class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 137 | public: |
| 138 | DebugInstrumentationListener() {} |
| 139 | virtual ~DebugInstrumentationListener() {} |
| 140 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 141 | void MethodEntered(Thread* thread, |
| 142 | Handle<mirror::Object> this_object, |
| 143 | ArtMethod* method, |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 144 | uint32_t dex_pc) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 145 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 146 | if (method->IsNative()) { |
| 147 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 148 | return; |
| 149 | } |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 150 | if (IsListeningToDexPcMoved()) { |
| 151 | // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is |
| 152 | // going to be called right after us. To avoid sending JDWP events twice for this location, |
| 153 | // we report the event in DexPcMoved. However, we must remind this is method entry so we |
| 154 | // send the METHOD_ENTRY event. And we can also group it with other events for this location |
| 155 | // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction). |
| 156 | thread->SetDebugMethodEntry(); |
| 157 | } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) { |
| 158 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 159 | // RETURN so we know the MethodExited method is going to be called right after us. To avoid |
| 160 | // sending JDWP events twice for this location, we report the event(s) in MethodExited. |
| 161 | // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can |
| 162 | // also group it with other events for this location like BREAKPOINT or SINGLE_STEP. |
| 163 | thread->SetDebugMethodEntry(); |
| 164 | } else { |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 165 | Dbg::UpdateDebugger(thread, this_object.Get(), method, 0, Dbg::kMethodEntry, nullptr); |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 166 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 167 | } |
| 168 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 169 | void MethodExited(Thread* thread, |
| 170 | Handle<mirror::Object> this_object, |
| 171 | ArtMethod* method, |
| 172 | uint32_t dex_pc, |
| 173 | const JValue& return_value) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 174 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 175 | if (method->IsNative()) { |
| 176 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 177 | return; |
| 178 | } |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 179 | uint32_t events = Dbg::kMethodExit; |
| 180 | if (thread->IsDebugMethodEntry()) { |
| 181 | // It is also the method entry. |
| 182 | DCHECK(IsReturn(method, dex_pc)); |
| 183 | events |= Dbg::kMethodEntry; |
| 184 | thread->ClearDebugMethodEntry(); |
| 185 | } |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 186 | Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 187 | } |
| 188 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 189 | void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, |
| 190 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
| 191 | ArtMethod* method, |
| 192 | uint32_t dex_pc) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 193 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 194 | // 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] | 195 | LOG(ERROR) << "Unexpected method unwind event in debugger " << ArtMethod::PrettyMethod(method) |
Sebastien Hertz | 51db44a | 2013-11-19 10:00:29 +0100 | [diff] [blame] | 196 | << " " << dex_pc; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 197 | } |
| 198 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 199 | void DexPcMoved(Thread* thread, |
| 200 | Handle<mirror::Object> this_object, |
| 201 | ArtMethod* method, |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 202 | uint32_t new_dex_pc) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 203 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 204 | if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) { |
| 205 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 206 | // RETURN so we know the MethodExited method is going to be called right after us. Like in |
| 207 | // MethodEntered, we delegate event reporting to MethodExited. |
| 208 | // Besides, if this RETURN instruction is the only one in the method, we can send multiple |
| 209 | // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP. |
| 210 | // Therefore, we must not clear the debug method entry flag here. |
| 211 | } else { |
| 212 | uint32_t events = 0; |
| 213 | if (thread->IsDebugMethodEntry()) { |
| 214 | // It is also the method entry. |
| 215 | events = Dbg::kMethodEntry; |
| 216 | thread->ClearDebugMethodEntry(); |
| 217 | } |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 218 | Dbg::UpdateDebugger(thread, this_object.Get(), method, new_dex_pc, events, nullptr); |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 219 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 220 | } |
| 221 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 222 | void FieldRead(Thread* thread ATTRIBUTE_UNUSED, |
| 223 | Handle<mirror::Object> this_object, |
| 224 | ArtMethod* method, |
| 225 | uint32_t dex_pc, |
| 226 | ArtField* field) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 227 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 228 | Dbg::PostFieldAccessEvent(method, dex_pc, this_object.Get(), field); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 229 | } |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 230 | |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 231 | void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, |
| 232 | Handle<mirror::Object> this_object, |
| 233 | ArtMethod* method, |
| 234 | uint32_t dex_pc, |
| 235 | ArtField* field, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 236 | const JValue& field_value) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 237 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 238 | Dbg::PostFieldModificationEvent(method, dex_pc, this_object.Get(), field, &field_value); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 239 | } |
| 240 | |
Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 241 | void ExceptionThrown(Thread* thread ATTRIBUTE_UNUSED, |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 242 | Handle<mirror::Throwable> exception_object) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 243 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 244 | Dbg::PostException(exception_object.Get()); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 245 | } |
| 246 | |
Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 247 | // We only care about branches in the Jit. |
| 248 | 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] | 249 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 250 | LOG(ERROR) << "Unexpected branch event in debugger " << ArtMethod::PrettyMethod(method) |
Nicolas Geoffray | 81f0f95 | 2016-01-20 16:25:19 +0000 | [diff] [blame] | 251 | << " " << dex_pc << ", " << dex_pc_offset; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 252 | } |
| 253 | |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 254 | // We only care about invokes in the Jit. |
| 255 | void InvokeVirtualOrInterface(Thread* thread ATTRIBUTE_UNUSED, |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 256 | Handle<mirror::Object> this_object ATTRIBUTE_UNUSED, |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 257 | ArtMethod* method, |
| 258 | uint32_t dex_pc, |
Alex Light | d766158 | 2017-05-01 13:48:16 -0700 | [diff] [blame] | 259 | ArtMethod* target ATTRIBUTE_UNUSED) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 260 | OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 261 | LOG(ERROR) << "Unexpected invoke event in debugger " << ArtMethod::PrettyMethod(method) |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 262 | << " " << dex_pc; |
| 263 | } |
| 264 | |
Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 265 | // TODO Might be worth it to post ExceptionCatch event. |
| 266 | void ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED, |
| 267 | Handle<mirror::Throwable> throwable ATTRIBUTE_UNUSED) OVERRIDE { |
| 268 | LOG(ERROR) << "Unexpected exception handled event in debugger"; |
| 269 | } |
| 270 | |
Alex Light | 05f4774 | 2017-09-14 00:34:44 +0000 | [diff] [blame^] | 271 | // TODO Might be worth it to implement this. |
| 272 | void WatchedFramePop(Thread* thread ATTRIBUTE_UNUSED, |
| 273 | const ShadowFrame& frame ATTRIBUTE_UNUSED) OVERRIDE { |
| 274 | LOG(ERROR) << "Unexpected WatchedFramePop event in debugger"; |
| 275 | } |
Alex Light | 798eab0 | 2017-08-23 12:54:53 -0700 | [diff] [blame] | 276 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 277 | private: |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 278 | static bool IsReturn(ArtMethod* method, uint32_t dex_pc) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 279 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 280 | const DexFile::CodeItem* code_item = method->GetCodeItem(); |
| 281 | const Instruction* instruction = Instruction::At(&code_item->insns_[dex_pc]); |
| 282 | return instruction->IsReturn(); |
| 283 | } |
| 284 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 285 | static bool IsListeningToDexPcMoved() REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 286 | return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved); |
| 287 | } |
| 288 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 289 | static bool IsListeningToMethodExit() REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 290 | return IsListeningTo(instrumentation::Instrumentation::kMethodExited); |
| 291 | } |
| 292 | |
| 293 | static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 294 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 295 | return (Dbg::GetInstrumentationEvents() & event) != 0; |
| 296 | } |
| 297 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 298 | DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 299 | } gDebugInstrumentationListener; |
| 300 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 301 | // JDWP is allowed unless the Zygote forbids it. |
| 302 | static bool gJdwpAllowed = true; |
| 303 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 304 | // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line? |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 305 | static bool gJdwpConfigured = false; |
| 306 | |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 307 | // JDWP options for debugging. Only valid if IsJdwpConfigured() is true. |
| 308 | static JDWP::JdwpOptions gJdwpOptions; |
| 309 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 310 | // Runtime JDWP state. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 311 | static JDWP::JdwpState* gJdwpState = nullptr; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 312 | static bool gDebuggerConnected; // debugger or DDMS is connected. |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 313 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 314 | static bool gDdmThreadNotification = false; |
| 315 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 316 | // DDMS GC-related settings. |
| 317 | static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER; |
| 318 | static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 319 | static Dbg::HpsgWhat gDdmHpsgWhat; |
| 320 | static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 321 | static Dbg::HpsgWhat gDdmNhsgWhat; |
| 322 | |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 323 | bool Dbg::gDebuggerActive = false; |
Sebastien Hertz | 4e5b208 | 2015-03-24 19:03:40 +0100 | [diff] [blame] | 324 | bool Dbg::gDisposed = false; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 325 | ObjectRegistry* Dbg::gRegistry = nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 326 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 327 | // Deoptimization support. |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 328 | std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_; |
| 329 | size_t Dbg::full_deoptimization_event_count_ = 0; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 330 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 331 | // Instrumentation event reference counters. |
| 332 | size_t Dbg::dex_pc_change_event_ref_count_ = 0; |
| 333 | size_t Dbg::method_enter_event_ref_count_ = 0; |
| 334 | size_t Dbg::method_exit_event_ref_count_ = 0; |
| 335 | size_t Dbg::field_read_event_ref_count_ = 0; |
| 336 | size_t Dbg::field_write_event_ref_count_ = 0; |
| 337 | size_t Dbg::exception_catch_event_ref_count_ = 0; |
| 338 | uint32_t Dbg::instrumentation_events_ = 0; |
| 339 | |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 340 | Dbg::DbgThreadLifecycleCallback Dbg::thread_lifecycle_callback_; |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 341 | Dbg::DbgClassLoadCallback Dbg::class_load_callback_; |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 342 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 343 | // Breakpoints. |
jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 344 | static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 345 | |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 346 | void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) { |
| 347 | receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call. |
| 348 | klass.VisitRoot(visitor, root_info); |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 349 | } |
| 350 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 351 | void SingleStepControl::AddDexPc(uint32_t dex_pc) { |
| 352 | dex_pcs_.insert(dex_pc); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 353 | } |
| 354 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 355 | bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const { |
| 356 | return dex_pcs_.find(dex_pc) == dex_pcs_.end(); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 357 | } |
| 358 | |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 359 | static bool IsBreakpoint(ArtMethod* m, uint32_t dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 360 | REQUIRES(!Locks::breakpoint_lock_) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 361 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 362 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 363 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 364 | if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].IsInMethod(m)) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 365 | VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; |
| 366 | return true; |
| 367 | } |
| 368 | } |
| 369 | return false; |
| 370 | } |
| 371 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 372 | static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 373 | REQUIRES(!Locks::thread_suspend_count_lock_) { |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 374 | MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_); |
| 375 | // A thread may be suspended for GC; in this code, we really want to know whether |
| 376 | // there's a debugger suspension active. |
| 377 | return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; |
| 378 | } |
| 379 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 380 | static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 381 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 382 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 383 | if (o == nullptr) { |
| 384 | *error = JDWP::ERR_INVALID_OBJECT; |
| 385 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 386 | } |
| 387 | if (!o->IsArrayInstance()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 388 | *error = JDWP::ERR_INVALID_ARRAY; |
| 389 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 390 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 391 | *error = JDWP::ERR_NONE; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 392 | return o->AsArray(); |
| 393 | } |
| 394 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 395 | static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 396 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 397 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 398 | if (o == nullptr) { |
| 399 | *error = JDWP::ERR_INVALID_OBJECT; |
| 400 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 401 | } |
| 402 | if (!o->IsClass()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 403 | *error = JDWP::ERR_INVALID_CLASS; |
| 404 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 405 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 406 | *error = JDWP::ERR_NONE; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 407 | return o->AsClass(); |
| 408 | } |
| 409 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 410 | static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, |
| 411 | JDWP::JdwpError* error) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 412 | REQUIRES_SHARED(Locks::mutator_lock_) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 413 | REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 414 | mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 415 | if (thread_peer == nullptr) { |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 416 | // This isn't even an object. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 417 | *error = JDWP::ERR_INVALID_OBJECT; |
| 418 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 419 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 420 | |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 421 | ObjPtr<mirror::Class> java_lang_Thread = |
| 422 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 423 | if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) { |
| 424 | // This isn't a thread. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 425 | *error = JDWP::ERR_INVALID_THREAD; |
| 426 | return nullptr; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 427 | } |
| 428 | |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 429 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 430 | Thread* thread = Thread::FromManagedThread(soa, thread_peer); |
| 431 | // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a |
| 432 | // zombie. |
| 433 | *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE; |
| 434 | return thread; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 435 | } |
| 436 | |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 437 | static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { |
| 438 | // JDWP deliberately uses the descriptor characters' ASCII values for its enum. |
| 439 | // Note that by "basic" we mean that we don't get more specific than JT_OBJECT. |
| 440 | return static_cast<JDWP::JdwpTag>(descriptor[0]); |
| 441 | } |
| 442 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 443 | static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 444 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 445 | std::string temp; |
| 446 | const char* descriptor = klass->GetDescriptor(&temp); |
| 447 | return BasicTagFromDescriptor(descriptor); |
| 448 | } |
| 449 | |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 450 | static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 451 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 452 | CHECK(c != nullptr); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 453 | if (c->IsArrayClass()) { |
| 454 | return JDWP::JT_ARRAY; |
| 455 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 456 | if (c->IsStringClass()) { |
| 457 | return JDWP::JT_STRING; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 458 | } |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 459 | if (c->IsClassClass()) { |
| 460 | return JDWP::JT_CLASS_OBJECT; |
| 461 | } |
| 462 | { |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 463 | ObjPtr<mirror::Class> thread_class = |
| 464 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 465 | if (thread_class->IsAssignableFrom(c)) { |
| 466 | return JDWP::JT_THREAD; |
| 467 | } |
| 468 | } |
| 469 | { |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 470 | ObjPtr<mirror::Class> thread_group_class = |
| 471 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 472 | if (thread_group_class->IsAssignableFrom(c)) { |
| 473 | return JDWP::JT_THREAD_GROUP; |
| 474 | } |
| 475 | } |
| 476 | { |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 477 | ObjPtr<mirror::Class> class_loader_class = |
| 478 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ClassLoader); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 479 | if (class_loader_class->IsAssignableFrom(c)) { |
| 480 | return JDWP::JT_CLASS_LOADER; |
| 481 | } |
| 482 | } |
| 483 | return JDWP::JT_OBJECT; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | /* |
| 487 | * Objects declared to hold Object might actually hold a more specific |
| 488 | * type. The debugger may take a special interest in these (e.g. it |
| 489 | * wants to display the contents of Strings), so we want to return an |
| 490 | * appropriate tag. |
| 491 | * |
| 492 | * Null objects are tagged JT_OBJECT. |
| 493 | */ |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 494 | JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 495 | return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass()); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | static bool IsPrimitiveTag(JDWP::JdwpTag tag) { |
| 499 | switch (tag) { |
| 500 | case JDWP::JT_BOOLEAN: |
| 501 | case JDWP::JT_BYTE: |
| 502 | case JDWP::JT_CHAR: |
| 503 | case JDWP::JT_FLOAT: |
| 504 | case JDWP::JT_DOUBLE: |
| 505 | case JDWP::JT_INT: |
| 506 | case JDWP::JT_LONG: |
| 507 | case JDWP::JT_SHORT: |
| 508 | case JDWP::JT_VOID: |
| 509 | return true; |
| 510 | default: |
| 511 | return false; |
| 512 | } |
| 513 | } |
| 514 | |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 515 | void Dbg::StartJdwp() { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 516 | if (!gJdwpAllowed || !IsJdwpConfigured()) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 517 | // No JDWP for you! |
| 518 | return; |
| 519 | } |
| 520 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 521 | CHECK(gRegistry == nullptr); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 522 | gRegistry = new ObjectRegistry; |
| 523 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 524 | // Init JDWP if the debugger is enabled. This may connect out to a |
| 525 | // debugger, passively listen for a debugger, or block waiting for a |
| 526 | // debugger. |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 527 | gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 528 | if (gJdwpState == nullptr) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 529 | // We probably failed because some other process has the port already, which means that |
| 530 | // if we don't abort the user is likely to think they're talking to us when they're actually |
| 531 | // talking to that other process. |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 532 | LOG(FATAL) << "Debugger thread failed to initialize"; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | // If a debugger has already attached, send the "welcome" message. |
| 536 | // This may cause us to suspend all threads. |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 537 | if (gJdwpState->IsActive()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 538 | ScopedObjectAccess soa(Thread::Current()); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 539 | gJdwpState->PostVMStart(); |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 540 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 543 | void Dbg::StopJdwp() { |
Sebastien Hertz | c6345ef | 2014-08-18 19:26:39 +0200 | [diff] [blame] | 544 | // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the |
| 545 | // destruction of gJdwpState). |
| 546 | if (gJdwpState != nullptr && gJdwpState->IsActive()) { |
| 547 | gJdwpState->PostVMDeath(); |
| 548 | } |
Sebastien Hertz | 0376e6b | 2014-02-06 18:12:59 +0100 | [diff] [blame] | 549 | // 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] | 550 | Dispose(); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 551 | delete gJdwpState; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 552 | gJdwpState = nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 553 | delete gRegistry; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 554 | gRegistry = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 555 | } |
| 556 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 557 | void Dbg::GcDidFinish() { |
| 558 | if (gDdmHpifWhen != HPIF_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 559 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 560 | VLOG(jdwp) << "Sending heap info to DDM"; |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 561 | DdmSendHeapInfo(gDdmHpifWhen); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 562 | } |
| 563 | if (gDdmHpsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 564 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 565 | VLOG(jdwp) << "Dumping heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 566 | DdmSendHeapSegments(false); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 567 | } |
| 568 | if (gDdmNhsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 569 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 570 | VLOG(jdwp) << "Dumping native heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 571 | DdmSendHeapSegments(true); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 572 | } |
| 573 | } |
| 574 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 575 | void Dbg::SetJdwpAllowed(bool allowed) { |
| 576 | gJdwpAllowed = allowed; |
| 577 | } |
| 578 | |
Leonard Mosescu | eb84221 | 2016-10-06 17:26:36 -0700 | [diff] [blame] | 579 | bool Dbg::IsJdwpAllowed() { |
| 580 | return gJdwpAllowed; |
| 581 | } |
| 582 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 583 | DebugInvokeReq* Dbg::GetInvokeReq() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 584 | return Thread::Current()->GetInvokeReq(); |
| 585 | } |
| 586 | |
| 587 | Thread* Dbg::GetDebugThread() { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 588 | return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | void Dbg::ClearWaitForEventThread() { |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 592 | gJdwpState->ReleaseJdwpTokenForEvent(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | void Dbg::Connected() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 596 | CHECK(!gDebuggerConnected); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 597 | VLOG(jdwp) << "JDWP has attached"; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 598 | gDebuggerConnected = true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 599 | gDisposed = false; |
| 600 | } |
| 601 | |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 602 | bool Dbg::RequiresDeoptimization() { |
| 603 | // We don't need deoptimization if everything runs with interpreter after |
| 604 | // enabling -Xint mode. |
| 605 | return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly(); |
| 606 | } |
| 607 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 608 | void Dbg::GoActive() { |
| 609 | // Enable all debugging features, including scans for breakpoints. |
| 610 | // This is a no-op if we're already active. |
| 611 | // Only called from the JDWP handler thread. |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 612 | if (IsDebuggerActive()) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 613 | return; |
| 614 | } |
| 615 | |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 616 | Thread* const self = Thread::Current(); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 617 | { |
| 618 | // 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] | 619 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 620 | CHECK_EQ(gBreakpoints.size(), 0U); |
| 621 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 622 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 623 | { |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 624 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 625 | CHECK_EQ(deoptimization_requests_.size(), 0U); |
| 626 | CHECK_EQ(full_deoptimization_event_count_, 0U); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 627 | CHECK_EQ(dex_pc_change_event_ref_count_, 0U); |
| 628 | CHECK_EQ(method_enter_event_ref_count_, 0U); |
| 629 | CHECK_EQ(method_exit_event_ref_count_, 0U); |
| 630 | CHECK_EQ(field_read_event_ref_count_, 0U); |
| 631 | CHECK_EQ(field_write_event_ref_count_, 0U); |
| 632 | CHECK_EQ(exception_catch_event_ref_count_, 0U); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 633 | } |
| 634 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 635 | Runtime* runtime = Runtime::Current(); |
Nicolas Geoffray | 433b79a | 2017-01-30 20:54:45 +0000 | [diff] [blame] | 636 | // Best effort deoptimization if the runtime is non-Java debuggable. This happens when |
| 637 | // ro.debuggable is set, but the application is not debuggable, or when a standalone |
| 638 | // dalvikvm invocation is not passed the debuggable option (-Xcompiler-option --debuggable). |
| 639 | // |
| 640 | // 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] | 641 | // 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] | 642 | if (!runtime->IsJavaDebuggable() && |
| 643 | !runtime->GetInstrumentation()->IsForcedInterpretOnly() && |
| 644 | !runtime->IsNativeDebuggable()) { |
| 645 | runtime->DeoptimizeBootImage(); |
Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 646 | } |
| 647 | |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 648 | ScopedSuspendAll ssa(__FUNCTION__); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 649 | if (RequiresDeoptimization()) { |
| 650 | runtime->GetInstrumentation()->EnableDeoptimization(); |
| 651 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 652 | instrumentation_events_ = 0; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 653 | gDebuggerActive = true; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 654 | LOG(INFO) << "Debugger is active"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | void Dbg::Disconnected() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 658 | CHECK(gDebuggerConnected); |
| 659 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 660 | LOG(INFO) << "Debugger is no longer active"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 661 | |
Hiroshi Yamauchi | 98810e3 | 2016-05-24 14:55:40 -0700 | [diff] [blame] | 662 | // 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] | 663 | // and clear the object registry. |
| 664 | Runtime* runtime = Runtime::Current(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 665 | Thread* self = Thread::Current(); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 666 | { |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 667 | // Required for DisableDeoptimization. |
| 668 | gc::ScopedGCCriticalSection gcs(self, |
| 669 | gc::kGcCauseInstrumentation, |
| 670 | gc::kCollectorTypeInstrumentation); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 671 | ScopedSuspendAll ssa(__FUNCTION__); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 672 | // Debugger may not be active at this point. |
| 673 | if (IsDebuggerActive()) { |
| 674 | { |
| 675 | // Since we're going to disable deoptimization, we clear the deoptimization requests queue. |
| 676 | // This prevents us from having any pending deoptimization request when the debugger attaches |
| 677 | // to us again while no event has been requested yet. |
Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 678 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 679 | deoptimization_requests_.clear(); |
| 680 | full_deoptimization_event_count_ = 0U; |
| 681 | } |
| 682 | if (instrumentation_events_ != 0) { |
| 683 | runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener, |
| 684 | instrumentation_events_); |
| 685 | instrumentation_events_ = 0; |
| 686 | } |
| 687 | if (RequiresDeoptimization()) { |
| 688 | runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey); |
| 689 | } |
| 690 | gDebuggerActive = false; |
Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 691 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 692 | } |
Sebastien Hertz | 55f6534 | 2015-01-13 22:48:34 +0100 | [diff] [blame] | 693 | |
| 694 | { |
| 695 | ScopedObjectAccess soa(self); |
| 696 | gRegistry->Clear(); |
| 697 | } |
| 698 | |
| 699 | gDebuggerConnected = false; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 700 | } |
| 701 | |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 702 | void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) { |
| 703 | CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown); |
| 704 | gJdwpOptions = jdwp_options; |
| 705 | gJdwpConfigured = true; |
| 706 | } |
| 707 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 708 | bool Dbg::IsJdwpConfigured() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 709 | return gJdwpConfigured; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | int64_t Dbg::LastDebuggerActivity() { |
Elliott Hughes | ca95152 | 2011-12-05 12:01:32 -0800 | [diff] [blame] | 713 | return gJdwpState->LastDebuggerActivity(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 714 | } |
| 715 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 716 | void Dbg::UndoDebuggerSuspensions() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 717 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 718 | } |
| 719 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 720 | std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 721 | JDWP::JdwpError error; |
| 722 | mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error); |
| 723 | if (o == nullptr) { |
| 724 | if (error == JDWP::ERR_NONE) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 725 | return "null"; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 726 | } else { |
| 727 | return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); |
| 728 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 729 | } |
| 730 | if (!o->IsClass()) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 731 | 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] | 732 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 733 | return GetClassName(o->AsClass()); |
| 734 | } |
| 735 | |
| 736 | std::string Dbg::GetClassName(mirror::Class* klass) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 737 | if (klass == nullptr) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 738 | return "null"; |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 739 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 740 | std::string temp; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 741 | return DescriptorToName(klass->GetDescriptor(&temp)); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 742 | } |
| 743 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 744 | JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 745 | JDWP::JdwpError status; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 746 | mirror::Class* c = DecodeClass(id, &status); |
| 747 | if (c == nullptr) { |
| 748 | *class_object_id = 0; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 749 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 750 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 751 | *class_object_id = gRegistry->Add(c); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 752 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 753 | } |
| 754 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 755 | JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 756 | JDWP::JdwpError status; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 757 | mirror::Class* c = DecodeClass(id, &status); |
| 758 | if (c == nullptr) { |
| 759 | *superclass_id = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 760 | return status; |
| 761 | } |
| 762 | if (c->IsInterface()) { |
| 763 | // http://code.google.com/p/android/issues/detail?id=20856 |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 764 | *superclass_id = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 765 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 766 | *superclass_id = gRegistry->Add(c->GetSuperClass()); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 767 | } |
| 768 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 769 | } |
| 770 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 771 | JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 772 | JDWP::JdwpError error; |
Andreas Gampe | 7929a48 | 2015-12-30 19:33:49 -0800 | [diff] [blame] | 773 | mirror::Class* c = DecodeClass(id, &error); |
| 774 | if (c == nullptr) { |
| 775 | return error; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 776 | } |
Andreas Gampe | 7929a48 | 2015-12-30 19:33:49 -0800 | [diff] [blame] | 777 | expandBufAddObjectId(pReply, gRegistry->Add(c->GetClassLoader())); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 778 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 779 | } |
| 780 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 781 | JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 782 | JDWP::JdwpError error; |
| 783 | mirror::Class* c = DecodeClass(id, &error); |
| 784 | if (c == nullptr) { |
| 785 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 786 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 787 | |
| 788 | uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask; |
| 789 | |
Yevgeny Rouban | de34eea | 2014-02-15 01:06:03 +0700 | [diff] [blame] | 790 | // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set, |
| 791 | // not interfaces. |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 792 | // 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] | 793 | if ((access_flags & kAccInterface) == 0) { |
| 794 | access_flags |= kAccSuper; |
| 795 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 796 | |
| 797 | expandBufAdd4BE(pReply, access_flags); |
| 798 | |
| 799 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 800 | } |
| 801 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 802 | JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { |
| 803 | JDWP::JdwpError error; |
| 804 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 805 | if (o == nullptr) { |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 806 | return JDWP::ERR_INVALID_OBJECT; |
| 807 | } |
| 808 | |
| 809 | // Ensure all threads are suspended while we read objects' lock words. |
| 810 | Thread* self = Thread::Current(); |
Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 811 | CHECK_EQ(self->GetState(), kRunnable); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 812 | |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 813 | MonitorInfo monitor_info; |
| 814 | { |
| 815 | ScopedThreadSuspension sts(self, kSuspended); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 816 | ScopedSuspendAll ssa(__FUNCTION__); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 817 | monitor_info = MonitorInfo(o); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 818 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 819 | if (monitor_info.owner_ != nullptr) { |
Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 820 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeerFromOtherThread())); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 821 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 822 | expandBufAddObjectId(reply, gRegistry->Add(nullptr)); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 823 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 824 | expandBufAdd4BE(reply, monitor_info.entry_count_); |
| 825 | expandBufAdd4BE(reply, monitor_info.waiters_.size()); |
| 826 | for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) { |
Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 827 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeerFromOtherThread())); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 828 | } |
| 829 | return JDWP::ERR_NONE; |
| 830 | } |
| 831 | |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 832 | JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 833 | std::vector<JDWP::ObjectId>* monitors, |
| 834 | std::vector<uint32_t>* stack_depths) { |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 835 | struct OwnedMonitorVisitor : public StackVisitor { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 836 | OwnedMonitorVisitor(Thread* thread, Context* context, |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 837 | std::vector<JDWP::ObjectId>* monitor_vector, |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 838 | std::vector<uint32_t>* stack_depth_vector) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 839 | REQUIRES_SHARED(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 840 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 841 | current_stack_depth(0), |
| 842 | monitors(monitor_vector), |
| 843 | stack_depths(stack_depth_vector) {} |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 844 | |
| 845 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 846 | // annotalysis. |
| 847 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 848 | if (!GetMethod()->IsRuntimeMethod()) { |
| 849 | Monitor::VisitLocks(this, AppendOwnedMonitors, this); |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 850 | ++current_stack_depth; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 851 | } |
| 852 | return true; |
| 853 | } |
| 854 | |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 855 | static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 856 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 857 | OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 858 | visitor->monitors->push_back(gRegistry->Add(owned_monitor)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 859 | visitor->stack_depths->push_back(visitor->current_stack_depth); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 860 | } |
| 861 | |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 862 | size_t current_stack_depth; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 863 | std::vector<JDWP::ObjectId>* const monitors; |
| 864 | std::vector<uint32_t>* const stack_depths; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 865 | }; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 866 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 867 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 868 | JDWP::JdwpError error; |
| 869 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 870 | if (thread == nullptr) { |
| 871 | return error; |
| 872 | } |
| 873 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 874 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 875 | } |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 876 | std::unique_ptr<Context> context(Context::Create()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 877 | OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 878 | visitor.WalkStack(); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 879 | return JDWP::ERR_NONE; |
| 880 | } |
| 881 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 882 | JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 883 | JDWP::ObjectId* contended_monitor) { |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 884 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 885 | *contended_monitor = 0; |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 886 | JDWP::JdwpError error; |
| 887 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 888 | if (thread == nullptr) { |
| 889 | return error; |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 890 | } |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 891 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 892 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 893 | } |
| 894 | mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 895 | // Add() requires the thread_list_lock_ not held to avoid the lock |
| 896 | // level violation. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 897 | *contended_monitor = gRegistry->Add(contended_monitor_obj); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 898 | return JDWP::ERR_NONE; |
| 899 | } |
| 900 | |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 901 | JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 902 | std::vector<uint64_t>* counts) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 903 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 904 | heap->CollectGarbage(false); |
Mathieu Chartier | e8a3c57 | 2016-10-11 16:52:17 -0700 | [diff] [blame] | 905 | VariableSizedHandleScope hs(Thread::Current()); |
Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 906 | std::vector<Handle<mirror::Class>> classes; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 907 | counts->clear(); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 908 | for (size_t i = 0; i < class_ids.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 909 | JDWP::JdwpError error; |
Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 910 | ObjPtr<mirror::Class> c = DecodeClass(class_ids[i], &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 911 | if (c == nullptr) { |
| 912 | return error; |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 913 | } |
Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 914 | classes.push_back(hs.NewHandle(c)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 915 | counts->push_back(0); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 916 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 917 | heap->CountInstances(classes, false, &(*counts)[0]); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 918 | return JDWP::ERR_NONE; |
| 919 | } |
| 920 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 921 | JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, |
| 922 | std::vector<JDWP::ObjectId>* instances) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 923 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 924 | // We only want reachable instances, so do a GC. |
| 925 | heap->CollectGarbage(false); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 926 | JDWP::JdwpError error; |
Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 927 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 928 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 929 | return error; |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 930 | } |
Mathieu Chartier | 2d85595 | 2016-10-12 19:37:59 -0700 | [diff] [blame] | 931 | VariableSizedHandleScope hs(Thread::Current()); |
| 932 | std::vector<Handle<mirror::Object>> raw_instances; |
| 933 | Runtime::Current()->GetHeap()->GetInstances(hs, hs.NewHandle(c), max_count, raw_instances); |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 934 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
Mathieu Chartier | 2d85595 | 2016-10-12 19:37:59 -0700 | [diff] [blame] | 935 | instances->push_back(gRegistry->Add(raw_instances[i].Get())); |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 936 | } |
| 937 | return JDWP::ERR_NONE; |
| 938 | } |
| 939 | |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 940 | JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 941 | std::vector<JDWP::ObjectId>* referring_objects) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 942 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 943 | heap->CollectGarbage(false); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 944 | JDWP::JdwpError error; |
Mathieu Chartier | 9d156d5 | 2016-10-06 17:44:26 -0700 | [diff] [blame] | 945 | ObjPtr<mirror::Object> o = gRegistry->Get<mirror::Object*>(object_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 946 | if (o == nullptr) { |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 947 | return JDWP::ERR_INVALID_OBJECT; |
| 948 | } |
Mathieu Chartier | aea9bfb | 2016-10-12 19:19:56 -0700 | [diff] [blame] | 949 | VariableSizedHandleScope hs(Thread::Current()); |
| 950 | std::vector<Handle<mirror::Object>> raw_instances; |
| 951 | heap->GetReferringObjects(hs, hs.NewHandle(o), max_count, raw_instances); |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 952 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
Mathieu Chartier | aea9bfb | 2016-10-12 19:19:56 -0700 | [diff] [blame] | 953 | referring_objects->push_back(gRegistry->Add(raw_instances[i].Get())); |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 954 | } |
| 955 | return JDWP::ERR_NONE; |
| 956 | } |
| 957 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 958 | JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { |
| 959 | JDWP::JdwpError error; |
| 960 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 961 | if (o == nullptr) { |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 962 | return JDWP::ERR_INVALID_OBJECT; |
| 963 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 964 | gRegistry->DisableCollection(object_id); |
| 965 | return JDWP::ERR_NONE; |
| 966 | } |
| 967 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 968 | JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { |
| 969 | JDWP::JdwpError error; |
| 970 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 971 | // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI |
| 972 | // also ignores these cases and never return an error. However it's not obvious why this command |
| 973 | // should behave differently from DisableCollection and IsCollected commands. So let's be more |
| 974 | // strict and return an error if this happens. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 975 | if (o == nullptr) { |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 976 | return JDWP::ERR_INVALID_OBJECT; |
| 977 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 978 | gRegistry->EnableCollection(object_id); |
| 979 | return JDWP::ERR_NONE; |
| 980 | } |
| 981 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 982 | JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) { |
| 983 | *is_collected = true; |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 984 | if (object_id == 0) { |
| 985 | // Null object id is invalid. |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 986 | return JDWP::ERR_INVALID_OBJECT; |
| 987 | } |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 988 | // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However |
| 989 | // the RI seems to ignore this and assume object has been collected. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 990 | JDWP::JdwpError error; |
| 991 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 992 | if (o != nullptr) { |
| 993 | *is_collected = gRegistry->IsCollected(object_id); |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 994 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 995 | return JDWP::ERR_NONE; |
| 996 | } |
| 997 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 998 | void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) { |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 999 | gRegistry->DisposeObject(object_id, reference_count); |
| 1000 | } |
| 1001 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1002 | JDWP::JdwpTypeTag Dbg::GetTypeTag(ObjPtr<mirror::Class> klass) { |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1003 | DCHECK(klass != nullptr); |
| 1004 | if (klass->IsArrayClass()) { |
| 1005 | return JDWP::TT_ARRAY; |
| 1006 | } else if (klass->IsInterface()) { |
| 1007 | return JDWP::TT_INTERFACE; |
| 1008 | } else { |
| 1009 | return JDWP::TT_CLASS; |
| 1010 | } |
| 1011 | } |
| 1012 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1013 | JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1014 | JDWP::JdwpError error; |
| 1015 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1016 | if (c == nullptr) { |
| 1017 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1018 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1019 | |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1020 | JDWP::JdwpTypeTag type_tag = GetTypeTag(c); |
| 1021 | expandBufAdd1(pReply, type_tag); |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1022 | expandBufAddRefTypeId(pReply, class_id); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1023 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1024 | } |
| 1025 | |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1026 | // Get the complete list of reference classes (i.e. all classes except |
| 1027 | // the primitive types). |
| 1028 | // Returns a newly-allocated buffer full of RefTypeId values. |
| 1029 | class ClassListCreator : public ClassVisitor { |
| 1030 | public: |
| 1031 | explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes_(classes) {} |
| 1032 | |
Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1033 | bool operator()(ObjPtr<mirror::Class> c) OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1034 | if (!c->IsPrimitive()) { |
| 1035 | classes_->push_back(Dbg::GetObjectRegistry()->AddRefType(c)); |
| 1036 | } |
| 1037 | return true; |
| 1038 | } |
| 1039 | |
| 1040 | private: |
| 1041 | std::vector<JDWP::RefTypeId>* const classes_; |
| 1042 | }; |
| 1043 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1044 | void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) { |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1045 | ClassListCreator clc(classes); |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 1046 | Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&clc); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1049 | JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, |
| 1050 | uint32_t* pStatus, std::string* pDescriptor) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1051 | JDWP::JdwpError error; |
| 1052 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1053 | if (c == nullptr) { |
| 1054 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1055 | } |
| 1056 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1057 | if (c->IsArrayClass()) { |
| 1058 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 1059 | *pTypeTag = JDWP::TT_ARRAY; |
| 1060 | } else { |
| 1061 | if (c->IsErroneous()) { |
| 1062 | *pStatus = JDWP::CS_ERROR; |
| 1063 | } else { |
| 1064 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED; |
| 1065 | } |
| 1066 | *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 1067 | } |
| 1068 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1069 | if (pDescriptor != nullptr) { |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1070 | std::string temp; |
| 1071 | *pDescriptor = c->GetDescriptor(&temp); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1072 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1073 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1074 | } |
| 1075 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1076 | void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) { |
Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1077 | std::vector<ObjPtr<mirror::Class>> classes; |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 1078 | Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1079 | ids->clear(); |
Mathieu Chartier | 28357fa | 2016-10-18 16:27:40 -0700 | [diff] [blame] | 1080 | for (ObjPtr<mirror::Class> c : classes) { |
| 1081 | ids->push_back(gRegistry->Add(c)); |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1082 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1083 | } |
| 1084 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1085 | JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { |
| 1086 | JDWP::JdwpError error; |
| 1087 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1088 | if (o == nullptr) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1089 | return JDWP::ERR_INVALID_OBJECT; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1090 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1091 | |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1092 | JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass()); |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1093 | JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1094 | |
| 1095 | expandBufAdd1(pReply, type_tag); |
| 1096 | expandBufAddRefTypeId(pReply, type_id); |
| 1097 | |
| 1098 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1099 | } |
| 1100 | |
Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 1101 | JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1102 | JDWP::JdwpError error; |
| 1103 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1104 | if (c == nullptr) { |
| 1105 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1106 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1107 | std::string temp; |
| 1108 | *signature = c->GetDescriptor(&temp); |
Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 1109 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1110 | } |
| 1111 | |
Orion Hodson | 77d8a1c | 2017-04-24 14:53:19 +0100 | [diff] [blame] | 1112 | JDWP::JdwpError Dbg::GetSourceDebugExtension(JDWP::RefTypeId class_id, |
| 1113 | std::string* extension_data) { |
| 1114 | JDWP::JdwpError error; |
| 1115 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1116 | if (c == nullptr) { |
| 1117 | return error; |
| 1118 | } |
| 1119 | StackHandleScope<1> hs(Thread::Current()); |
| 1120 | Handle<mirror::Class> klass(hs.NewHandle(c)); |
| 1121 | const char* data = annotations::GetSourceDebugExtension(klass); |
| 1122 | if (data == nullptr) { |
| 1123 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1124 | } |
| 1125 | *extension_data = data; |
| 1126 | return JDWP::ERR_NONE; |
| 1127 | } |
| 1128 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1129 | JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) { |
| 1130 | JDWP::JdwpError error; |
| 1131 | mirror::Class* c = DecodeClass(class_id, &error); |
Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1132 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1133 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1134 | } |
Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1135 | const char* source_file = c->GetSourceFile(); |
| 1136 | if (source_file == nullptr) { |
Sebastien Hertz | b7054ba | 2014-03-13 11:52:31 +0100 | [diff] [blame] | 1137 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1138 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1139 | *result = source_file; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1140 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1141 | } |
| 1142 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1143 | JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1144 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1145 | JDWP::JdwpError error; |
| 1146 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1147 | if (error != JDWP::ERR_NONE) { |
| 1148 | *tag = JDWP::JT_VOID; |
| 1149 | return error; |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1150 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1151 | *tag = TagFromObject(soa, o); |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1152 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1153 | } |
| 1154 | |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1155 | size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1156 | switch (tag) { |
| 1157 | case JDWP::JT_VOID: |
| 1158 | return 0; |
| 1159 | case JDWP::JT_BYTE: |
| 1160 | case JDWP::JT_BOOLEAN: |
| 1161 | return 1; |
| 1162 | case JDWP::JT_CHAR: |
| 1163 | case JDWP::JT_SHORT: |
| 1164 | return 2; |
| 1165 | case JDWP::JT_FLOAT: |
| 1166 | case JDWP::JT_INT: |
| 1167 | return 4; |
| 1168 | case JDWP::JT_ARRAY: |
| 1169 | case JDWP::JT_OBJECT: |
| 1170 | case JDWP::JT_STRING: |
| 1171 | case JDWP::JT_THREAD: |
| 1172 | case JDWP::JT_THREAD_GROUP: |
| 1173 | case JDWP::JT_CLASS_LOADER: |
| 1174 | case JDWP::JT_CLASS_OBJECT: |
| 1175 | return sizeof(JDWP::ObjectId); |
| 1176 | case JDWP::JT_DOUBLE: |
| 1177 | case JDWP::JT_LONG: |
| 1178 | return 8; |
| 1179 | default: |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1180 | LOG(FATAL) << "Unknown tag " << tag; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1181 | return -1; |
| 1182 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1183 | } |
| 1184 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1185 | JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { |
| 1186 | JDWP::JdwpError error; |
| 1187 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
| 1188 | if (a == nullptr) { |
| 1189 | return error; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1190 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1191 | *length = a->GetLength(); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1192 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1193 | } |
| 1194 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1195 | 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] | 1196 | JDWP::JdwpError error; |
| 1197 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1198 | if (a == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1199 | return error; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1200 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1201 | |
| 1202 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 1203 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1204 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1205 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1206 | JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType()); |
| 1207 | expandBufAdd1(pReply, element_tag); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1208 | expandBufAdd4BE(pReply, count); |
| 1209 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1210 | if (IsPrimitiveTag(element_tag)) { |
| 1211 | size_t width = GetTagWidth(element_tag); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1212 | uint8_t* dst = expandBufAddSpace(pReply, count * width); |
| 1213 | if (width == 8) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1214 | 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] | 1215 | for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]); |
| 1216 | } else if (width == 4) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1217 | 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] | 1218 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]); |
| 1219 | } else if (width == 2) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1220 | 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] | 1221 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]); |
| 1222 | } else { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1223 | 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] | 1224 | memcpy(dst, &src[offset * width], count * width); |
| 1225 | } |
| 1226 | } else { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1227 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1228 | mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>(); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1229 | for (int i = 0; i < count; ++i) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1230 | mirror::Object* element = oa->Get(offset + i); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1231 | JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element) |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1232 | : element_tag; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1233 | expandBufAdd1(pReply, specific_tag); |
| 1234 | expandBufAddObjectId(pReply, gRegistry->Add(element)); |
| 1235 | } |
| 1236 | } |
| 1237 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1238 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1239 | } |
| 1240 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1241 | template <typename T> |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1242 | 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] | 1243 | NO_THREAD_SAFETY_ANALYSIS { |
| 1244 | // TODO: fix when annotalysis correctly handles non-member functions. |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1245 | DCHECK(a->GetClass()->IsPrimitiveArray()); |
| 1246 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1247 | T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1248 | for (int i = 0; i < count; ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1249 | *dst++ = src->ReadValue(sizeof(T)); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1250 | } |
| 1251 | } |
| 1252 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1253 | JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1254 | JDWP::Request* request) { |
| 1255 | JDWP::JdwpError error; |
| 1256 | mirror::Array* dst = DecodeNonNullArray(array_id, &error); |
| 1257 | if (dst == nullptr) { |
| 1258 | return error; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1259 | } |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1260 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1261 | if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) { |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1262 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1263 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1264 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1265 | JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType()); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1266 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1267 | if (IsPrimitiveTag(element_tag)) { |
| 1268 | size_t width = GetTagWidth(element_tag); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1269 | if (width == 8) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1270 | CopyArrayData<uint64_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1271 | } else if (width == 4) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1272 | CopyArrayData<uint32_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1273 | } else if (width == 2) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1274 | CopyArrayData<uint16_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1275 | } else { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1276 | CopyArrayData<uint8_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1277 | } |
| 1278 | } else { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1279 | mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>(); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1280 | for (int i = 0; i < count; ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1281 | JDWP::ObjectId id = request->ReadObjectId(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1282 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 1283 | if (error != JDWP::ERR_NONE) { |
| 1284 | return error; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1285 | } |
Sebastien Hertz | 2e1c16d | 2015-08-28 11:57:49 +0200 | [diff] [blame] | 1286 | // Check if the object's type is compatible with the array's type. |
| 1287 | if (o != nullptr && !o->InstanceOf(oa->GetClass()->GetComponentType())) { |
| 1288 | return JDWP::ERR_TYPE_MISMATCH; |
| 1289 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1290 | oa->Set<false>(offset + i, o); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1291 | } |
| 1292 | } |
| 1293 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1294 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1295 | } |
| 1296 | |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1297 | JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) { |
| 1298 | Thread* self = Thread::Current(); |
| 1299 | mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str()); |
| 1300 | if (new_string == nullptr) { |
| 1301 | DCHECK(self->IsExceptionPending()); |
| 1302 | self->ClearException(); |
| 1303 | LOG(ERROR) << "Could not allocate string"; |
| 1304 | *new_string_id = 0; |
| 1305 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1306 | } |
| 1307 | *new_string_id = gRegistry->Add(new_string); |
| 1308 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1309 | } |
| 1310 | |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1311 | 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] | 1312 | JDWP::JdwpError error; |
| 1313 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1314 | if (c == nullptr) { |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1315 | *new_object_id = 0; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1316 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1317 | } |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1318 | Thread* self = Thread::Current(); |
Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 1319 | ObjPtr<mirror::Object> new_object; |
Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1320 | if (c->IsStringClass()) { |
| 1321 | // Special case for java.lang.String. |
| 1322 | gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); |
jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 1323 | new_object = mirror::String::AllocEmptyString<true>(self, allocator_type); |
Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1324 | } else { |
| 1325 | new_object = c->AllocObject(self); |
| 1326 | } |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1327 | if (new_object == nullptr) { |
| 1328 | DCHECK(self->IsExceptionPending()); |
| 1329 | self->ClearException(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1330 | LOG(ERROR) << "Could not allocate object of type " << mirror::Class::PrettyDescriptor(c); |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1331 | *new_object_id = 0; |
| 1332 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1333 | } |
Mathieu Chartier | 28bd2e4 | 2016-10-04 13:54:57 -0700 | [diff] [blame] | 1334 | *new_object_id = gRegistry->Add(new_object.Ptr()); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1335 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1336 | } |
| 1337 | |
Elliott Hughes | bf13d36 | 2011-12-08 15:51:37 -0800 | [diff] [blame] | 1338 | /* |
| 1339 | * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]". |
| 1340 | */ |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1341 | JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length, |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1342 | JDWP::ObjectId* new_array_id) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1343 | JDWP::JdwpError error; |
| 1344 | mirror::Class* c = DecodeClass(array_class_id, &error); |
| 1345 | if (c == nullptr) { |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1346 | *new_array_id = 0; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1347 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1348 | } |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1349 | Thread* self = Thread::Current(); |
| 1350 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1351 | mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length, |
| 1352 | c->GetComponentSizeShift(), |
| 1353 | heap->GetCurrentAllocator()); |
| 1354 | if (new_array == nullptr) { |
| 1355 | DCHECK(self->IsExceptionPending()); |
| 1356 | self->ClearException(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1357 | LOG(ERROR) << "Could not allocate array of type " << mirror::Class::PrettyDescriptor(c); |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1358 | *new_array_id = 0; |
| 1359 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1360 | } |
| 1361 | *new_array_id = gRegistry->Add(new_array); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1362 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1363 | } |
| 1364 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1365 | JDWP::FieldId Dbg::ToFieldId(const ArtField* f) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1366 | return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1367 | } |
| 1368 | |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 1369 | static JDWP::MethodId ToMethodId(ArtMethod* m) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1370 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 1371 | return static_cast<JDWP::MethodId>( |
| 1372 | reinterpret_cast<uintptr_t>(m->GetCanonicalMethod(kRuntimePointerSize))); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1373 | } |
| 1374 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1375 | static ArtField* FromFieldId(JDWP::FieldId fid) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1376 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1377 | return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid)); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1378 | } |
| 1379 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1380 | static ArtMethod* FromMethodId(JDWP::MethodId mid) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1381 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1382 | return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(mid)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1383 | } |
| 1384 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1385 | bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) { |
| 1386 | CHECK(event_thread != nullptr); |
| 1387 | JDWP::JdwpError error; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1388 | mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>( |
| 1389 | expected_thread_id, &error); |
Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 1390 | return expected_thread_peer == event_thread->GetPeerFromOtherThread(); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1391 | } |
| 1392 | |
| 1393 | bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location, |
| 1394 | const JDWP::EventLocation& event_location) { |
| 1395 | if (expected_location.dex_pc != event_location.dex_pc) { |
| 1396 | return false; |
| 1397 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1398 | ArtMethod* m = FromMethodId(expected_location.method_id); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1399 | return m == event_location.method; |
| 1400 | } |
| 1401 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1402 | bool Dbg::MatchType(ObjPtr<mirror::Class> event_class, JDWP::RefTypeId class_id) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1403 | if (event_class == nullptr) { |
| 1404 | return false; |
| 1405 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1406 | JDWP::JdwpError error; |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1407 | ObjPtr<mirror::Class> expected_class = DecodeClass(class_id, &error); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1408 | CHECK(expected_class != nullptr); |
| 1409 | return expected_class->IsAssignableFrom(event_class); |
| 1410 | } |
| 1411 | |
| 1412 | 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] | 1413 | ArtField* event_field) { |
| 1414 | ArtField* expected_field = FromFieldId(expected_field_id); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1415 | if (expected_field != event_field) { |
| 1416 | return false; |
| 1417 | } |
| 1418 | return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id); |
| 1419 | } |
| 1420 | |
| 1421 | bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) { |
| 1422 | JDWP::JdwpError error; |
| 1423 | mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error); |
| 1424 | return modifier_instance == event_instance; |
| 1425 | } |
| 1426 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1427 | void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1428 | if (m == nullptr) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1429 | memset(location, 0, sizeof(*location)); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1430 | } else { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1431 | mirror::Class* c = m->GetDeclaringClass(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1432 | location->type_tag = GetTypeTag(c); |
| 1433 | location->class_id = gRegistry->AddRefType(c); |
Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 1434 | // The RI Seems to return 0 for all obsolete methods. For compatibility we shall do the same. |
| 1435 | location->method_id = m->IsObsolete() ? 0 : ToMethodId(m); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1436 | 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] | 1437 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1438 | } |
| 1439 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1440 | std::string Dbg::GetMethodName(JDWP::MethodId method_id) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1441 | ArtMethod* m = FromMethodId(method_id); |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1442 | if (m == nullptr) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1443 | return "null"; |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1444 | } |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1445 | return m->GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1446 | } |
| 1447 | |
Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 1448 | bool Dbg::IsMethodObsolete(JDWP::MethodId method_id) { |
| 1449 | ArtMethod* m = FromMethodId(method_id); |
| 1450 | if (m == nullptr) { |
| 1451 | // NB Since we return 0 as MID for obsolete methods we want to default to true here. |
| 1452 | return true; |
| 1453 | } |
| 1454 | return m->IsObsolete(); |
| 1455 | } |
| 1456 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1457 | std::string Dbg::GetFieldName(JDWP::FieldId field_id) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1458 | ArtField* f = FromFieldId(field_id); |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1459 | if (f == nullptr) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1460 | return "null"; |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1461 | } |
| 1462 | return f->GetName(); |
Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 1463 | } |
| 1464 | |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1465 | /* |
| 1466 | * Augment the access flags for synthetic methods and fields by setting |
| 1467 | * the (as described by the spec) "0xf0000000 bit". Also, strip out any |
| 1468 | * flags not specified by the Java programming language. |
| 1469 | */ |
| 1470 | static uint32_t MangleAccessFlags(uint32_t accessFlags) { |
| 1471 | accessFlags &= kAccJavaFlagsMask; |
| 1472 | if ((accessFlags & kAccSynthetic) != 0) { |
| 1473 | accessFlags |= 0xf0000000; |
| 1474 | } |
| 1475 | return accessFlags; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1476 | } |
| 1477 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1478 | /* |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1479 | * Circularly shifts registers so that arguments come first. Debuggers |
| 1480 | * expect slots to begin with arguments, but dex code places them at |
| 1481 | * the end. |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1482 | */ |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1483 | static uint16_t MangleSlot(uint16_t slot, ArtMethod* m) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1484 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1485 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1486 | if (code_item == nullptr) { |
| 1487 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1488 | // return the slot as is since all registers are arguments. |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1489 | LOG(WARNING) << "Trying to mangle slot for method without code " << m->PrettyMethod(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1490 | return slot; |
| 1491 | } |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1492 | uint16_t ins_size = code_item->ins_size_; |
| 1493 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1494 | if (slot >= locals_size) { |
| 1495 | return slot - locals_size; |
| 1496 | } else { |
| 1497 | return slot + ins_size; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1498 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1499 | } |
| 1500 | |
Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1501 | static size_t GetMethodNumArgRegistersIncludingThis(ArtMethod* method) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1502 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1503 | uint32_t num_registers = ArtMethod::NumArgRegisters(method->GetShorty()); |
| 1504 | if (!method->IsStatic()) { |
| 1505 | ++num_registers; |
| 1506 | } |
| 1507 | return num_registers; |
| 1508 | } |
| 1509 | |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1510 | /* |
| 1511 | * Circularly shifts registers so that arguments come last. Reverts |
| 1512 | * slots to dex style argument placement. |
| 1513 | */ |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1514 | static uint16_t DemangleSlot(uint16_t slot, ArtMethod* m, JDWP::JdwpError* error) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1515 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1516 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1517 | if (code_item == nullptr) { |
| 1518 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1519 | // return the slot as is since all registers are arguments. |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1520 | LOG(WARNING) << "Trying to demangle slot for method without code " |
| 1521 | << m->PrettyMethod(); |
Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1522 | uint16_t vreg_count = GetMethodNumArgRegistersIncludingThis(m); |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1523 | if (slot < vreg_count) { |
| 1524 | *error = JDWP::ERR_NONE; |
| 1525 | return slot; |
| 1526 | } |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1527 | } else { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1528 | if (slot < code_item->registers_size_) { |
| 1529 | uint16_t ins_size = code_item->ins_size_; |
| 1530 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1531 | *error = JDWP::ERR_NONE; |
| 1532 | return (slot < ins_size) ? slot + locals_size : slot - ins_size; |
| 1533 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1534 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1535 | |
| 1536 | // Slot is invalid in the method. |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1537 | LOG(ERROR) << "Invalid local slot " << slot << " for method " << m->PrettyMethod(); |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1538 | *error = JDWP::ERR_INVALID_SLOT; |
| 1539 | return DexFile::kDexNoIndex16; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1540 | } |
| 1541 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1542 | JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, |
| 1543 | JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1544 | JDWP::JdwpError error; |
| 1545 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1546 | if (c == nullptr) { |
| 1547 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1548 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1549 | |
| 1550 | size_t instance_field_count = c->NumInstanceFields(); |
| 1551 | size_t static_field_count = c->NumStaticFields(); |
| 1552 | |
| 1553 | expandBufAdd4BE(pReply, instance_field_count + static_field_count); |
| 1554 | |
| 1555 | 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] | 1556 | ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : |
| 1557 | c->GetStaticField(i - instance_field_count); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1558 | expandBufAddFieldId(pReply, ToFieldId(f)); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1559 | expandBufAddUtf8String(pReply, f->GetName()); |
| 1560 | expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1561 | if (with_generic) { |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1562 | static const char genericSignature[1] = ""; |
| 1563 | expandBufAddUtf8String(pReply, genericSignature); |
| 1564 | } |
| 1565 | expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); |
| 1566 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1567 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1568 | } |
| 1569 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1570 | JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1571 | JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1572 | JDWP::JdwpError error; |
| 1573 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1574 | if (c == nullptr) { |
| 1575 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1576 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1577 | |
Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1578 | expandBufAdd4BE(pReply, c->NumMethods()); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1579 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1580 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 1581 | auto ptr_size = cl->GetImagePointerSize(); |
Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1582 | for (ArtMethod& m : c->GetMethods(ptr_size)) { |
| 1583 | expandBufAddMethodId(pReply, ToMethodId(&m)); |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 1584 | expandBufAddUtf8String(pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetName()); |
| 1585 | expandBufAddUtf8String( |
| 1586 | pReply, m.GetInterfaceMethodIfProxy(kRuntimePointerSize)->GetSignature().ToString()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1587 | if (with_generic) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1588 | const char* generic_signature = ""; |
| 1589 | expandBufAddUtf8String(pReply, generic_signature); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1590 | } |
Alex Light | 51a64d5 | 2015-12-17 13:55:59 -0800 | [diff] [blame] | 1591 | expandBufAdd4BE(pReply, MangleAccessFlags(m.GetAccessFlags())); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1592 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1593 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1594 | } |
| 1595 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1596 | JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1597 | JDWP::JdwpError error; |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1598 | Thread* self = Thread::Current(); |
Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1599 | ObjPtr<mirror::Class> c = DecodeClass(class_id, &error); |
| 1600 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1601 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1602 | } |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1603 | size_t interface_count = c->NumDirectInterfaces(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1604 | expandBufAdd4BE(pReply, interface_count); |
| 1605 | for (size_t i = 0; i < interface_count; ++i) { |
Vladimir Marko | 19a4d37 | 2016-12-08 14:41:46 +0000 | [diff] [blame] | 1606 | ObjPtr<mirror::Class> interface = mirror::Class::GetDirectInterface(self, c, i); |
| 1607 | DCHECK(interface != nullptr); |
| 1608 | expandBufAddRefTypeId(pReply, gRegistry->AddRefType(interface)); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1609 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1610 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1611 | } |
| 1612 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1613 | void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1614 | struct DebugCallbackContext { |
| 1615 | int numItems; |
| 1616 | JDWP::ExpandBuf* pReply; |
| 1617 | |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1618 | static bool Callback(void* context, const DexFile::PositionInfo& entry) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1619 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1620 | expandBufAdd8BE(pContext->pReply, entry.address_); |
| 1621 | expandBufAdd4BE(pContext->pReply, entry.line_); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1622 | pContext->numItems++; |
Sebastien Hertz | f2910ee | 2013-10-19 16:39:24 +0200 | [diff] [blame] | 1623 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1624 | } |
| 1625 | }; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1626 | ArtMethod* m = FromMethodId(method_id); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1627 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1628 | uint64_t start, end; |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1629 | if (code_item == nullptr) { |
| 1630 | DCHECK(m->IsNative() || m->IsProxyMethod()); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1631 | start = -1; |
| 1632 | end = -1; |
| 1633 | } else { |
| 1634 | start = 0; |
jeffhao | 14f0db9 | 2012-12-14 17:50:42 -0800 | [diff] [blame] | 1635 | // Return the index of the last instruction |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1636 | end = code_item->insns_size_in_code_units_ - 1; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1637 | } |
| 1638 | |
| 1639 | expandBufAdd8BE(pReply, start); |
| 1640 | expandBufAdd8BE(pReply, end); |
| 1641 | |
| 1642 | // Add numLines later |
| 1643 | size_t numLinesOffset = expandBufGetLength(pReply); |
| 1644 | expandBufAdd4BE(pReply, 0); |
| 1645 | |
| 1646 | DebugCallbackContext context; |
| 1647 | context.numItems = 0; |
| 1648 | context.pReply = pReply; |
| 1649 | |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1650 | if (code_item != nullptr) { |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1651 | m->GetDexFile()->DecodeDebugPositionInfo(code_item, DebugCallbackContext::Callback, &context); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1652 | } |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1653 | |
| 1654 | JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1655 | } |
| 1656 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1657 | void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, |
| 1658 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1659 | struct DebugCallbackContext { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1660 | ArtMethod* method; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1661 | JDWP::ExpandBuf* pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1662 | size_t variable_count; |
| 1663 | bool with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1664 | |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1665 | static void Callback(void* context, const DexFile::LocalInfo& entry) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1666 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1667 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1668 | |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1669 | uint16_t slot = entry.reg_; |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1670 | 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] | 1671 | pContext->variable_count, entry.start_address_, |
| 1672 | entry.end_address_ - entry.start_address_, |
| 1673 | entry.name_, entry.descriptor_, entry.signature_, slot, |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1674 | MangleSlot(slot, pContext->method)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1675 | |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1676 | slot = MangleSlot(slot, pContext->method); |
Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1677 | |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1678 | expandBufAdd8BE(pContext->pReply, entry.start_address_); |
| 1679 | expandBufAddUtf8String(pContext->pReply, entry.name_); |
| 1680 | expandBufAddUtf8String(pContext->pReply, entry.descriptor_); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1681 | if (pContext->with_generic) { |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1682 | expandBufAddUtf8String(pContext->pReply, entry.signature_); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1683 | } |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1684 | expandBufAdd4BE(pContext->pReply, entry.end_address_- entry.start_address_); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1685 | expandBufAdd4BE(pContext->pReply, slot); |
| 1686 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1687 | ++pContext->variable_count; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1688 | } |
| 1689 | }; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1690 | ArtMethod* m = FromMethodId(method_id); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1691 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1692 | // arg_count considers doubles and longs to take 2 units. |
| 1693 | // variable_count considers everything to take 1 unit. |
Sebastien Hertz | aef0c91 | 2016-08-08 10:20:28 +0200 | [diff] [blame] | 1694 | expandBufAdd4BE(pReply, GetMethodNumArgRegistersIncludingThis(m)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1695 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1696 | // We don't know the total number of variables yet, so leave a blank and update it later. |
| 1697 | size_t variable_count_offset = expandBufGetLength(pReply); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1698 | expandBufAdd4BE(pReply, 0); |
| 1699 | |
| 1700 | DebugCallbackContext context; |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1701 | context.method = m; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1702 | context.pReply = pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1703 | context.variable_count = 0; |
| 1704 | context.with_generic = with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1705 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1706 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1707 | if (code_item != nullptr) { |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 1708 | m->GetDexFile()->DecodeDebugLocalInfo( |
| 1709 | code_item, m->IsStatic(), m->GetDexMethodIndex(), DebugCallbackContext::Callback, |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1710 | &context); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1711 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1712 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1713 | JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1714 | } |
| 1715 | |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1716 | void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, |
| 1717 | JDWP::ExpandBuf* pReply) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1718 | ArtMethod* m = FromMethodId(method_id); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1719 | JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1720 | OutputJValue(tag, return_value, pReply); |
| 1721 | } |
| 1722 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1723 | void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, |
| 1724 | JDWP::ExpandBuf* pReply) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1725 | ArtField* f = FromFieldId(field_id); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1726 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1727 | OutputJValue(tag, field_value, pReply); |
| 1728 | } |
| 1729 | |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1730 | JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1731 | std::vector<uint8_t>* bytecodes) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1732 | ArtMethod* m = FromMethodId(method_id); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1733 | if (m == nullptr) { |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1734 | return JDWP::ERR_INVALID_METHODID; |
| 1735 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1736 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1737 | size_t byte_count = code_item->insns_size_in_code_units_ * 2; |
| 1738 | const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_); |
| 1739 | const uint8_t* end = begin + byte_count; |
| 1740 | for (const uint8_t* p = begin; p != end; ++p) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1741 | bytecodes->push_back(*p); |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1742 | } |
| 1743 | return JDWP::ERR_NONE; |
| 1744 | } |
| 1745 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1746 | JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1747 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1748 | } |
| 1749 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1750 | JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1751 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1752 | } |
| 1753 | |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1754 | static JValue GetArtFieldValue(ArtField* f, mirror::Object* o) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1755 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1756 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1757 | JValue field_value; |
| 1758 | switch (fieldType) { |
| 1759 | case Primitive::kPrimBoolean: |
| 1760 | field_value.SetZ(f->GetBoolean(o)); |
| 1761 | return field_value; |
| 1762 | |
| 1763 | case Primitive::kPrimByte: |
| 1764 | field_value.SetB(f->GetByte(o)); |
| 1765 | return field_value; |
| 1766 | |
| 1767 | case Primitive::kPrimChar: |
| 1768 | field_value.SetC(f->GetChar(o)); |
| 1769 | return field_value; |
| 1770 | |
| 1771 | case Primitive::kPrimShort: |
| 1772 | field_value.SetS(f->GetShort(o)); |
| 1773 | return field_value; |
| 1774 | |
| 1775 | case Primitive::kPrimInt: |
| 1776 | case Primitive::kPrimFloat: |
| 1777 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1778 | field_value.SetI(f->GetInt(o)); |
| 1779 | return field_value; |
| 1780 | |
| 1781 | case Primitive::kPrimLong: |
| 1782 | case Primitive::kPrimDouble: |
| 1783 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1784 | field_value.SetJ(f->GetLong(o)); |
| 1785 | return field_value; |
| 1786 | |
| 1787 | case Primitive::kPrimNot: |
Mathieu Chartier | 1cc62e4 | 2016-10-03 18:01:28 -0700 | [diff] [blame] | 1788 | field_value.SetL(f->GetObject(o).Ptr()); |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1789 | return field_value; |
| 1790 | |
| 1791 | case Primitive::kPrimVoid: |
| 1792 | LOG(FATAL) << "Attempt to read from field of type 'void'"; |
| 1793 | UNREACHABLE(); |
| 1794 | } |
| 1795 | LOG(FATAL) << "Attempt to read from field of unknown type"; |
| 1796 | UNREACHABLE(); |
| 1797 | } |
| 1798 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1799 | static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id, |
| 1800 | JDWP::FieldId field_id, JDWP::ExpandBuf* pReply, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1801 | bool is_static) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1802 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1803 | JDWP::JdwpError error; |
| 1804 | mirror::Class* c = DecodeClass(ref_type_id, &error); |
| 1805 | if (ref_type_id != 0 && c == nullptr) { |
| 1806 | return error; |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1807 | } |
| 1808 | |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1809 | Thread* self = Thread::Current(); |
| 1810 | StackHandleScope<2> hs(self); |
| 1811 | MutableHandle<mirror::Object> |
| 1812 | o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error))); |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1813 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1814 | return JDWP::ERR_INVALID_OBJECT; |
| 1815 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1816 | ArtField* f = FromFieldId(field_id); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1817 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1818 | mirror::Class* receiver_class = c; |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1819 | if (receiver_class == nullptr && o != nullptr) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1820 | receiver_class = o->GetClass(); |
| 1821 | } |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1822 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1823 | // TODO: should we give up now if receiver_class is null? |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1824 | if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1825 | LOG(INFO) << "ERR_INVALID_FIELDID: " << f->PrettyField() << " " |
| 1826 | << receiver_class->PrettyClass(); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1827 | return JDWP::ERR_INVALID_FIELDID; |
| 1828 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1829 | |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1830 | // Ensure the field's class is initialized. |
| 1831 | Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass())); |
| 1832 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1833 | LOG(WARNING) << "Not able to initialize class for SetValues: " |
| 1834 | << mirror::Class::PrettyClass(klass.Get()); |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1835 | } |
| 1836 | |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1837 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1838 | // TODO: should we change the tests and check both? |
| 1839 | if (is_static) { |
| 1840 | if (!f->IsStatic()) { |
| 1841 | return JDWP::ERR_INVALID_FIELDID; |
| 1842 | } |
| 1843 | } else { |
| 1844 | if (f->IsStatic()) { |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1845 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.GetValues" |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1846 | << " on static field " << f->PrettyField(); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1847 | } |
| 1848 | } |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1849 | if (f->IsStatic()) { |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1850 | o.Assign(f->GetDeclaringClass()); |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1851 | } |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1852 | |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1853 | JValue field_value(GetArtFieldValue(f, o.Get())); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1854 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1855 | Dbg::OutputJValue(tag, &field_value, pReply); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1856 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1857 | } |
| 1858 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1859 | JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1860 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1861 | return GetFieldValueImpl(0, object_id, field_id, pReply, false); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1862 | } |
| 1863 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1864 | JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, |
| 1865 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1866 | return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1867 | } |
| 1868 | |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1869 | 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] | 1870 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1871 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1872 | // Debugging only happens at runtime so we know we are not running in a transaction. |
| 1873 | static constexpr bool kNoTransactionMode = false; |
| 1874 | switch (fieldType) { |
| 1875 | case Primitive::kPrimBoolean: |
| 1876 | CHECK_EQ(width, 1); |
| 1877 | f->SetBoolean<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1878 | return JDWP::ERR_NONE; |
| 1879 | |
| 1880 | case Primitive::kPrimByte: |
| 1881 | CHECK_EQ(width, 1); |
| 1882 | f->SetByte<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1883 | return JDWP::ERR_NONE; |
| 1884 | |
| 1885 | case Primitive::kPrimChar: |
| 1886 | CHECK_EQ(width, 2); |
| 1887 | f->SetChar<kNoTransactionMode>(o, static_cast<uint16_t>(value)); |
| 1888 | return JDWP::ERR_NONE; |
| 1889 | |
| 1890 | case Primitive::kPrimShort: |
| 1891 | CHECK_EQ(width, 2); |
| 1892 | f->SetShort<kNoTransactionMode>(o, static_cast<int16_t>(value)); |
| 1893 | return JDWP::ERR_NONE; |
| 1894 | |
| 1895 | case Primitive::kPrimInt: |
| 1896 | case Primitive::kPrimFloat: |
| 1897 | CHECK_EQ(width, 4); |
| 1898 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1899 | f->SetInt<kNoTransactionMode>(o, static_cast<int32_t>(value)); |
| 1900 | return JDWP::ERR_NONE; |
| 1901 | |
| 1902 | case Primitive::kPrimLong: |
| 1903 | case Primitive::kPrimDouble: |
| 1904 | CHECK_EQ(width, 8); |
| 1905 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1906 | f->SetLong<kNoTransactionMode>(o, value); |
| 1907 | return JDWP::ERR_NONE; |
| 1908 | |
| 1909 | case Primitive::kPrimNot: { |
| 1910 | JDWP::JdwpError error; |
| 1911 | mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error); |
| 1912 | if (error != JDWP::ERR_NONE) { |
| 1913 | return JDWP::ERR_INVALID_OBJECT; |
| 1914 | } |
| 1915 | if (v != nullptr) { |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 1916 | ObjPtr<mirror::Class> field_type; |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1917 | { |
| 1918 | StackHandleScope<2> hs(Thread::Current()); |
| 1919 | HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v)); |
| 1920 | HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o)); |
| 1921 | field_type = f->GetType<true>(); |
| 1922 | } |
| 1923 | if (!field_type->IsAssignableFrom(v->GetClass())) { |
| 1924 | return JDWP::ERR_INVALID_OBJECT; |
| 1925 | } |
| 1926 | } |
| 1927 | f->SetObject<kNoTransactionMode>(o, v); |
| 1928 | return JDWP::ERR_NONE; |
| 1929 | } |
| 1930 | |
| 1931 | case Primitive::kPrimVoid: |
| 1932 | LOG(FATAL) << "Attempt to write to field of type 'void'"; |
| 1933 | UNREACHABLE(); |
| 1934 | } |
| 1935 | LOG(FATAL) << "Attempt to write to field of unknown type"; |
| 1936 | UNREACHABLE(); |
| 1937 | } |
| 1938 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1939 | static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1940 | uint64_t value, int width, bool is_static) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 1941 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1942 | JDWP::JdwpError error; |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1943 | Thread* self = Thread::Current(); |
| 1944 | StackHandleScope<2> hs(self); |
| 1945 | MutableHandle<mirror::Object> |
| 1946 | o(hs.NewHandle(Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error))); |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 1947 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1948 | return JDWP::ERR_INVALID_OBJECT; |
| 1949 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1950 | ArtField* f = FromFieldId(field_id); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1951 | |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1952 | // Ensure the field's class is initialized. |
| 1953 | Handle<mirror::Class> klass(hs.NewHandle(f->GetDeclaringClass())); |
| 1954 | if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, klass, true, false)) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1955 | LOG(WARNING) << "Not able to initialize class for SetValues: " |
| 1956 | << mirror::Class::PrettyClass(klass.Get()); |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1957 | } |
| 1958 | |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1959 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1960 | // TODO: should we change the tests and check both? |
| 1961 | if (is_static) { |
| 1962 | if (!f->IsStatic()) { |
| 1963 | return JDWP::ERR_INVALID_FIELDID; |
| 1964 | } |
| 1965 | } else { |
| 1966 | if (f->IsStatic()) { |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1967 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues" |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1968 | << " on static field " << f->PrettyField(); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1969 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1970 | } |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1971 | if (f->IsStatic()) { |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1972 | o.Assign(f->GetDeclaringClass()); |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1973 | } |
Jeff Hao | de19a25 | 2016-09-14 15:56:35 -0700 | [diff] [blame] | 1974 | return SetArtFieldValue(f, o.Get(), value, width); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1975 | } |
| 1976 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1977 | 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] | 1978 | int width) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1979 | return SetFieldValueImpl(object_id, field_id, value, width, false); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1980 | } |
| 1981 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1982 | JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { |
| 1983 | return SetFieldValueImpl(0, field_id, value, width, true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1984 | } |
| 1985 | |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1986 | JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1987 | JDWP::JdwpError error; |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1988 | mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error); |
| 1989 | if (error != JDWP::ERR_NONE) { |
| 1990 | return error; |
| 1991 | } |
| 1992 | if (obj == nullptr) { |
| 1993 | return JDWP::ERR_INVALID_OBJECT; |
| 1994 | } |
| 1995 | { |
| 1996 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 1997 | ObjPtr<mirror::Class> java_lang_String = |
| 1998 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_String); |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1999 | if (!java_lang_String->IsAssignableFrom(obj->GetClass())) { |
| 2000 | // This isn't a string. |
| 2001 | return JDWP::ERR_INVALID_STRING; |
| 2002 | } |
| 2003 | } |
| 2004 | *str = obj->AsString()->ToModifiedUtf8(); |
| 2005 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2006 | } |
| 2007 | |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2008 | void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { |
| 2009 | if (IsPrimitiveTag(tag)) { |
| 2010 | expandBufAdd1(pReply, tag); |
| 2011 | if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) { |
| 2012 | expandBufAdd1(pReply, return_value->GetI()); |
| 2013 | } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) { |
| 2014 | expandBufAdd2BE(pReply, return_value->GetI()); |
| 2015 | } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) { |
| 2016 | expandBufAdd4BE(pReply, return_value->GetI()); |
| 2017 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 2018 | expandBufAdd8BE(pReply, return_value->GetJ()); |
| 2019 | } else { |
| 2020 | CHECK_EQ(tag, JDWP::JT_VOID); |
| 2021 | } |
| 2022 | } else { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2023 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2024 | mirror::Object* value = return_value->GetL(); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2025 | expandBufAdd1(pReply, TagFromObject(soa, value)); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2026 | expandBufAddObjectId(pReply, gRegistry->Add(value)); |
| 2027 | } |
| 2028 | } |
| 2029 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2030 | JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2031 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2032 | JDWP::JdwpError error; |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2033 | DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2034 | if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2035 | return error; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2036 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2037 | |
| 2038 | // 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] | 2039 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2040 | CHECK(thread_object != nullptr) << error; |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2041 | ArtField* java_lang_Thread_name_field = |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2042 | jni::DecodeArtField(WellKnownClasses::java_lang_Thread_name); |
Mathieu Chartier | f8ac97f | 2016-10-05 15:56:52 -0700 | [diff] [blame] | 2043 | 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] | 2044 | if (s != nullptr) { |
| 2045 | *name = s->ToModifiedUtf8(); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2046 | } |
| 2047 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2048 | } |
| 2049 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2050 | JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2051 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2052 | JDWP::JdwpError error; |
| 2053 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2054 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2055 | return JDWP::ERR_INVALID_OBJECT; |
| 2056 | } |
Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2057 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroup"); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2058 | // Okay, so it's an object, but is it actually a thread? |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 2059 | DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2060 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2061 | // Zombie threads are in the null group. |
| 2062 | expandBufAddObjectId(pReply, JDWP::ObjectId(0)); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2063 | error = JDWP::ERR_NONE; |
| 2064 | } else if (error == JDWP::ERR_NONE) { |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2065 | ObjPtr<mirror::Class> c = soa.Decode<mirror::Class>(WellKnownClasses::java_lang_Thread); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2066 | CHECK(c != nullptr); |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2067 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2068 | CHECK(f != nullptr); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2069 | ObjPtr<mirror::Object> group = f->GetObject(thread_object); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2070 | CHECK(group != nullptr); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2071 | JDWP::ObjectId thread_group_id = gRegistry->Add(group); |
| 2072 | expandBufAddObjectId(pReply, thread_group_id); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2073 | } |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2074 | return error; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2075 | } |
| 2076 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2077 | static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2078 | JDWP::ObjectId thread_group_id, JDWP::JdwpError* error) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2079 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2080 | mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, |
| 2081 | error); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2082 | if (*error != JDWP::ERR_NONE) { |
| 2083 | return nullptr; |
| 2084 | } |
| 2085 | if (thread_group == nullptr) { |
| 2086 | *error = JDWP::ERR_INVALID_OBJECT; |
| 2087 | return nullptr; |
| 2088 | } |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 2089 | ObjPtr<mirror::Class> c = |
| 2090 | soa.Decode<mirror::Class>(WellKnownClasses::java_lang_ThreadGroup); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2091 | CHECK(c != nullptr); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2092 | if (!c->IsAssignableFrom(thread_group->GetClass())) { |
| 2093 | // This is not a java.lang.ThreadGroup. |
| 2094 | *error = JDWP::ERR_INVALID_THREAD_GROUP; |
| 2095 | return nullptr; |
| 2096 | } |
| 2097 | *error = JDWP::ERR_NONE; |
| 2098 | return thread_group; |
| 2099 | } |
| 2100 | |
| 2101 | JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| 2102 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2103 | JDWP::JdwpError error; |
| 2104 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2105 | if (error != JDWP::ERR_NONE) { |
| 2106 | return error; |
| 2107 | } |
Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2108 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupName"); |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2109 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_name); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2110 | CHECK(f != nullptr); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2111 | ObjPtr<mirror::String> s = f->GetObject(thread_group)->AsString(); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2112 | |
| 2113 | std::string thread_group_name(s->ToModifiedUtf8()); |
| 2114 | expandBufAddUtf8String(pReply, thread_group_name); |
| 2115 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2116 | } |
| 2117 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2118 | JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2119 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2120 | JDWP::JdwpError error; |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2121 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2122 | if (error != JDWP::ERR_NONE) { |
| 2123 | return error; |
| 2124 | } |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2125 | ObjPtr<mirror::Object> parent; |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2126 | { |
Mathieu Chartier | 268764d | 2016-09-13 12:09:38 -0700 | [diff] [blame] | 2127 | ScopedAssertNoThreadSuspension ants("Debugger: GetThreadGroupParent"); |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2128 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_parent); |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2129 | CHECK(f != nullptr); |
| 2130 | parent = f->GetObject(thread_group); |
| 2131 | } |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2132 | JDWP::ObjectId parent_group_id = gRegistry->Add(parent); |
| 2133 | expandBufAddObjectId(pReply, parent_group_id); |
| 2134 | return JDWP::ERR_NONE; |
| 2135 | } |
| 2136 | |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2137 | static void GetChildThreadGroups(mirror::Object* thread_group, |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2138 | std::vector<JDWP::ObjectId>* child_thread_group_ids) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2139 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2140 | CHECK(thread_group != nullptr); |
| 2141 | |
Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2142 | // Get the int "ngroups" count of this thread group... |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2143 | ArtField* ngroups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_ngroups); |
Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2144 | CHECK(ngroups_field != nullptr); |
| 2145 | const int32_t size = ngroups_field->GetInt(thread_group); |
| 2146 | if (size == 0) { |
| 2147 | return; |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2148 | } |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2149 | |
Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2150 | // Get the ThreadGroup[] "groups" out of this thread group... |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2151 | ArtField* groups_field = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_groups); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2152 | ObjPtr<mirror::Object> groups_array = groups_field->GetObject(thread_group); |
Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2153 | |
| 2154 | CHECK(groups_array != nullptr); |
| 2155 | CHECK(groups_array->IsObjectArray()); |
| 2156 | |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2157 | ObjPtr<mirror::ObjectArray<mirror::Object>> groups_array_as_array = |
Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2158 | groups_array->AsObjectArray<mirror::Object>(); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2159 | |
| 2160 | // Copy the first 'size' elements out of the array into the result. |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2161 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2162 | for (int32_t i = 0; i < size; ++i) { |
Przemyslaw Szczepaniak | 464595f | 2015-11-24 11:59:59 +0000 | [diff] [blame] | 2163 | 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] | 2164 | } |
| 2165 | } |
| 2166 | |
| 2167 | JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id, |
| 2168 | JDWP::ExpandBuf* pReply) { |
| 2169 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2170 | JDWP::JdwpError error; |
| 2171 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2172 | if (error != JDWP::ERR_NONE) { |
| 2173 | return error; |
| 2174 | } |
| 2175 | |
| 2176 | // Add child threads. |
| 2177 | { |
| 2178 | std::vector<JDWP::ObjectId> child_thread_ids; |
| 2179 | GetThreads(thread_group, &child_thread_ids); |
| 2180 | expandBufAdd4BE(pReply, child_thread_ids.size()); |
| 2181 | for (JDWP::ObjectId child_thread_id : child_thread_ids) { |
| 2182 | expandBufAddObjectId(pReply, child_thread_id); |
| 2183 | } |
| 2184 | } |
| 2185 | |
| 2186 | // Add child thread groups. |
| 2187 | { |
| 2188 | std::vector<JDWP::ObjectId> child_thread_groups_ids; |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2189 | GetChildThreadGroups(thread_group, &child_thread_groups_ids); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2190 | expandBufAdd4BE(pReply, child_thread_groups_ids.size()); |
| 2191 | for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) { |
| 2192 | expandBufAddObjectId(pReply, child_thread_group_id); |
| 2193 | } |
| 2194 | } |
| 2195 | |
| 2196 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2197 | } |
| 2198 | |
| 2199 | JDWP::ObjectId Dbg::GetSystemThreadGroupId() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2200 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2201 | ArtField* f = jni::DecodeArtField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2202 | ObjPtr<mirror::Object> group = f->GetObject(f->GetDeclaringClass()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 2203 | return gRegistry->Add(group); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2204 | } |
| 2205 | |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2206 | JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) { |
| 2207 | switch (state) { |
| 2208 | case kBlocked: |
| 2209 | return JDWP::TS_MONITOR; |
| 2210 | case kNative: |
| 2211 | case kRunnable: |
| 2212 | case kSuspended: |
| 2213 | return JDWP::TS_RUNNING; |
| 2214 | case kSleeping: |
| 2215 | return JDWP::TS_SLEEPING; |
| 2216 | case kStarting: |
| 2217 | case kTerminated: |
| 2218 | return JDWP::TS_ZOMBIE; |
| 2219 | case kTimedWaiting: |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2220 | case kWaitingForCheckPointsToRun: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2221 | case kWaitingForDebuggerSend: |
| 2222 | case kWaitingForDebuggerSuspension: |
| 2223 | case kWaitingForDebuggerToAttach: |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2224 | case kWaitingForDeoptimization: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2225 | case kWaitingForGcToComplete: |
Mathieu Chartier | b43390c | 2015-05-12 10:47:11 -0700 | [diff] [blame] | 2226 | case kWaitingForGetObjectsAllocated: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2227 | case kWaitingForJniOnLoad: |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2228 | case kWaitingForMethodTracingStart: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2229 | case kWaitingForSignalCatcherOutput: |
Hiroshi Yamauchi | 0c8c303 | 2015-01-16 16:54:35 -0800 | [diff] [blame] | 2230 | case kWaitingForVisitObjects: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2231 | case kWaitingInMainDebuggerLoop: |
| 2232 | case kWaitingInMainSignalCatcherLoop: |
| 2233 | case kWaitingPerformingGc: |
Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 2234 | case kWaitingWeakGcRootRead: |
Hiroshi Yamauchi | 76f55b0 | 2015-08-21 16:10:39 -0700 | [diff] [blame] | 2235 | case kWaitingForGcThreadFlip: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2236 | case kWaiting: |
| 2237 | return JDWP::TS_WAIT; |
| 2238 | // Don't add a 'default' here so the compiler can spot incompatible enum changes. |
| 2239 | } |
| 2240 | LOG(FATAL) << "Unknown thread state: " << state; |
| 2241 | return JDWP::TS_ZOMBIE; |
| 2242 | } |
| 2243 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2244 | JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, |
| 2245 | JDWP::JdwpSuspendStatus* pSuspendStatus) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2246 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2247 | |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2248 | *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED; |
| 2249 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2250 | JDWP::JdwpError error; |
| 2251 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2252 | if (error != JDWP::ERR_NONE) { |
| 2253 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2254 | *pThreadStatus = JDWP::TS_ZOMBIE; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2255 | return JDWP::ERR_NONE; |
| 2256 | } |
| 2257 | return error; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2258 | } |
| 2259 | |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2260 | if (IsSuspendedForDebugger(soa, thread)) { |
| 2261 | *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2262 | } |
| 2263 | |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2264 | *pThreadStatus = ToJdwpThreadStatus(thread->GetState()); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2265 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2266 | } |
| 2267 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2268 | JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2269 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2270 | JDWP::JdwpError error; |
| 2271 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2272 | if (error != JDWP::ERR_NONE) { |
| 2273 | return error; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2274 | } |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2275 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2276 | expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2277 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2278 | } |
| 2279 | |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2280 | JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) { |
| 2281 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2282 | JDWP::JdwpError error; |
| 2283 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2284 | if (error != JDWP::ERR_NONE) { |
| 2285 | return error; |
| 2286 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2287 | thread->Interrupt(soa.Self()); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2288 | return JDWP::ERR_NONE; |
| 2289 | } |
| 2290 | |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2291 | static bool IsInDesiredThreadGroup(mirror::Object* desired_thread_group, mirror::Object* peer) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2292 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2293 | // Do we want threads from all thread groups? |
| 2294 | if (desired_thread_group == nullptr) { |
| 2295 | return true; |
| 2296 | } |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2297 | ArtField* thread_group_field = jni::DecodeArtField(WellKnownClasses::java_lang_Thread_group); |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2298 | DCHECK(thread_group_field != nullptr); |
Mathieu Chartier | 3398c78 | 2016-09-30 10:27:43 -0700 | [diff] [blame] | 2299 | ObjPtr<mirror::Object> group = thread_group_field->GetObject(peer); |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2300 | return (group == desired_thread_group); |
| 2301 | } |
| 2302 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2303 | 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] | 2304 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2305 | std::list<Thread*> all_threads_list; |
| 2306 | { |
| 2307 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 2308 | all_threads_list = Runtime::Current()->GetThreadList()->GetList(); |
| 2309 | } |
| 2310 | for (Thread* t : all_threads_list) { |
| 2311 | if (t == Dbg::GetDebugThread()) { |
| 2312 | // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and |
| 2313 | // query all threads, so it's easier if we just don't tell them about this thread. |
| 2314 | continue; |
| 2315 | } |
| 2316 | if (t->IsStillStarting()) { |
| 2317 | // This thread is being started (and has been registered in the thread list). However, it is |
| 2318 | // not completely started yet so we must ignore it. |
| 2319 | continue; |
| 2320 | } |
Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 2321 | mirror::Object* peer = t->GetPeerFromOtherThread(); |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2322 | if (peer == nullptr) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 2323 | // 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] | 2324 | // this thread yet. |
| 2325 | // TODO: if we identified threads to the debugger by their Thread* |
| 2326 | // rather than their peer's mirror::Object*, we could fix this. |
| 2327 | // Doing so might help us report ZOMBIE threads too. |
| 2328 | continue; |
| 2329 | } |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 2330 | if (IsInDesiredThreadGroup(thread_group, peer)) { |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2331 | thread_ids->push_back(gRegistry->Add(peer)); |
| 2332 | } |
| 2333 | } |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2334 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2335 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2336 | static int GetStackDepth(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2337 | struct CountStackDepthVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2338 | explicit CountStackDepthVisitor(Thread* thread_in) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2339 | : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2340 | depth(0) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2341 | |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 2342 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2343 | // annotalysis. |
| 2344 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2345 | if (!GetMethod()->IsRuntimeMethod()) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 2346 | ++depth; |
| 2347 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2348 | return true; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2349 | } |
| 2350 | size_t depth; |
| 2351 | }; |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 2352 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2353 | CountStackDepthVisitor visitor(thread); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2354 | visitor.WalkStack(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2355 | return visitor.depth; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2356 | } |
| 2357 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2358 | JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2359 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2360 | JDWP::JdwpError error; |
| 2361 | *result = 0; |
| 2362 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2363 | if (error != JDWP::ERR_NONE) { |
| 2364 | return error; |
| 2365 | } |
Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2366 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2367 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2368 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2369 | *result = GetStackDepth(thread); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2370 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2371 | } |
| 2372 | |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 2373 | JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, |
| 2374 | size_t frame_count, JDWP::ExpandBuf* buf) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2375 | class GetFrameVisitor : public StackVisitor { |
| 2376 | public: |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2377 | GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in, |
| 2378 | JDWP::ExpandBuf* buf_in) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2379 | REQUIRES_SHARED(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2380 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2381 | depth_(0), |
| 2382 | start_frame_(start_frame_in), |
| 2383 | frame_count_(frame_count_in), |
| 2384 | buf_(buf_in) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2385 | expandBufAdd4BE(buf_, frame_count_); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2386 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2387 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2388 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2389 | if (GetMethod()->IsRuntimeMethod()) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 2390 | 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] | 2391 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2392 | if (depth_ >= start_frame_ + frame_count_) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2393 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2394 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2395 | if (depth_ >= start_frame_) { |
| 2396 | JDWP::FrameId frame_id(GetFrameId()); |
| 2397 | JDWP::JdwpLocation location; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2398 | SetJdwpLocation(&location, GetMethod(), GetDexPc()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2399 | VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2400 | expandBufAdd8BE(buf_, frame_id); |
| 2401 | expandBufAddLocation(buf_, location); |
| 2402 | } |
| 2403 | ++depth_; |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2404 | return true; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2405 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2406 | |
| 2407 | private: |
| 2408 | size_t depth_; |
| 2409 | const size_t start_frame_; |
| 2410 | const size_t frame_count_; |
| 2411 | JDWP::ExpandBuf* buf_; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2412 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2413 | |
| 2414 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2415 | JDWP::JdwpError error; |
| 2416 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2417 | if (error != JDWP::ERR_NONE) { |
| 2418 | return error; |
| 2419 | } |
Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2420 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2421 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2422 | } |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2423 | GetFrameVisitor visitor(thread, start_frame, frame_count, buf); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2424 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2425 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2426 | } |
| 2427 | |
| 2428 | JDWP::ObjectId Dbg::GetThreadSelfId() { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2429 | return GetThreadId(Thread::Current()); |
| 2430 | } |
| 2431 | |
| 2432 | JDWP::ObjectId Dbg::GetThreadId(Thread* thread) { |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 2433 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Nicolas Geoffray | cafa081 | 2017-02-15 18:27:34 +0000 | [diff] [blame] | 2434 | return gRegistry->Add(thread->GetPeerFromOtherThread()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2435 | } |
| 2436 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2437 | void Dbg::SuspendVM() { |
Hiroshi Yamauchi | 8f95cf3 | 2016-04-19 11:14:06 -0700 | [diff] [blame] | 2438 | // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335. |
| 2439 | gc::ScopedGCCriticalSection gcs(Thread::Current(), |
| 2440 | gc::kGcCauseDebugger, |
| 2441 | gc::kCollectorTypeDebugger); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2442 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2443 | } |
| 2444 | |
| 2445 | void Dbg::ResumeVM() { |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 2446 | Runtime::Current()->GetThreadList()->ResumeAllForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2447 | } |
| 2448 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2449 | JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2450 | Thread* self = Thread::Current(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2451 | ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2452 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2453 | ScopedObjectAccess soa(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2454 | JDWP::JdwpError error; |
| 2455 | peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error))); |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2456 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2457 | if (peer.get() == nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2458 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2459 | } |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 2460 | // Suspend thread to build stack trace. |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2461 | bool timed_out; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2462 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 2463 | Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), |
| 2464 | request_suspension, |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 2465 | SuspendReason::kForDebugger, |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2466 | &timed_out); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2467 | if (thread != nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2468 | return JDWP::ERR_NONE; |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2469 | } else if (timed_out) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2470 | return JDWP::ERR_INTERNAL; |
| 2471 | } else { |
| 2472 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2473 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2474 | } |
| 2475 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2476 | void Dbg::ResumeThread(JDWP::ObjectId thread_id) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2477 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2478 | JDWP::JdwpError error; |
| 2479 | mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2480 | CHECK(peer != nullptr) << error; |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2481 | Thread* thread; |
| 2482 | { |
| 2483 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2484 | thread = Thread::FromManagedThread(soa, peer); |
| 2485 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2486 | if (thread == nullptr) { |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2487 | LOG(WARNING) << "No such thread for resume: " << peer; |
| 2488 | return; |
| 2489 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2490 | bool needs_resume; |
| 2491 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2492 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Sebastien Hertz | 70d6027 | 2017-04-14 14:18:36 +0200 | [diff] [blame] | 2493 | needs_resume = thread->GetDebugSuspendCount() > 0; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2494 | } |
| 2495 | if (needs_resume) { |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 2496 | bool resumed = Runtime::Current()->GetThreadList()->Resume(thread, SuspendReason::kForDebugger); |
| 2497 | DCHECK(resumed); |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 2498 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2499 | } |
| 2500 | |
| 2501 | void Dbg::SuspendSelf() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2502 | Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2503 | } |
| 2504 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2505 | struct GetThisVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2506 | GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2507 | REQUIRES_SHARED(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2508 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2509 | this_object(nullptr), |
| 2510 | frame_id(frame_id_in) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2511 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2512 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2513 | // annotalysis. |
| 2514 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2515 | if (frame_id != GetFrameId()) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2516 | return true; // continue |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2517 | } else { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2518 | this_object = GetThisObject(); |
| 2519 | return false; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2520 | } |
Elliott Hughes | 86b0010 | 2011-12-05 17:54:26 -0800 | [diff] [blame] | 2521 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2522 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2523 | mirror::Object* this_object; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2524 | JDWP::FrameId frame_id; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2525 | }; |
| 2526 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2527 | JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, |
| 2528 | JDWP::ObjectId* result) { |
| 2529 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2530 | JDWP::JdwpError error; |
| 2531 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2532 | if (error != JDWP::ERR_NONE) { |
| 2533 | return error; |
| 2534 | } |
| 2535 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2536 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2537 | } |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2538 | std::unique_ptr<Context> context(Context::Create()); |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2539 | GetThisVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2540 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2541 | *result = gRegistry->Add(visitor.this_object); |
| 2542 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2543 | } |
| 2544 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2545 | // Walks the stack until we find the frame with the given FrameId. |
| 2546 | class FindFrameVisitor FINAL : public StackVisitor { |
| 2547 | public: |
| 2548 | FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2549 | REQUIRES_SHARED(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2550 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2551 | frame_id_(frame_id), |
| 2552 | error_(JDWP::ERR_INVALID_FRAMEID) {} |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 2553 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2554 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2555 | // annotalysis. |
| 2556 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 2557 | if (GetFrameId() != frame_id_) { |
| 2558 | return true; // Not our frame, carry on. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2559 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2560 | ArtMethod* m = GetMethod(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2561 | if (m->IsNative()) { |
| 2562 | // We can't read/write local value from/into native method. |
| 2563 | error_ = JDWP::ERR_OPAQUE_FRAME; |
| 2564 | } else { |
| 2565 | // We found our frame. |
| 2566 | error_ = JDWP::ERR_NONE; |
| 2567 | } |
| 2568 | return false; |
| 2569 | } |
| 2570 | |
| 2571 | JDWP::JdwpError GetError() const { |
| 2572 | return error_; |
| 2573 | } |
| 2574 | |
| 2575 | private: |
| 2576 | const JDWP::FrameId frame_id_; |
| 2577 | JDWP::JdwpError error_; |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 2578 | |
| 2579 | DISALLOW_COPY_AND_ASSIGN(FindFrameVisitor); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2580 | }; |
| 2581 | |
| 2582 | JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { |
| 2583 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2584 | JDWP::FrameId frame_id = request->ReadFrameId(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2585 | |
| 2586 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2587 | JDWP::JdwpError error; |
| 2588 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2589 | if (error != JDWP::ERR_NONE) { |
| 2590 | return error; |
| 2591 | } |
| 2592 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2593 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2594 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2595 | // Find the frame with the given frame_id. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2596 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2597 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2598 | visitor.WalkStack(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2599 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2600 | return visitor.GetError(); |
| 2601 | } |
| 2602 | |
| 2603 | // Read the values from visitor's context. |
| 2604 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2605 | expandBufAdd4BE(pReply, slot_count); /* "int values" */ |
| 2606 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2607 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2608 | JDWP::JdwpTag reqSigByte = request->ReadTag(); |
| 2609 | |
| 2610 | VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte; |
| 2611 | |
| 2612 | size_t width = Dbg::GetTagWidth(reqSigByte); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 2613 | uint8_t* ptr = expandBufAddSpace(pReply, width + 1); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2614 | error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2615 | if (error != JDWP::ERR_NONE) { |
| 2616 | return error; |
| 2617 | } |
| 2618 | } |
| 2619 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2620 | } |
| 2621 | |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2622 | constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION; |
| 2623 | |
| 2624 | static std::string GetStackContextAsString(const StackVisitor& visitor) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2625 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2626 | 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] | 2627 | ArtMethod::PrettyMethod(visitor.GetMethod()).c_str()); |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2628 | } |
| 2629 | |
| 2630 | static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2631 | JDWP::JdwpTag tag) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2632 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2633 | LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg |
| 2634 | << GetStackContextAsString(visitor); |
| 2635 | return kStackFrameLocalAccessError; |
| 2636 | } |
| 2637 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2638 | JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, |
| 2639 | int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2640 | ArtMethod* m = visitor.GetMethod(); |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2641 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2642 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2643 | if (error != JDWP::ERR_NONE) { |
| 2644 | return error; |
| 2645 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2646 | // 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] | 2647 | switch (tag) { |
| 2648 | case JDWP::JT_BOOLEAN: { |
| 2649 | CHECK_EQ(width, 1U); |
| 2650 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2651 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2652 | return FailGetLocalValue(visitor, vreg, tag); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2653 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2654 | VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; |
| 2655 | JDWP::Set1(buf + 1, intVal != 0); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2656 | break; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2657 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2658 | case JDWP::JT_BYTE: { |
| 2659 | CHECK_EQ(width, 1U); |
| 2660 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2661 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2662 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2663 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2664 | VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; |
| 2665 | JDWP::Set1(buf + 1, intVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2666 | break; |
| 2667 | } |
| 2668 | case JDWP::JT_SHORT: |
| 2669 | case JDWP::JT_CHAR: { |
| 2670 | CHECK_EQ(width, 2U); |
| 2671 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2672 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2673 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2674 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2675 | VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal; |
| 2676 | JDWP::Set2BE(buf + 1, intVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2677 | break; |
| 2678 | } |
| 2679 | case JDWP::JT_INT: { |
| 2680 | CHECK_EQ(width, 4U); |
| 2681 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2682 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2683 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2684 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2685 | VLOG(jdwp) << "get int local " << vreg << " = " << intVal; |
| 2686 | JDWP::Set4BE(buf + 1, intVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2687 | break; |
| 2688 | } |
| 2689 | case JDWP::JT_FLOAT: { |
| 2690 | CHECK_EQ(width, 4U); |
| 2691 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2692 | if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) { |
| 2693 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2694 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2695 | VLOG(jdwp) << "get float local " << vreg << " = " << intVal; |
| 2696 | JDWP::Set4BE(buf + 1, intVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2697 | break; |
| 2698 | } |
| 2699 | case JDWP::JT_ARRAY: |
| 2700 | case JDWP::JT_CLASS_LOADER: |
| 2701 | case JDWP::JT_CLASS_OBJECT: |
| 2702 | case JDWP::JT_OBJECT: |
| 2703 | case JDWP::JT_STRING: |
| 2704 | case JDWP::JT_THREAD: |
| 2705 | case JDWP::JT_THREAD_GROUP: { |
| 2706 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| 2707 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2708 | if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) { |
| 2709 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2710 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2711 | mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal); |
| 2712 | VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o; |
| 2713 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) { |
| 2714 | LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u", |
| 2715 | reinterpret_cast<uintptr_t>(o), vreg) |
| 2716 | << GetStackContextAsString(visitor); |
| 2717 | UNREACHABLE(); |
| 2718 | } |
| 2719 | tag = TagFromObject(soa, o); |
| 2720 | JDWP::SetObjectId(buf + 1, gRegistry->Add(o)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2721 | break; |
| 2722 | } |
| 2723 | case JDWP::JT_DOUBLE: { |
| 2724 | CHECK_EQ(width, 8U); |
| 2725 | uint64_t longVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2726 | if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { |
| 2727 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2728 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2729 | VLOG(jdwp) << "get double local " << vreg << " = " << longVal; |
| 2730 | JDWP::Set8BE(buf + 1, longVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2731 | break; |
| 2732 | } |
| 2733 | case JDWP::JT_LONG: { |
| 2734 | CHECK_EQ(width, 8U); |
| 2735 | uint64_t longVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2736 | if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) { |
| 2737 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2738 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2739 | VLOG(jdwp) << "get long local " << vreg << " = " << longVal; |
| 2740 | JDWP::Set8BE(buf + 1, longVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2741 | break; |
| 2742 | } |
| 2743 | default: |
| 2744 | LOG(FATAL) << "Unknown tag " << tag; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2745 | UNREACHABLE(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2746 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2747 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2748 | // Prepend tag, which may have been updated. |
| 2749 | JDWP::Set1(buf, tag); |
| 2750 | return JDWP::ERR_NONE; |
| 2751 | } |
| 2752 | |
| 2753 | JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { |
| 2754 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2755 | JDWP::FrameId frame_id = request->ReadFrameId(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2756 | |
| 2757 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2758 | JDWP::JdwpError error; |
| 2759 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2760 | if (error != JDWP::ERR_NONE) { |
| 2761 | return error; |
| 2762 | } |
| 2763 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2764 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2765 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2766 | // Find the frame with the given frame_id. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2767 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2768 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2769 | visitor.WalkStack(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2770 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2771 | return visitor.GetError(); |
| 2772 | } |
| 2773 | |
| 2774 | // Writes the values into visitor's context. |
| 2775 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2776 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2777 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2778 | JDWP::JdwpTag sigByte = request->ReadTag(); |
| 2779 | size_t width = Dbg::GetTagWidth(sigByte); |
| 2780 | uint64_t value = request->ReadValue(width); |
| 2781 | |
| 2782 | VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value; |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2783 | error = Dbg::SetLocalValue(thread, visitor, slot, sigByte, value, width); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2784 | if (error != JDWP::ERR_NONE) { |
| 2785 | return error; |
| 2786 | } |
| 2787 | } |
| 2788 | return JDWP::ERR_NONE; |
| 2789 | } |
| 2790 | |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2791 | template<typename T> |
| 2792 | static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2793 | JDWP::JdwpTag tag, T value) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2794 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2795 | LOG(ERROR) << "Failed to write " << tag << " local " << value |
| 2796 | << " (0x" << std::hex << value << ") into register v" << vreg |
| 2797 | << GetStackContextAsString(visitor); |
| 2798 | return kStackFrameLocalAccessError; |
| 2799 | } |
| 2800 | |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2801 | JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot, |
| 2802 | JDWP::JdwpTag tag, uint64_t value, size_t width) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2803 | ArtMethod* m = visitor.GetMethod(); |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2804 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2805 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2806 | if (error != JDWP::ERR_NONE) { |
| 2807 | return error; |
| 2808 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2809 | // 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] | 2810 | switch (tag) { |
| 2811 | case JDWP::JT_BOOLEAN: |
| 2812 | case JDWP::JT_BYTE: |
| 2813 | CHECK_EQ(width, 1U); |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2814 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2815 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2816 | } |
| 2817 | break; |
| 2818 | case JDWP::JT_SHORT: |
| 2819 | case JDWP::JT_CHAR: |
| 2820 | CHECK_EQ(width, 2U); |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2821 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2822 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2823 | } |
| 2824 | break; |
| 2825 | case JDWP::JT_INT: |
| 2826 | CHECK_EQ(width, 4U); |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2827 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2828 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2829 | } |
| 2830 | break; |
| 2831 | case JDWP::JT_FLOAT: |
| 2832 | CHECK_EQ(width, 4U); |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2833 | if (!visitor.SetVReg(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2834 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2835 | } |
| 2836 | break; |
| 2837 | case JDWP::JT_ARRAY: |
| 2838 | case JDWP::JT_CLASS_LOADER: |
| 2839 | case JDWP::JT_CLASS_OBJECT: |
| 2840 | case JDWP::JT_OBJECT: |
| 2841 | case JDWP::JT_STRING: |
| 2842 | case JDWP::JT_THREAD: |
| 2843 | case JDWP::JT_THREAD_GROUP: { |
| 2844 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2845 | mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value), |
| 2846 | &error); |
| 2847 | if (error != JDWP::ERR_NONE) { |
| 2848 | VLOG(jdwp) << tag << " object " << o << " is an invalid object"; |
| 2849 | return JDWP::ERR_INVALID_OBJECT; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2850 | } |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2851 | 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] | 2852 | kReferenceVReg)) { |
| 2853 | return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2854 | } |
| 2855 | break; |
| 2856 | } |
| 2857 | case JDWP::JT_DOUBLE: { |
| 2858 | CHECK_EQ(width, 8U); |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2859 | if (!visitor.SetVRegPair(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2860 | return FailSetLocalValue(visitor, vreg, tag, value); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2861 | } |
| 2862 | break; |
| 2863 | } |
| 2864 | case JDWP::JT_LONG: { |
| 2865 | CHECK_EQ(width, 8U); |
Mingyao Yang | 636b925 | 2015-07-31 16:40:24 -0700 | [diff] [blame] | 2866 | if (!visitor.SetVRegPair(m, vreg, value, kLongLoVReg, kLongHiVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2867 | return FailSetLocalValue(visitor, vreg, tag, value); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2868 | } |
| 2869 | break; |
| 2870 | } |
| 2871 | default: |
| 2872 | LOG(FATAL) << "Unknown tag " << tag; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2873 | UNREACHABLE(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2874 | } |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2875 | |
| 2876 | // If we set the local variable in a compiled frame, we need to trigger a deoptimization of |
| 2877 | // the stack so we continue execution with the interpreter using the new value(s) of the updated |
| 2878 | // local variable(s). To achieve this, we install instrumentation exit stub on each method of the |
| 2879 | // thread's stack. The stub will cause the deoptimization to happen. |
| 2880 | if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) { |
| 2881 | Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread); |
| 2882 | } |
| 2883 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2884 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2885 | } |
| 2886 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2887 | static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2888 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2889 | DCHECK(location != nullptr); |
| 2890 | if (m == nullptr) { |
| 2891 | memset(location, 0, sizeof(*location)); |
| 2892 | } else { |
Alex Light | 97e7803 | 2017-06-27 17:51:55 -0700 | [diff] [blame] | 2893 | location->method = m->GetCanonicalMethod(kRuntimePointerSize); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2894 | 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] | 2895 | } |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2896 | } |
| 2897 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2898 | void Dbg::PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object, |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2899 | int event_flags, const JValue* return_value) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2900 | if (!IsDebuggerActive()) { |
| 2901 | return; |
| 2902 | } |
| 2903 | DCHECK(m != nullptr); |
| 2904 | DCHECK_EQ(m->IsStatic(), this_object == nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2905 | JDWP::EventLocation location; |
| 2906 | SetEventLocation(&location, m, dex_pc); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2907 | |
Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2908 | // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent. |
| 2909 | // This is required to be able to call JNI functions to create JDWP ids. To achieve this, |
| 2910 | // we temporarily clear the current thread's exception (if any) and will restore it after |
| 2911 | // the call. |
| 2912 | // Note: the only way to get a pending exception here is to suspend on a move-exception |
| 2913 | // instruction. |
| 2914 | Thread* const self = Thread::Current(); |
| 2915 | StackHandleScope<1> hs(self); |
| 2916 | Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException())); |
| 2917 | self->ClearException(); |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2918 | if (kIsDebugBuild && pending_exception != nullptr) { |
Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2919 | const DexFile::CodeItem* code_item = location.method->GetCodeItem(); |
| 2920 | const Instruction* instr = Instruction::At(&code_item->insns_[location.dex_pc]); |
| 2921 | CHECK_EQ(Instruction::MOVE_EXCEPTION, instr->Opcode()); |
| 2922 | } |
| 2923 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2924 | gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value); |
Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2925 | |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 2926 | if (pending_exception != nullptr) { |
Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2927 | self->SetException(pending_exception.Get()); |
| 2928 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2929 | } |
| 2930 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2931 | void Dbg::PostFieldAccessEvent(ArtMethod* m, int dex_pc, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2932 | mirror::Object* this_object, ArtField* f) { |
Alex Light | e00ec30 | 2017-06-16 08:56:43 -0700 | [diff] [blame] | 2933 | // TODO We should send events for native methods. |
| 2934 | if (!IsDebuggerActive() || m->IsNative()) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2935 | return; |
| 2936 | } |
| 2937 | DCHECK(m != nullptr); |
| 2938 | DCHECK(f != nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2939 | JDWP::EventLocation location; |
| 2940 | SetEventLocation(&location, m, dex_pc); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2941 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2942 | gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2943 | } |
| 2944 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2945 | void Dbg::PostFieldModificationEvent(ArtMethod* m, int dex_pc, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2946 | mirror::Object* this_object, ArtField* f, |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2947 | const JValue* field_value) { |
Alex Light | e00ec30 | 2017-06-16 08:56:43 -0700 | [diff] [blame] | 2948 | // TODO We should send events for native methods. |
| 2949 | if (!IsDebuggerActive() || m->IsNative()) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2950 | return; |
| 2951 | } |
| 2952 | DCHECK(m != nullptr); |
| 2953 | DCHECK(f != nullptr); |
| 2954 | DCHECK(field_value != nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2955 | JDWP::EventLocation location; |
| 2956 | SetEventLocation(&location, m, dex_pc); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2957 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2958 | gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2959 | } |
| 2960 | |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2961 | /** |
| 2962 | * Finds the location where this exception will be caught. We search until we reach the top |
| 2963 | * frame, in which case this exception is considered uncaught. |
| 2964 | */ |
| 2965 | class CatchLocationFinder : public StackVisitor { |
| 2966 | public: |
| 2967 | CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2968 | REQUIRES_SHARED(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2969 | : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2970 | exception_(exception), |
| 2971 | handle_scope_(self), |
| 2972 | this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)), |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2973 | catch_method_(nullptr), |
| 2974 | throw_method_(nullptr), |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2975 | catch_dex_pc_(DexFile::kDexNoIndex), |
| 2976 | throw_dex_pc_(DexFile::kDexNoIndex) { |
| 2977 | } |
| 2978 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 2979 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2980 | ArtMethod* method = GetMethod(); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2981 | DCHECK(method != nullptr); |
| 2982 | if (method->IsRuntimeMethod()) { |
| 2983 | // Ignore callee save method. |
| 2984 | DCHECK(method->IsCalleeSaveMethod()); |
| 2985 | return true; |
| 2986 | } |
| 2987 | |
| 2988 | uint32_t dex_pc = GetDexPc(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2989 | if (throw_method_ == nullptr) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2990 | // First Java method found. It is either the method that threw the exception, |
| 2991 | // or the Java native method that is reporting an exception thrown by |
| 2992 | // native code. |
| 2993 | this_at_throw_.Assign(GetThisObject()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2994 | throw_method_ = method; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2995 | throw_dex_pc_ = dex_pc; |
| 2996 | } |
| 2997 | |
| 2998 | if (dex_pc != DexFile::kDexNoIndex) { |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 2999 | StackHandleScope<1> hs(GetThread()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3000 | uint32_t found_dex_pc; |
| 3001 | Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass())); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3002 | bool unused_clear_exception; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3003 | found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3004 | if (found_dex_pc != DexFile::kDexNoIndex) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3005 | catch_method_ = method; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3006 | catch_dex_pc_ = found_dex_pc; |
| 3007 | return false; // End stack walk. |
| 3008 | } |
| 3009 | } |
| 3010 | return true; // Continue stack walk. |
| 3011 | } |
| 3012 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3013 | ArtMethod* GetCatchMethod() REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3014 | return catch_method_; |
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 | ArtMethod* GetThrowMethod() REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3018 | return throw_method_; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3019 | } |
| 3020 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3021 | mirror::Object* GetThisAtThrow() REQUIRES_SHARED(Locks::mutator_lock_) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3022 | return this_at_throw_.Get(); |
| 3023 | } |
| 3024 | |
| 3025 | uint32_t GetCatchDexPc() const { |
| 3026 | return catch_dex_pc_; |
| 3027 | } |
| 3028 | |
| 3029 | uint32_t GetThrowDexPc() const { |
| 3030 | return throw_dex_pc_; |
| 3031 | } |
| 3032 | |
| 3033 | private: |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3034 | const Handle<mirror::Throwable>& exception_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3035 | StackHandleScope<1> handle_scope_; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3036 | MutableHandle<mirror::Object> this_at_throw_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3037 | ArtMethod* catch_method_; |
| 3038 | ArtMethod* throw_method_; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3039 | uint32_t catch_dex_pc_; |
| 3040 | uint32_t throw_dex_pc_; |
| 3041 | |
| 3042 | DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder); |
| 3043 | }; |
| 3044 | |
| 3045 | void Dbg::PostException(mirror::Throwable* exception_object) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3046 | if (!IsDebuggerActive()) { |
Ian Rogers | 0ad5bb8 | 2011-12-07 10:16:32 -0800 | [diff] [blame] | 3047 | return; |
| 3048 | } |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 3049 | Thread* const self = Thread::Current(); |
| 3050 | StackHandleScope<1> handle_scope(self); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3051 | Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object)); |
| 3052 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 3053 | CatchLocationFinder clf(self, h_exception, context.get()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3054 | clf.WalkStack(/* include_transitions */ false); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3055 | JDWP::EventLocation exception_throw_location; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3056 | SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc()); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3057 | JDWP::EventLocation exception_catch_location; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3058 | SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc()); |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 3059 | |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 3060 | gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location, |
| 3061 | clf.GetThisAtThrow()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3062 | } |
| 3063 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 3064 | void Dbg::PostClassPrepare(mirror::Class* c) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3065 | if (!IsDebuggerActive()) { |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 3066 | return; |
| 3067 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3068 | gJdwpState->PostClassPrepare(c); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3069 | } |
| 3070 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3071 | void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3072 | ArtMethod* m, uint32_t dex_pc, |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 3073 | int event_flags, const JValue* return_value) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3074 | if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) { |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 3075 | return; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3076 | } |
| 3077 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3078 | if (IsBreakpoint(m, dex_pc)) { |
| 3079 | event_flags |= kBreakpoint; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3080 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3081 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3082 | // If the debugger is single-stepping one of our threads, check to |
| 3083 | // see if we're that thread and we've reached a step point. |
| 3084 | const SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3085 | if (single_step_control != nullptr) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3086 | CHECK(!m->IsNative()); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3087 | if (single_step_control->GetStepDepth() == JDWP::SD_INTO) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3088 | // Step into method calls. We break when the line number |
| 3089 | // or method pointer changes. If we're in SS_MIN mode, we |
| 3090 | // always stop. |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3091 | if (single_step_control->GetMethod() != m) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3092 | event_flags |= kSingleStep; |
| 3093 | VLOG(jdwp) << "SS new method"; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3094 | } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3095 | event_flags |= kSingleStep; |
| 3096 | VLOG(jdwp) << "SS new instruction"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3097 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3098 | event_flags |= kSingleStep; |
| 3099 | VLOG(jdwp) << "SS new line"; |
| 3100 | } |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3101 | } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3102 | // Step over method calls. We break when the line number is |
| 3103 | // different and the frame depth is <= the original frame |
| 3104 | // depth. (We can't just compare on the method, because we |
| 3105 | // might get unrolled past it by an exception, and it's tricky |
| 3106 | // to identify recursion.) |
| 3107 | |
| 3108 | int stack_depth = GetStackDepth(thread); |
| 3109 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3110 | if (stack_depth < single_step_control->GetStackDepth()) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3111 | // Popped up one or more frames, always trigger. |
| 3112 | event_flags |= kSingleStep; |
| 3113 | VLOG(jdwp) << "SS method pop"; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3114 | } else if (stack_depth == single_step_control->GetStackDepth()) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3115 | // Same depth, see if we moved. |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3116 | if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3117 | event_flags |= kSingleStep; |
| 3118 | VLOG(jdwp) << "SS new instruction"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3119 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3120 | event_flags |= kSingleStep; |
| 3121 | VLOG(jdwp) << "SS new line"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3122 | } |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3123 | } |
| 3124 | } else { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3125 | CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3126 | // Return from the current method. We break when the frame |
| 3127 | // depth pops up. |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3128 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3129 | // This differs from the "method exit" break in that it stops |
| 3130 | // with the PC at the next instruction in the returned-to |
| 3131 | // function, rather than the end of the returning function. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3132 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3133 | int stack_depth = GetStackDepth(thread); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3134 | if (stack_depth < single_step_control->GetStackDepth()) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3135 | event_flags |= kSingleStep; |
| 3136 | VLOG(jdwp) << "SS method pop"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3137 | } |
| 3138 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3139 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3140 | |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3141 | // If there's something interesting going on, see if it matches one |
| 3142 | // of the debugger filters. |
| 3143 | if (event_flags != 0) { |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 3144 | Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3145 | } |
| 3146 | } |
| 3147 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3148 | size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) { |
| 3149 | switch (instrumentation_event) { |
| 3150 | case instrumentation::Instrumentation::kMethodEntered: |
| 3151 | return &method_enter_event_ref_count_; |
| 3152 | case instrumentation::Instrumentation::kMethodExited: |
| 3153 | return &method_exit_event_ref_count_; |
| 3154 | case instrumentation::Instrumentation::kDexPcMoved: |
| 3155 | return &dex_pc_change_event_ref_count_; |
| 3156 | case instrumentation::Instrumentation::kFieldRead: |
| 3157 | return &field_read_event_ref_count_; |
| 3158 | case instrumentation::Instrumentation::kFieldWritten: |
| 3159 | return &field_write_event_ref_count_; |
Alex Light | 6e1607e | 2017-08-23 10:06:18 -0700 | [diff] [blame] | 3160 | case instrumentation::Instrumentation::kExceptionThrown: |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3161 | return &exception_catch_event_ref_count_; |
| 3162 | default: |
| 3163 | return nullptr; |
| 3164 | } |
| 3165 | } |
| 3166 | |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3167 | // Process request while all mutator threads are suspended. |
| 3168 | void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3169 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3170 | switch (request.GetKind()) { |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3171 | case DeoptimizationRequest::kNothing: |
| 3172 | LOG(WARNING) << "Ignoring empty deoptimization request."; |
| 3173 | break; |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3174 | case DeoptimizationRequest::kRegisterForEvent: |
| 3175 | VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3176 | request.InstrumentationEvent()); |
| 3177 | instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); |
| 3178 | instrumentation_events_ |= request.InstrumentationEvent(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3179 | break; |
| 3180 | case DeoptimizationRequest::kUnregisterForEvent: |
| 3181 | VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3182 | request.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3183 | instrumentation->RemoveListener(&gDebugInstrumentationListener, |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3184 | request.InstrumentationEvent()); |
| 3185 | instrumentation_events_ &= ~request.InstrumentationEvent(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3186 | break; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3187 | case DeoptimizationRequest::kFullDeoptimization: |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3188 | VLOG(jdwp) << "Deoptimize the world ..."; |
Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3189 | instrumentation->DeoptimizeEverything(kDbgInstrumentationKey); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3190 | VLOG(jdwp) << "Deoptimize the world DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3191 | break; |
| 3192 | case DeoptimizationRequest::kFullUndeoptimization: |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3193 | VLOG(jdwp) << "Undeoptimize the world ..."; |
Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3194 | instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3195 | VLOG(jdwp) << "Undeoptimize the world DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3196 | break; |
| 3197 | case DeoptimizationRequest::kSelectiveDeoptimization: |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3198 | VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3199 | instrumentation->Deoptimize(request.Method()); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3200 | VLOG(jdwp) << "Deoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3201 | break; |
| 3202 | case DeoptimizationRequest::kSelectiveUndeoptimization: |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3203 | VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " ..."; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3204 | instrumentation->Undeoptimize(request.Method()); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3205 | VLOG(jdwp) << "Undeoptimize method " << ArtMethod::PrettyMethod(request.Method()) << " DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3206 | break; |
| 3207 | default: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3208 | LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3209 | break; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3210 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3211 | } |
| 3212 | |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3213 | void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3214 | if (req.GetKind() == DeoptimizationRequest::kNothing) { |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3215 | // Nothing to do. |
| 3216 | return; |
| 3217 | } |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3218 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3219 | RequestDeoptimizationLocked(req); |
| 3220 | } |
| 3221 | |
| 3222 | void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3223 | switch (req.GetKind()) { |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3224 | case DeoptimizationRequest::kRegisterForEvent: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3225 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3226 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3227 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3228 | req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3229 | if (*counter == 0) { |
Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3230 | 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] | 3231 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3232 | deoptimization_requests_.push_back(req); |
| 3233 | } |
| 3234 | *counter = *counter + 1; |
| 3235 | break; |
| 3236 | } |
| 3237 | case DeoptimizationRequest::kUnregisterForEvent: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3238 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3239 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3240 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3241 | req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3242 | *counter = *counter - 1; |
| 3243 | if (*counter == 0) { |
Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3244 | 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] | 3245 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3246 | deoptimization_requests_.push_back(req); |
| 3247 | } |
| 3248 | break; |
| 3249 | } |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3250 | case DeoptimizationRequest::kFullDeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3251 | DCHECK(req.Method() == nullptr); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3252 | if (full_deoptimization_event_count_ == 0) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3253 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3254 | << " for full deoptimization"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3255 | deoptimization_requests_.push_back(req); |
| 3256 | } |
| 3257 | ++full_deoptimization_event_count_; |
| 3258 | break; |
| 3259 | } |
| 3260 | case DeoptimizationRequest::kFullUndeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3261 | DCHECK(req.Method() == nullptr); |
Sebastien Hertz | e713d93 | 2014-05-15 10:48:53 +0200 | [diff] [blame] | 3262 | DCHECK_GT(full_deoptimization_event_count_, 0U); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3263 | --full_deoptimization_event_count_; |
| 3264 | if (full_deoptimization_event_count_ == 0) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3265 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3266 | << " for full undeoptimization"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3267 | deoptimization_requests_.push_back(req); |
| 3268 | } |
| 3269 | break; |
| 3270 | } |
| 3271 | case DeoptimizationRequest::kSelectiveDeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3272 | DCHECK(req.Method() != nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3273 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3274 | << " for deoptimization of " << req.Method()->PrettyMethod(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3275 | deoptimization_requests_.push_back(req); |
| 3276 | break; |
| 3277 | } |
| 3278 | case DeoptimizationRequest::kSelectiveUndeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3279 | DCHECK(req.Method() != nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3280 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3281 | << " for undeoptimization of " << req.Method()->PrettyMethod(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3282 | deoptimization_requests_.push_back(req); |
| 3283 | break; |
| 3284 | } |
| 3285 | default: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3286 | LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3287 | break; |
| 3288 | } |
| 3289 | } |
| 3290 | } |
| 3291 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3292 | void Dbg::ManageDeoptimization() { |
| 3293 | Thread* const self = Thread::Current(); |
| 3294 | { |
| 3295 | // Avoid suspend/resume if there is no pending request. |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3296 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3297 | if (deoptimization_requests_.empty()) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3298 | return; |
| 3299 | } |
| 3300 | } |
| 3301 | CHECK_EQ(self->GetState(), kRunnable); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3302 | ScopedThreadSuspension sts(self, kWaitingForDeoptimization); |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 3303 | // Required for ProcessDeoptimizationRequest. |
| 3304 | gc::ScopedGCCriticalSection gcs(self, |
| 3305 | gc::kGcCauseInstrumentation, |
| 3306 | gc::kCollectorTypeInstrumentation); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3307 | // We need to suspend mutator threads first. |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 3308 | ScopedSuspendAll ssa(__FUNCTION__); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3309 | const ThreadState old_state = self->SetStateUnsafe(kRunnable); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3310 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3311 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3312 | size_t req_index = 0; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3313 | for (DeoptimizationRequest& request : deoptimization_requests_) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3314 | VLOG(jdwp) << "Process deoptimization request #" << req_index++; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3315 | ProcessDeoptimizationRequest(request); |
| 3316 | } |
| 3317 | deoptimization_requests_.clear(); |
| 3318 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3319 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3320 | } |
| 3321 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3322 | static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3323 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3324 | for (Breakpoint& breakpoint : gBreakpoints) { |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3325 | if (breakpoint.IsInMethod(m)) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3326 | return &breakpoint; |
| 3327 | } |
| 3328 | } |
| 3329 | return nullptr; |
| 3330 | } |
| 3331 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3332 | bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) { |
Mathieu Chartier | d856545 | 2015-03-26 09:41:50 -0700 | [diff] [blame] | 3333 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 3334 | return FindFirstBreakpointForMethod(method) != nullptr; |
| 3335 | } |
| 3336 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3337 | // Sanity checks all existing breakpoints on the same method. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3338 | static void SanityCheckExistingBreakpoints(ArtMethod* m, |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3339 | DeoptimizationRequest::Kind deoptimization_kind) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3340 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3341 | for (const Breakpoint& breakpoint : gBreakpoints) { |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3342 | if (breakpoint.IsInMethod(m)) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3343 | CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind()); |
| 3344 | } |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3345 | } |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3346 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 3347 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3348 | // We should have deoptimized everything but not "selectively" deoptimized this method. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3349 | CHECK(instrumentation->AreAllMethodsDeoptimized()); |
| 3350 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3351 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3352 | // We should have "selectively" deoptimized this method. |
| 3353 | // Note: while we have not deoptimized everything for this method, we may have done it for |
| 3354 | // another event. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3355 | CHECK(instrumentation->IsDeoptimized(m)); |
| 3356 | } else { |
| 3357 | // This method does not require deoptimization. |
| 3358 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3359 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3360 | } |
| 3361 | } |
| 3362 | |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3363 | // Returns the deoptimization kind required to set a breakpoint in a method. |
| 3364 | // If a breakpoint has already been set, we also return the first breakpoint |
| 3365 | // through the given 'existing_brkpt' pointer. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3366 | static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3367 | ArtMethod* m, |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3368 | const Breakpoint** existing_brkpt) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3369 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3370 | if (!Dbg::RequiresDeoptimization()) { |
| 3371 | // We already run in interpreter-only mode so we don't need to deoptimize anything. |
| 3372 | 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] | 3373 | << ArtMethod::PrettyMethod(m); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3374 | return DeoptimizationRequest::kNothing; |
| 3375 | } |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3376 | const Breakpoint* first_breakpoint; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3377 | { |
| 3378 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3379 | first_breakpoint = FindFirstBreakpointForMethod(m); |
| 3380 | *existing_brkpt = first_breakpoint; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3381 | } |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3382 | |
| 3383 | if (first_breakpoint == nullptr) { |
Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3384 | // There is no breakpoint on this method yet: we need to deoptimize. If this method is default, |
| 3385 | // we deoptimize everything; otherwise we deoptimize only this method. We |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3386 | // 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] | 3387 | // of the copies could be missed. |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3388 | // TODO Deoptimizing on default methods might not be necessary in all cases. |
Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3389 | bool need_full_deoptimization = m->IsDefault(); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3390 | if (need_full_deoptimization) { |
Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3391 | VLOG(jdwp) << "Need full deoptimization because of copying of method " |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3392 | << ArtMethod::PrettyMethod(m); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3393 | return DeoptimizationRequest::kFullDeoptimization; |
| 3394 | } else { |
| 3395 | // 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] | 3396 | const bool is_compiled = m->HasAnyCompiledCode(); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3397 | if (is_compiled) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3398 | VLOG(jdwp) << "Need selective deoptimization for compiled method " |
| 3399 | << ArtMethod::PrettyMethod(m); |
Nicolas Geoffray | 6300fd7 | 2016-03-18 09:40:17 +0000 | [diff] [blame] | 3400 | return DeoptimizationRequest::kSelectiveDeoptimization; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3401 | } else { |
| 3402 | // Method is not compiled: we don't need to deoptimize. |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3403 | VLOG(jdwp) << "No need for deoptimization for non-compiled method " |
| 3404 | << ArtMethod::PrettyMethod(m); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3405 | return DeoptimizationRequest::kNothing; |
| 3406 | } |
| 3407 | } |
| 3408 | } else { |
| 3409 | // There is at least one breakpoint for this method: we don't need to deoptimize. |
| 3410 | // Let's check that all breakpoints are configured the same way for deoptimization. |
| 3411 | VLOG(jdwp) << "Breakpoint already set: no deoptimization is required"; |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3412 | DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind(); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3413 | if (kIsDebugBuild) { |
| 3414 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3415 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
| 3416 | } |
| 3417 | return DeoptimizationRequest::kNothing; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3418 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3419 | } |
| 3420 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3421 | // Installs a breakpoint at the specified location. Also indicates through the deoptimization |
| 3422 | // request if we need to deoptimize. |
| 3423 | void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| 3424 | Thread* const self = Thread::Current(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3425 | ArtMethod* m = FromMethodId(location->method_id); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3426 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3427 | |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3428 | const Breakpoint* existing_breakpoint = nullptr; |
| 3429 | const DeoptimizationRequest::Kind deoptimization_kind = |
| 3430 | GetRequiredDeoptimizationKind(self, m, &existing_breakpoint); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3431 | req->SetKind(deoptimization_kind); |
| 3432 | if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| 3433 | req->SetMethod(m); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3434 | } else { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3435 | CHECK(deoptimization_kind == DeoptimizationRequest::kNothing || |
| 3436 | deoptimization_kind == DeoptimizationRequest::kFullDeoptimization); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3437 | req->SetMethod(nullptr); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3438 | } |
| 3439 | |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3440 | { |
| 3441 | WriterMutexLock mu(self, *Locks::breakpoint_lock_); |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3442 | // If there is at least one existing breakpoint on the same method, the new breakpoint |
| 3443 | // must have the same deoptimization kind than the existing breakpoint(s). |
| 3444 | DeoptimizationRequest::Kind breakpoint_deoptimization_kind; |
| 3445 | if (existing_breakpoint != nullptr) { |
| 3446 | breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind(); |
| 3447 | } else { |
| 3448 | breakpoint_deoptimization_kind = deoptimization_kind; |
| 3449 | } |
| 3450 | gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind)); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3451 | VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " |
| 3452 | << gBreakpoints[gBreakpoints.size() - 1]; |
| 3453 | } |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3454 | } |
| 3455 | |
| 3456 | // Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization |
| 3457 | // request if we need to undeoptimize. |
| 3458 | void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3459 | WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3460 | ArtMethod* m = FromMethodId(location->method_id); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3461 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3462 | DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing; |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3463 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
Alex Light | 6c8467f | 2015-11-20 15:03:26 -0800 | [diff] [blame] | 3464 | if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].IsInMethod(m)) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3465 | VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3466 | deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind(); |
| 3467 | DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization, |
| 3468 | Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3469 | gBreakpoints.erase(gBreakpoints.begin() + i); |
| 3470 | break; |
| 3471 | } |
| 3472 | } |
| 3473 | const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3474 | if (existing_breakpoint == nullptr) { |
| 3475 | // There is no more breakpoint on this method: we need to undeoptimize. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3476 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3477 | // This method required full deoptimization: we need to undeoptimize everything. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3478 | req->SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3479 | req->SetMethod(nullptr); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3480 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3481 | // This method required selective deoptimization: we need to undeoptimize only that method. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3482 | req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization); |
| 3483 | req->SetMethod(m); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3484 | } else { |
| 3485 | // This method had no need for deoptimization: do nothing. |
| 3486 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3487 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3488 | req->SetMethod(nullptr); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3489 | } |
| 3490 | } else { |
| 3491 | // 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] | 3492 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3493 | req->SetMethod(nullptr); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3494 | if (kIsDebugBuild) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3495 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3496 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3497 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3498 | } |
| 3499 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3500 | bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) { |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3501 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3502 | if (ssc == nullptr) { |
| 3503 | // If we are not single-stepping, then we don't have to force interpreter. |
| 3504 | return false; |
| 3505 | } |
| 3506 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3507 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3508 | return false; |
| 3509 | } |
| 3510 | |
| 3511 | if (!m->IsNative() && !m->IsProxyMethod()) { |
| 3512 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3513 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3514 | return true; |
| 3515 | } |
| 3516 | } |
| 3517 | return false; |
| 3518 | } |
| 3519 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3520 | bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3521 | instrumentation::Instrumentation* const instrumentation = |
| 3522 | Runtime::Current()->GetInstrumentation(); |
| 3523 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3524 | if (instrumentation->InterpretOnly()) { |
| 3525 | return false; |
| 3526 | } |
| 3527 | // We can only interpret pure Java method. |
| 3528 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3529 | return false; |
| 3530 | } |
| 3531 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3532 | if (ssc != nullptr) { |
| 3533 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3534 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3535 | return true; |
| 3536 | } |
| 3537 | // If we are stepping out from a static initializer, by issuing a step |
| 3538 | // in or step over, that was implicitly invoked by calling a static method, |
| 3539 | // then we need to step into that method. Having a lower stack depth than |
| 3540 | // the one the single step control has indicates that the step originates |
| 3541 | // from the static initializer. |
| 3542 | if (ssc->GetStepDepth() != JDWP::SD_OUT && |
| 3543 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3544 | return true; |
| 3545 | } |
| 3546 | } |
| 3547 | // There are cases where we have to force interpreter on deoptimized methods, |
| 3548 | // because in some cases the call will not be performed by invoking an entry |
| 3549 | // point that has been replaced by the deoptimization, but instead by directly |
| 3550 | // invoking the compiled code of the method, for example. |
| 3551 | return instrumentation->IsDeoptimized(m); |
| 3552 | } |
| 3553 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3554 | bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3555 | // 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] | 3556 | if (m == nullptr) { |
| 3557 | return false; |
| 3558 | } |
| 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 are stepping out from a static initializer, by issuing a step |
| 3572 | // out, that was implicitly invoked by calling a static method, then we |
| 3573 | // need to step into the caller of that method. Having a lower stack |
| 3574 | // depth than the one the single step control has indicates that the |
| 3575 | // step originates from the static initializer. |
| 3576 | if (ssc->GetStepDepth() == JDWP::SD_OUT && |
| 3577 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3578 | return true; |
| 3579 | } |
| 3580 | } |
| 3581 | // If we are returning from a static intializer, that was implicitly |
| 3582 | // invoked by calling a static method and the caller is deoptimized, |
| 3583 | // then we have to deoptimize the stack without forcing interpreter |
| 3584 | // on the static method that was called originally. This problem can |
| 3585 | // be solved easily by forcing instrumentation on the called method, |
| 3586 | // because the instrumentation exit hook will recognise the need of |
| 3587 | // stack deoptimization by calling IsForcedInterpreterNeededForUpcall. |
| 3588 | return instrumentation->IsDeoptimized(m); |
| 3589 | } |
| 3590 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3591 | bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3592 | // 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] | 3593 | if (m == nullptr) { |
| 3594 | return false; |
| 3595 | } |
| 3596 | instrumentation::Instrumentation* const instrumentation = |
| 3597 | Runtime::Current()->GetInstrumentation(); |
| 3598 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3599 | if (instrumentation->InterpretOnly()) { |
| 3600 | return false; |
| 3601 | } |
| 3602 | // We can only interpret pure Java method. |
| 3603 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3604 | return false; |
| 3605 | } |
| 3606 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3607 | if (ssc != nullptr) { |
| 3608 | // The debugger is not interested in what is happening under the level |
| 3609 | // of the step, thus we only force interpreter when we are not below of |
| 3610 | // the step. |
| 3611 | if (ssc->GetStackDepth() >= GetStackDepth(thread)) { |
| 3612 | return true; |
| 3613 | } |
| 3614 | } |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3615 | if (thread->HasDebuggerShadowFrames()) { |
| 3616 | // We need to deoptimize the stack for the exception handling flow so that |
| 3617 | // we don't miss any deoptimization that should be done when there are |
| 3618 | // debugger shadow frames. |
| 3619 | return true; |
| 3620 | } |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3621 | // We have to require stack deoptimization if the upcall is deoptimized. |
| 3622 | return instrumentation->IsDeoptimized(m); |
| 3623 | } |
| 3624 | |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3625 | class NeedsDeoptimizationVisitor : public StackVisitor { |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3626 | public: |
| 3627 | explicit NeedsDeoptimizationVisitor(Thread* self) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3628 | REQUIRES_SHARED(Locks::mutator_lock_) |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3629 | : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3630 | needs_deoptimization_(false) {} |
| 3631 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3632 | bool VisitFrame() OVERRIDE REQUIRES_SHARED(Locks::mutator_lock_) { |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3633 | // 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] | 3634 | CHECK(!IsShadowFrame()) << "We only expect to visit compiled frame: " |
| 3635 | << ArtMethod::PrettyMethod(GetMethod()); |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3636 | ArtMethod* method = GetMethod(); |
| 3637 | if (method == nullptr) { |
| 3638 | // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment) |
| 3639 | // so we can stop the visit. |
| 3640 | DCHECK(!needs_deoptimization_); |
| 3641 | return false; |
| 3642 | } |
| 3643 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3644 | // We found a compiled frame in the stack but instrumentation is set to interpret |
| 3645 | // everything: we need to deoptimize. |
| 3646 | needs_deoptimization_ = true; |
| 3647 | return false; |
| 3648 | } |
| 3649 | if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) { |
| 3650 | // We found a deoptimized method in the stack. |
| 3651 | needs_deoptimization_ = true; |
| 3652 | return false; |
| 3653 | } |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3654 | ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(GetFrameId()); |
| 3655 | if (frame != nullptr) { |
| 3656 | // The debugger allocated a ShadowFrame to update a variable in the stack: we need to |
| 3657 | // deoptimize the stack to execute (and deallocate) this frame. |
| 3658 | needs_deoptimization_ = true; |
| 3659 | return false; |
| 3660 | } |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3661 | return true; |
| 3662 | } |
| 3663 | |
| 3664 | bool NeedsDeoptimization() const { |
| 3665 | return needs_deoptimization_; |
| 3666 | } |
| 3667 | |
| 3668 | private: |
| 3669 | // Do we need to deoptimize the stack? |
| 3670 | bool needs_deoptimization_; |
| 3671 | |
| 3672 | DISALLOW_COPY_AND_ASSIGN(NeedsDeoptimizationVisitor); |
| 3673 | }; |
| 3674 | |
| 3675 | // Do we need to deoptimize the stack to handle an exception? |
| 3676 | bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) { |
| 3677 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3678 | if (ssc != nullptr) { |
| 3679 | // We deopt to step into the catch handler. |
| 3680 | return true; |
| 3681 | } |
| 3682 | // Deoptimization is required if at least one method in the stack needs it. However we |
| 3683 | // skip frames that will be unwound (thus not executed). |
| 3684 | NeedsDeoptimizationVisitor visitor(thread); |
| 3685 | visitor.WalkStack(true); // includes upcall. |
| 3686 | return visitor.NeedsDeoptimization(); |
| 3687 | } |
| 3688 | |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3689 | // Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't |
| 3690 | // cause suspension if the thread is the current thread. |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3691 | class ScopedDebuggerThreadSuspension { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3692 | public: |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3693 | ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3694 | REQUIRES(!Locks::thread_list_lock_) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3695 | REQUIRES_SHARED(Locks::mutator_lock_) : |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3696 | thread_(nullptr), |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3697 | error_(JDWP::ERR_NONE), |
| 3698 | self_suspend_(false), |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3699 | other_suspend_(false) { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3700 | ScopedObjectAccessUnchecked soa(self); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 3701 | thread_ = DecodeThread(soa, thread_id, &error_); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3702 | if (error_ == JDWP::ERR_NONE) { |
| 3703 | if (thread_ == soa.Self()) { |
| 3704 | self_suspend_ = true; |
| 3705 | } else { |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3706 | Thread* suspended_thread; |
| 3707 | { |
| 3708 | ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension); |
| 3709 | jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); |
| 3710 | bool timed_out; |
| 3711 | ThreadList* const thread_list = Runtime::Current()->GetThreadList(); |
Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 3712 | suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, |
| 3713 | /* request_suspension */ true, |
Alex Light | 46f9340 | 2017-06-29 11:59:50 -0700 | [diff] [blame] | 3714 | SuspendReason::kForDebugger, |
Sebastien Hertz | cdd798d | 2017-04-18 18:28:51 +0200 | [diff] [blame] | 3715 | &timed_out); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3716 | } |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3717 | if (suspended_thread == nullptr) { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3718 | // Thread terminated from under us while suspending. |
| 3719 | error_ = JDWP::ERR_INVALID_THREAD; |
| 3720 | } else { |
| 3721 | CHECK_EQ(suspended_thread, thread_); |
| 3722 | other_suspend_ = true; |
| 3723 | } |
| 3724 | } |
| 3725 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3726 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3727 | |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3728 | Thread* GetThread() const { |
| 3729 | return thread_; |
| 3730 | } |
| 3731 | |
| 3732 | JDWP::JdwpError GetError() const { |
| 3733 | return error_; |
| 3734 | } |
| 3735 | |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3736 | ~ScopedDebuggerThreadSuspension() { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3737 | if (other_suspend_) { |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 3738 | bool resumed = Runtime::Current()->GetThreadList()->Resume(thread_, |
| 3739 | SuspendReason::kForDebugger); |
| 3740 | DCHECK(resumed); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3741 | } |
| 3742 | } |
| 3743 | |
| 3744 | private: |
| 3745 | Thread* thread_; |
| 3746 | JDWP::JdwpError error_; |
| 3747 | bool self_suspend_; |
| 3748 | bool other_suspend_; |
| 3749 | }; |
| 3750 | |
| 3751 | JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, |
| 3752 | JDWP::JdwpStepDepth step_depth) { |
| 3753 | Thread* self = Thread::Current(); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3754 | ScopedDebuggerThreadSuspension sts(self, thread_id); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3755 | if (sts.GetError() != JDWP::ERR_NONE) { |
| 3756 | return sts.GetError(); |
| 3757 | } |
| 3758 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3759 | // 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] | 3760 | // is for step-out. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3761 | struct SingleStepStackVisitor : public StackVisitor { |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 3762 | explicit SingleStepStackVisitor(Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 3763 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3764 | stack_depth(0), |
| 3765 | method(nullptr), |
| 3766 | line_number(-1) {} |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 3767 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3768 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 3769 | // annotalysis. |
| 3770 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3771 | ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3772 | if (!m->IsRuntimeMethod()) { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3773 | ++stack_depth; |
| 3774 | if (method == nullptr) { |
Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 3775 | const DexFile* dex_file = m->GetDexFile(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3776 | method = m; |
Alex Light | 7337631 | 2017-04-06 10:10:51 -0700 | [diff] [blame] | 3777 | if (dex_file != nullptr) { |
David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 3778 | line_number = annotations::GetLineNumFromPC(dex_file, m, GetDexPc()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3779 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3780 | } |
| 3781 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3782 | return true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3783 | } |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3784 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3785 | int stack_depth; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3786 | ArtMethod* method; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3787 | int32_t line_number; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3788 | }; |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3789 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3790 | Thread* const thread = sts.GetThread(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3791 | SingleStepStackVisitor visitor(thread); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3792 | visitor.WalkStack(); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3793 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3794 | // 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] | 3795 | struct DebugCallbackContext { |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 3796 | DebugCallbackContext(SingleStepControl* single_step_control_cb, |
| 3797 | int32_t line_number_cb, const DexFile::CodeItem* code_item) |
| 3798 | : single_step_control_(single_step_control_cb), line_number_(line_number_cb), |
| 3799 | code_item_(code_item), last_pc_valid(false), last_pc(0) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3800 | } |
| 3801 | |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3802 | static bool Callback(void* raw_context, const DexFile::PositionInfo& entry) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3803 | DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context); |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3804 | if (static_cast<int32_t>(entry.line_) == context->line_number_) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3805 | if (!context->last_pc_valid) { |
| 3806 | // Everything from this address until the next line change is ours. |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3807 | context->last_pc = entry.address_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3808 | context->last_pc_valid = true; |
| 3809 | } |
| 3810 | // Otherwise, if we're already in a valid range for this line, |
| 3811 | // just keep going (shouldn't really happen)... |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3812 | } else if (context->last_pc_valid) { // and the line number is new |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3813 | // Add everything from the last entry up until here to the set |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3814 | 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] | 3815 | context->single_step_control_->AddDexPc(dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3816 | } |
| 3817 | context->last_pc_valid = false; |
| 3818 | } |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3819 | return false; // There may be multiple entries for any given line. |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3820 | } |
| 3821 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3822 | ~DebugCallbackContext() { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3823 | // If the line number was the last in the position table... |
| 3824 | if (last_pc_valid) { |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3825 | size_t end = code_item_->insns_size_in_code_units_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3826 | for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3827 | single_step_control_->AddDexPc(dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3828 | } |
| 3829 | } |
| 3830 | } |
| 3831 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3832 | SingleStepControl* const single_step_control_; |
| 3833 | const int32_t line_number_; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3834 | const DexFile::CodeItem* const code_item_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3835 | bool last_pc_valid; |
| 3836 | uint32_t last_pc; |
| 3837 | }; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3838 | |
| 3839 | // Allocate single step. |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3840 | SingleStepControl* single_step_control = |
| 3841 | new (std::nothrow) SingleStepControl(step_size, step_depth, |
| 3842 | visitor.stack_depth, visitor.method); |
| 3843 | if (single_step_control == nullptr) { |
| 3844 | LOG(ERROR) << "Failed to allocate SingleStepControl"; |
| 3845 | return JDWP::ERR_OUT_OF_MEMORY; |
| 3846 | } |
| 3847 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3848 | ArtMethod* m = single_step_control->GetMethod(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3849 | const int32_t line_number = visitor.line_number; |
Sebastien Hertz | 52f5f93 | 2015-05-28 11:00:57 +0200 | [diff] [blame] | 3850 | // Note: if the thread is not running Java code (pure native thread), there is no "current" |
| 3851 | // method on the stack (and no line number either). |
| 3852 | if (m != nullptr && !m->IsNative()) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3853 | const DexFile::CodeItem* const code_item = m->GetCodeItem(); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3854 | DebugCallbackContext context(single_step_control, line_number, code_item); |
David Srbecky | b06e28e | 2015-12-10 13:15:00 +0000 | [diff] [blame] | 3855 | m->GetDexFile()->DecodeDebugPositionInfo(code_item, DebugCallbackContext::Callback, &context); |
Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 3856 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3857 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3858 | // Activate single-step in the thread. |
| 3859 | thread->ActivateSingleStepControl(single_step_control); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3860 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3861 | if (VLOG_IS_ON(jdwp)) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3862 | VLOG(jdwp) << "Single-step thread: " << *thread; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3863 | VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize(); |
| 3864 | VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 3865 | VLOG(jdwp) << "Single-step current method: " |
| 3866 | << ArtMethod::PrettyMethod(single_step_control->GetMethod()); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3867 | VLOG(jdwp) << "Single-step current line: " << line_number; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3868 | VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth(); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3869 | VLOG(jdwp) << "Single-step dex_pc values:"; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3870 | for (uint32_t dex_pc : single_step_control->GetDexPcs()) { |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3871 | VLOG(jdwp) << StringPrintf(" %#x", dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3872 | } |
| 3873 | } |
| 3874 | |
| 3875 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3876 | } |
| 3877 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3878 | void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) { |
| 3879 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3880 | JDWP::JdwpError error; |
| 3881 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Sebastien Hertz | 87118ed | 2013-11-26 17:57:18 +0100 | [diff] [blame] | 3882 | if (error == JDWP::ERR_NONE) { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3883 | thread->DeactivateSingleStepControl(); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3884 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3885 | } |
| 3886 | |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3887 | static char JdwpTagToShortyChar(JDWP::JdwpTag tag) { |
| 3888 | switch (tag) { |
| 3889 | default: |
| 3890 | LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3891 | UNREACHABLE(); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3892 | |
| 3893 | // Primitives. |
| 3894 | case JDWP::JT_BYTE: return 'B'; |
| 3895 | case JDWP::JT_CHAR: return 'C'; |
| 3896 | case JDWP::JT_FLOAT: return 'F'; |
| 3897 | case JDWP::JT_DOUBLE: return 'D'; |
| 3898 | case JDWP::JT_INT: return 'I'; |
| 3899 | case JDWP::JT_LONG: return 'J'; |
| 3900 | case JDWP::JT_SHORT: return 'S'; |
| 3901 | case JDWP::JT_VOID: return 'V'; |
| 3902 | case JDWP::JT_BOOLEAN: return 'Z'; |
| 3903 | |
| 3904 | // Reference types. |
| 3905 | case JDWP::JT_ARRAY: |
| 3906 | case JDWP::JT_OBJECT: |
| 3907 | case JDWP::JT_STRING: |
| 3908 | case JDWP::JT_THREAD: |
| 3909 | case JDWP::JT_THREAD_GROUP: |
| 3910 | case JDWP::JT_CLASS_LOADER: |
| 3911 | case JDWP::JT_CLASS_OBJECT: |
| 3912 | return 'L'; |
| 3913 | } |
| 3914 | } |
| 3915 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3916 | JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, |
| 3917 | JDWP::ObjectId object_id, JDWP::RefTypeId class_id, |
| 3918 | JDWP::MethodId method_id, uint32_t arg_count, |
| 3919 | uint64_t arg_values[], JDWP::JdwpTag* arg_types, |
| 3920 | uint32_t options) { |
| 3921 | Thread* const self = Thread::Current(); |
| 3922 | CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread"; |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3923 | const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3924 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3925 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3926 | Thread* targetThread = nullptr; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3927 | { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3928 | ScopedObjectAccessUnchecked soa(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3929 | JDWP::JdwpError error; |
| 3930 | targetThread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 3931 | if (error != JDWP::ERR_NONE) { |
| 3932 | LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id; |
| 3933 | return error; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3934 | } |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3935 | if (targetThread->GetInvokeReq() != nullptr) { |
| 3936 | // Thread is already invoking a method on behalf of the debugger. |
| 3937 | LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread; |
| 3938 | return JDWP::ERR_ALREADY_INVOKING; |
| 3939 | } |
| 3940 | if (!targetThread->IsReadyForDebugInvoke()) { |
| 3941 | // 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] | 3942 | LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread; |
| 3943 | return JDWP::ERR_INVALID_THREAD; |
| 3944 | } |
| 3945 | |
| 3946 | /* |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3947 | * According to the JDWP specs, we are expected to resume all threads (or only the |
| 3948 | * target thread) once. So if a thread has been suspended more than once (either by |
| 3949 | * the debugger for an event or by the runtime for GC), it will remain suspended before |
| 3950 | * the invoke is executed. This means the debugger is responsible to properly resume all |
| 3951 | * 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] | 3952 | * |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3953 | * However, for compatibility reason with older versions of debuggers (like Eclipse), we |
| 3954 | * fully resume all threads (by canceling *all* debugger suspensions) when the debugger |
| 3955 | * wants us to resume all threads. This is to avoid ending up in deadlock situation. |
| 3956 | * |
| 3957 | * On the other hand, if we are asked to only resume the target thread, then we follow the |
| 3958 | * JDWP specs by resuming that thread only once. This means the thread will remain suspended |
| 3959 | * if it has been suspended more than once before the invoke (and again, this is the |
| 3960 | * 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] | 3961 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3962 | int suspend_count; |
| 3963 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3964 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3965 | suspend_count = targetThread->GetSuspendCount(); |
| 3966 | } |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3967 | if (suspend_count > 1 && resume_all_threads) { |
| 3968 | // The target thread will remain suspended even after we resume it. Let's emit a warning |
| 3969 | // to indicate the invoke won't be executed until the thread is resumed. |
| 3970 | LOG(WARNING) << *targetThread << " suspended more than once (suspend count == " |
| 3971 | << suspend_count << "). This thread will invoke the method only once " |
| 3972 | << "it is fully resumed."; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3973 | } |
| 3974 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3975 | mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 3976 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3977 | return JDWP::ERR_INVALID_OBJECT; |
| 3978 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3979 | |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3980 | gRegistry->Get<mirror::Object*>(thread_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3981 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3982 | return JDWP::ERR_INVALID_OBJECT; |
| 3983 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3984 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3985 | mirror::Class* c = DecodeClass(class_id, &error); |
| 3986 | if (c == nullptr) { |
| 3987 | return error; |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3988 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3989 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3990 | ArtMethod* m = FromMethodId(method_id); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3991 | if (m->IsStatic() != (receiver == nullptr)) { |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3992 | return JDWP::ERR_INVALID_METHODID; |
| 3993 | } |
| 3994 | if (m->IsStatic()) { |
| 3995 | if (m->GetDeclaringClass() != c) { |
| 3996 | return JDWP::ERR_INVALID_METHODID; |
| 3997 | } |
| 3998 | } else { |
| 3999 | if (!m->GetDeclaringClass()->IsAssignableFrom(c)) { |
| 4000 | return JDWP::ERR_INVALID_METHODID; |
| 4001 | } |
| 4002 | } |
| 4003 | |
| 4004 | // Check the argument list matches the method. |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4005 | uint32_t shorty_len = 0; |
| 4006 | const char* shorty = m->GetShorty(&shorty_len); |
| 4007 | if (shorty_len - 1 != arg_count) { |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4008 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4009 | } |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4010 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4011 | { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4012 | StackHandleScope<2> hs(soa.Self()); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4013 | HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver)); |
| 4014 | HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c)); |
| 4015 | const DexFile::TypeList* types = m->GetParameterTypeList(); |
| 4016 | for (size_t i = 0; i < arg_count; ++i) { |
| 4017 | if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) { |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4018 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4019 | } |
| 4020 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4021 | if (shorty[i + 1] == 'L') { |
| 4022 | // Did we really get an argument of an appropriate reference type? |
Vladimir Marko | b45528c | 2017-07-27 14:14:28 +0100 | [diff] [blame] | 4023 | ObjPtr<mirror::Class> parameter_type = |
| 4024 | m->ResolveClassFromTypeIndex(types->GetTypeItem(i).type_idx_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4025 | mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error); |
| 4026 | if (error != JDWP::ERR_NONE) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4027 | return JDWP::ERR_INVALID_OBJECT; |
| 4028 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4029 | if (argument != nullptr && !argument->InstanceOf(parameter_type)) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4030 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 4031 | } |
| 4032 | |
| 4033 | // Turn the on-the-wire ObjectId into a jobject. |
| 4034 | jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]); |
| 4035 | v.l = gRegistry->GetJObject(arg_values[i]); |
| 4036 | } |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 4037 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4038 | } |
| 4039 | |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4040 | // Allocates a DebugInvokeReq. |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4041 | DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m, |
| 4042 | options, arg_values, arg_count); |
| 4043 | if (req == nullptr) { |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4044 | LOG(ERROR) << "Failed to allocate DebugInvokeReq"; |
| 4045 | return JDWP::ERR_OUT_OF_MEMORY; |
| 4046 | } |
| 4047 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4048 | // Attaches the DebugInvokeReq to the target thread so it executes the method when |
| 4049 | // it is resumed. Once the invocation completes, the target thread will delete it before |
| 4050 | // suspending itself (see ThreadList::SuspendSelfForDebugger). |
| 4051 | targetThread->SetDebugInvokeReq(req); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4052 | } |
| 4053 | |
| 4054 | // 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] | 4055 | // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions |
| 4056 | // call. |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 4057 | if (resume_all_threads) { |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4058 | VLOG(jdwp) << " Resuming all threads"; |
| 4059 | thread_list->UndoDebuggerSuspensions(); |
| 4060 | } else { |
| 4061 | VLOG(jdwp) << " Resuming event thread only"; |
Alex Light | 88fd720 | 2017-06-30 08:31:59 -0700 | [diff] [blame] | 4062 | bool resumed = thread_list->Resume(targetThread, SuspendReason::kForDebugger); |
| 4063 | DCHECK(resumed); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4064 | } |
| 4065 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4066 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4067 | } |
| 4068 | |
| 4069 | void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4070 | Thread* const self = Thread::Current(); |
| 4071 | CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread"; |
| 4072 | |
| 4073 | ScopedObjectAccess soa(self); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4074 | |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4075 | // We can be called while an exception is pending. We need |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4076 | // to preserve that across the method invocation. |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4077 | StackHandleScope<1> hs(soa.Self()); |
| 4078 | Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException()); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4079 | soa.Self()->ClearException(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4080 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4081 | // Execute the method then sends reply to the debugger. |
| 4082 | ExecuteMethodWithoutPendingException(soa, pReq); |
| 4083 | |
| 4084 | // If an exception was pending before the invoke, restore it now. |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 4085 | if (old_exception != nullptr) { |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4086 | soa.Self()->SetException(old_exception.Get()); |
| 4087 | } |
| 4088 | } |
| 4089 | |
| 4090 | // Helper function: write a variable-width value into the output input buffer. |
| 4091 | static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) { |
| 4092 | switch (width) { |
| 4093 | case 1: |
| 4094 | expandBufAdd1(pReply, value); |
| 4095 | break; |
| 4096 | case 2: |
| 4097 | expandBufAdd2BE(pReply, value); |
| 4098 | break; |
| 4099 | case 4: |
| 4100 | expandBufAdd4BE(pReply, value); |
| 4101 | break; |
| 4102 | case 8: |
| 4103 | expandBufAdd8BE(pReply, value); |
| 4104 | break; |
| 4105 | default: |
| 4106 | LOG(FATAL) << width; |
| 4107 | UNREACHABLE(); |
| 4108 | } |
| 4109 | } |
| 4110 | |
| 4111 | void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) { |
| 4112 | soa.Self()->AssertNoPendingException(); |
| 4113 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4114 | // 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] | 4115 | ArtMethod* m = pReq->method; |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 4116 | PointerSize image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4117 | if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4118 | ArtMethod* actual_method = |
| 4119 | pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size); |
| 4120 | if (actual_method != m) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4121 | VLOG(jdwp) << "ExecuteMethod translated " << ArtMethod::PrettyMethod(m) |
| 4122 | << " to " << ArtMethod::PrettyMethod(actual_method); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4123 | m = actual_method; |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4124 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4125 | } |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4126 | VLOG(jdwp) << "ExecuteMethod " << ArtMethod::PrettyMethod(m) |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4127 | << " receiver=" << pReq->receiver.Read() |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 4128 | << " arg_count=" << pReq->arg_count; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4129 | CHECK(m != nullptr); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4130 | |
Roland Levillain | 33d6903 | 2015-06-18 18:20:59 +0100 | [diff] [blame] | 4131 | 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] | 4132 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4133 | // Invoke the method. |
Jeff Hao | 39b6c24 | 2015-05-19 20:30:23 -0700 | [diff] [blame] | 4134 | ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read())); |
Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 4135 | JValue result = InvokeWithJValues(soa, ref.get(), jni::EncodeArtMethod(m), |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4136 | reinterpret_cast<jvalue*>(pReq->arg_values.get())); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4137 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4138 | // Prepare JDWP ids for the reply. |
| 4139 | JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty()); |
| 4140 | const bool is_object_result = (result_tag == JDWP::JT_OBJECT); |
Jeff Hao | 064d24e | 2016-08-25 03:52:40 +0000 | [diff] [blame] | 4141 | StackHandleScope<3> hs(soa.Self()); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4142 | Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr); |
| 4143 | Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException()); |
| 4144 | soa.Self()->ClearException(); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4145 | |
| 4146 | if (!IsDebuggerActive()) { |
| 4147 | // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply |
| 4148 | // because it won't be sent either. |
| 4149 | return; |
| 4150 | } |
| 4151 | |
| 4152 | JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception); |
| 4153 | uint64_t result_value = 0; |
| 4154 | if (exceptionObjectId != 0) { |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4155 | VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get() |
| 4156 | << " " << exception->Dump(); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4157 | result_value = 0; |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4158 | } else if (is_object_result) { |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4159 | /* if no exception was thrown, examine object result more closely */ |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4160 | JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get()); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4161 | if (new_tag != result_tag) { |
| 4162 | VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; |
| 4163 | result_tag = new_tag; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4164 | } |
| 4165 | |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4166 | // Register the object in the registry and reference its ObjectId. This ensures |
| 4167 | // 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] | 4168 | result_value = gRegistry->Add(object_result.Get()); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4169 | } else { |
| 4170 | // Primitive result. |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4171 | DCHECK(IsPrimitiveTag(result_tag)); |
| 4172 | result_value = result.GetJ(); |
| 4173 | } |
| 4174 | const bool is_constructor = m->IsConstructor() && !m->IsStatic(); |
| 4175 | if (is_constructor) { |
| 4176 | // If we invoked a constructor (which actually returns void), return the receiver, |
| 4177 | // unless we threw, in which case we return null. |
Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4178 | DCHECK_EQ(JDWP::JT_VOID, result_tag); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4179 | if (exceptionObjectId == 0) { |
Jeff Hao | 064d24e | 2016-08-25 03:52:40 +0000 | [diff] [blame] | 4180 | if (m->GetDeclaringClass()->IsStringClass()) { |
| 4181 | // For string constructors, the new string is remapped to the receiver (stored in ref). |
| 4182 | Handle<mirror::Object> decoded_ref = hs.NewHandle(soa.Self()->DecodeJObject(ref.get())); |
| 4183 | result_value = gRegistry->Add(decoded_ref); |
| 4184 | result_tag = TagFromObject(soa, decoded_ref.Get()); |
| 4185 | } else { |
| 4186 | // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the |
| 4187 | // object registry. |
| 4188 | result_value = GetObjectRegistry()->Add(pReq->receiver.Read()); |
| 4189 | result_tag = TagFromObject(soa, pReq->receiver.Read()); |
| 4190 | } |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4191 | } else { |
| 4192 | result_value = 0; |
Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4193 | result_tag = JDWP::JT_OBJECT; |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4194 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4195 | } |
| 4196 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4197 | // Suspend other threads if the invoke is not single-threaded. |
| 4198 | if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4199 | ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension); |
Hiroshi Yamauchi | 8f95cf3 | 2016-04-19 11:14:06 -0700 | [diff] [blame] | 4200 | // Avoid a deadlock between GC and debugger where GC gets suspended during GC. b/25800335. |
| 4201 | gc::ScopedGCCriticalSection gcs(soa.Self(), gc::kGcCauseDebugger, gc::kCollectorTypeDebugger); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4202 | VLOG(jdwp) << " Suspending all threads"; |
| 4203 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4204 | } |
| 4205 | |
| 4206 | VLOG(jdwp) << " --> returned " << result_tag |
| 4207 | << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value, |
| 4208 | exceptionObjectId); |
| 4209 | |
| 4210 | // Show detailed debug output. |
| 4211 | if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) { |
| 4212 | if (result_value != 0) { |
| 4213 | if (VLOG_IS_ON(jdwp)) { |
| 4214 | std::string result_string; |
| 4215 | JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string); |
| 4216 | CHECK_EQ(error, JDWP::ERR_NONE); |
| 4217 | VLOG(jdwp) << " string '" << result_string << "'"; |
| 4218 | } |
| 4219 | } else { |
| 4220 | VLOG(jdwp) << " string (null)"; |
| 4221 | } |
| 4222 | } |
| 4223 | |
| 4224 | // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread |
| 4225 | // is ready to suspend. |
| 4226 | BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId); |
| 4227 | } |
| 4228 | |
| 4229 | void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag, |
| 4230 | uint64_t result_value, JDWP::ObjectId exception) { |
| 4231 | // Make room for the JDWP header since we do not know the size of the reply yet. |
| 4232 | JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen); |
| 4233 | |
| 4234 | size_t width = GetTagWidth(result_tag); |
| 4235 | JDWP::expandBufAdd1(pReply, result_tag); |
| 4236 | if (width != 0) { |
| 4237 | WriteValue(pReply, width, result_value); |
| 4238 | } |
| 4239 | JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT); |
| 4240 | JDWP::expandBufAddObjectId(pReply, exception); |
| 4241 | |
| 4242 | // Now we know the size, we can complete the JDWP header. |
| 4243 | uint8_t* buf = expandBufGetBuffer(pReply); |
| 4244 | JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply)); |
| 4245 | JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id); |
| 4246 | JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags |
| 4247 | JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE); |
| 4248 | } |
| 4249 | |
| 4250 | void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) { |
| 4251 | CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread"; |
| 4252 | |
| 4253 | JDWP::ExpandBuf* const pReply = pReq->reply; |
| 4254 | CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq"; |
| 4255 | |
| 4256 | // We need to prevent other threads (including JDWP thread) from interacting with the debugger |
| 4257 | // while we send the reply but are not yet suspended. The JDWP token will be released just before |
| 4258 | // we suspend ourself again (see ThreadList::SuspendSelfForDebugger). |
| 4259 | gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id); |
| 4260 | |
| 4261 | // Send the reply unless the debugger detached before the completion of the method. |
| 4262 | if (IsDebuggerActive()) { |
| 4263 | const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen; |
| 4264 | VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)", |
| 4265 | pReq->request_id, replyDataLength); |
| 4266 | |
| 4267 | gJdwpState->SendRequest(pReply); |
| 4268 | } else { |
| 4269 | VLOG(jdwp) << "Not sending invoke reply because debugger detached"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4270 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4271 | } |
| 4272 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4273 | /* |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4274 | * "request" contains a full JDWP packet, possibly with multiple chunks. We |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4275 | * need to process each, accumulate the replies, and ship the whole thing |
| 4276 | * back. |
| 4277 | * |
| 4278 | * Returns "true" if we have a reply. The reply buffer is newly allocated, |
| 4279 | * and includes the chunk type/length, followed by the data. |
| 4280 | * |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 4281 | * OLD-TODO: we currently assume that the request and reply include a single |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4282 | * chunk. If this becomes inconvenient we will need to adapt. |
| 4283 | */ |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4284 | bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4285 | Thread* self = Thread::Current(); |
| 4286 | JNIEnv* env = self->GetJniEnv(); |
| 4287 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4288 | uint32_t type = request->ReadUnsigned32("type"); |
| 4289 | uint32_t length = request->ReadUnsigned32("length"); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4290 | |
| 4291 | // Create a byte[] corresponding to 'request'. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4292 | size_t request_length = request->size(); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4293 | ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4294 | if (dataArray.get() == nullptr) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4295 | LOG(WARNING) << "byte[] allocation failed: " << request_length; |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4296 | env->ExceptionClear(); |
| 4297 | return false; |
| 4298 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4299 | env->SetByteArrayRegion(dataArray.get(), 0, request_length, |
| 4300 | reinterpret_cast<const jbyte*>(request->data())); |
| 4301 | request->Skip(request_length); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4302 | |
| 4303 | // Run through and find all chunks. [Currently just find the first.] |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4304 | ScopedByteArrayRO contents(env, dataArray.get()); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4305 | if (length != request_length) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 4306 | 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] | 4307 | return false; |
| 4308 | } |
| 4309 | |
| 4310 | // Call "private static Chunk dispatch(int type, byte[] data, int offset, int length)". |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4311 | ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4312 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch, |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4313 | type, dataArray.get(), 0, length)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4314 | if (env->ExceptionCheck()) { |
| 4315 | LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type); |
| 4316 | env->ExceptionDescribe(); |
| 4317 | env->ExceptionClear(); |
| 4318 | return false; |
| 4319 | } |
| 4320 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4321 | if (chunk.get() == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4322 | return false; |
| 4323 | } |
| 4324 | |
| 4325 | /* |
| 4326 | * Pull the pieces out of the chunk. We copy the results into a |
| 4327 | * newly-allocated buffer that the caller can free. We don't want to |
| 4328 | * continue using the Chunk object because nothing has a reference to it. |
| 4329 | * |
| 4330 | * We could avoid this by returning type/data/offset/length and having |
| 4331 | * the caller be aware of the object lifetime issues, but that |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4332 | * 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] | 4333 | * if we have responses for multiple chunks. |
| 4334 | * |
| 4335 | * So we're pretty much stuck with copying data around multiple times. |
| 4336 | */ |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4337 | ScopedLocalRef<jbyteArray> replyData(env, reinterpret_cast<jbyteArray>(env->GetObjectField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data))); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4338 | jint offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset); |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4339 | length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length); |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4340 | type = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_type); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4341 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4342 | VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4343 | if (length == 0 || replyData.get() == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4344 | return false; |
| 4345 | } |
| 4346 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4347 | const int kChunkHdrLen = 8; |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4348 | uint8_t* reply = new uint8_t[length + kChunkHdrLen]; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4349 | if (reply == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4350 | LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen); |
| 4351 | return false; |
| 4352 | } |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 4353 | JDWP::Set4BE(reply + 0, type); |
| 4354 | JDWP::Set4BE(reply + 4, length); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4355 | env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4356 | |
| 4357 | *pReplyBuf = reply; |
| 4358 | *pReplyLen = length + kChunkHdrLen; |
| 4359 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4360 | VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s %p len=%d", reinterpret_cast<char*>(reply), reply, length); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4361 | return true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4362 | } |
| 4363 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4364 | void Dbg::DdmBroadcast(bool connect) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4365 | VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4366 | |
| 4367 | Thread* self = Thread::Current(); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4368 | if (self->GetState() != kRunnable) { |
| 4369 | LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); |
| 4370 | /* try anyway? */ |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4371 | } |
| 4372 | |
| 4373 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4374 | jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4375 | env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4376 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast, |
| 4377 | event); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4378 | if (env->ExceptionCheck()) { |
| 4379 | LOG(ERROR) << "DdmServer.broadcast " << event << " failed"; |
| 4380 | env->ExceptionDescribe(); |
| 4381 | env->ExceptionClear(); |
| 4382 | } |
| 4383 | } |
| 4384 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4385 | void Dbg::DdmConnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4386 | Dbg::DdmBroadcast(true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4387 | } |
| 4388 | |
| 4389 | void Dbg::DdmDisconnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4390 | Dbg::DdmBroadcast(false); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4391 | gDdmThreadNotification = false; |
| 4392 | } |
| 4393 | |
| 4394 | /* |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4395 | * Send a notification when a thread starts, stops, or changes its name. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4396 | * |
| 4397 | * Because we broadcast the full set of threads when the notifications are |
| 4398 | * first enabled, it's possible for "thread" to be actively executing. |
| 4399 | */ |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4400 | void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4401 | if (!gDdmThreadNotification) { |
| 4402 | return; |
| 4403 | } |
| 4404 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4405 | if (type == CHUNK_TYPE("THDE")) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4406 | uint8_t buf[4]; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4407 | JDWP::Set4BE(&buf[0], t->GetThreadId()); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4408 | Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf); |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4409 | } else { |
| 4410 | CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4411 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 4412 | StackHandleScope<1> hs(soa.Self()); |
Andreas Gampe | 08883de | 2016-11-08 13:20:52 -0800 | [diff] [blame] | 4413 | Handle<mirror::String> name(hs.NewHandle(t->GetThreadName())); |
Andreas Gampe | fa4333d | 2017-02-14 11:10:34 -0800 | [diff] [blame] | 4414 | size_t char_count = (name != nullptr) ? name->GetLength() : 0; |
| 4415 | const jchar* chars = (name != nullptr) ? name->GetValue() : nullptr; |
| 4416 | bool is_compressed = (name != nullptr) ? name->IsCompressed() : false; |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4417 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4418 | std::vector<uint8_t> bytes; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4419 | JDWP::Append4BE(bytes, t->GetThreadId()); |
jessicahandojo | 3aaa37b | 2016-07-29 14:46:37 -0700 | [diff] [blame] | 4420 | if (is_compressed) { |
| 4421 | const uint8_t* chars_compressed = name->GetValueCompressed(); |
| 4422 | JDWP::AppendUtf16CompressedBE(bytes, chars_compressed, char_count); |
| 4423 | } else { |
| 4424 | JDWP::AppendUtf16BE(bytes, chars, char_count); |
| 4425 | } |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4426 | CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2); |
| 4427 | Dbg::DdmSendChunk(type, bytes); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4428 | } |
| 4429 | } |
| 4430 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4431 | void Dbg::DdmSetThreadNotification(bool enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4432 | // Enable/disable thread notifications. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4433 | gDdmThreadNotification = enable; |
| 4434 | if (enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4435 | // Suspend the VM then post thread start notifications for all threads. Threads attaching will |
| 4436 | // see a suspension in progress and block until that ends. They then post their own start |
| 4437 | // notification. |
| 4438 | SuspendVM(); |
| 4439 | std::list<Thread*> threads; |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4440 | Thread* self = Thread::Current(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4441 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4442 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4443 | threads = Runtime::Current()->GetThreadList()->GetList(); |
| 4444 | } |
| 4445 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4446 | ScopedObjectAccess soa(self); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4447 | for (Thread* thread : threads) { |
| 4448 | Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR")); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4449 | } |
| 4450 | } |
| 4451 | ResumeVM(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4452 | } |
| 4453 | } |
| 4454 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4455 | void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 4456 | if (IsDebuggerActive()) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 4457 | gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4458 | } |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4459 | Dbg::DdmSendThreadNotification(t, type); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4460 | } |
| 4461 | |
| 4462 | void Dbg::PostThreadStart(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4463 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4464 | } |
| 4465 | |
| 4466 | void Dbg::PostThreadDeath(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4467 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE")); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4468 | } |
| 4469 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4470 | void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4471 | CHECK(buf != nullptr); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4472 | iovec vec[1]; |
| 4473 | vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf)); |
| 4474 | vec[0].iov_len = byte_count; |
| 4475 | Dbg::DdmSendChunkV(type, vec, 1); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4476 | } |
| 4477 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4478 | void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) { |
| 4479 | DdmSendChunk(type, bytes.size(), &bytes[0]); |
| 4480 | } |
| 4481 | |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 4482 | void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4483 | if (gJdwpState == nullptr) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4484 | VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4485 | } else { |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 4486 | gJdwpState->DdmSendChunkV(type, iov, iov_count); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4487 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4488 | } |
| 4489 | |
Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 4490 | JDWP::JdwpState* Dbg::GetJdwpState() { |
| 4491 | return gJdwpState; |
| 4492 | } |
| 4493 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4494 | int Dbg::DdmHandleHpifChunk(HpifWhen when) { |
| 4495 | if (when == HPIF_WHEN_NOW) { |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4496 | DdmSendHeapInfo(when); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4497 | return true; |
| 4498 | } |
| 4499 | |
| 4500 | if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) { |
| 4501 | LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when); |
| 4502 | return false; |
| 4503 | } |
| 4504 | |
| 4505 | gDdmHpifWhen = when; |
| 4506 | return true; |
| 4507 | } |
| 4508 | |
| 4509 | bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { |
| 4510 | if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) { |
| 4511 | LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when); |
| 4512 | return false; |
| 4513 | } |
| 4514 | |
| 4515 | if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { |
| 4516 | LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); |
| 4517 | return false; |
| 4518 | } |
| 4519 | |
| 4520 | if (native) { |
| 4521 | gDdmNhsgWhen = when; |
| 4522 | gDdmNhsgWhat = what; |
| 4523 | } else { |
| 4524 | gDdmHpsgWhen = when; |
| 4525 | gDdmHpsgWhat = what; |
| 4526 | } |
| 4527 | return true; |
| 4528 | } |
| 4529 | |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4530 | void Dbg::DdmSendHeapInfo(HpifWhen reason) { |
| 4531 | // If there's a one-shot 'when', reset it. |
| 4532 | if (reason == gDdmHpifWhen) { |
| 4533 | if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) { |
| 4534 | gDdmHpifWhen = HPIF_WHEN_NEVER; |
| 4535 | } |
| 4536 | } |
| 4537 | |
| 4538 | /* |
| 4539 | * Chunk HPIF (client --> server) |
| 4540 | * |
| 4541 | * Heap Info. General information about the heap, |
| 4542 | * suitable for a summary display. |
| 4543 | * |
| 4544 | * [u4]: number of heaps |
| 4545 | * |
| 4546 | * For each heap: |
| 4547 | * [u4]: heap ID |
| 4548 | * [u8]: timestamp in ms since Unix epoch |
| 4549 | * [u1]: capture reason (same as 'when' value from server) |
| 4550 | * [u4]: max heap size in bytes (-Xmx) |
| 4551 | * [u4]: current heap size in bytes |
| 4552 | * [u4]: current number of bytes allocated |
| 4553 | * [u4]: current number of objects allocated |
| 4554 | */ |
| 4555 | uint8_t heap_count = 1; |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4556 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4557 | std::vector<uint8_t> bytes; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4558 | JDWP::Append4BE(bytes, heap_count); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4559 | JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap). |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4560 | JDWP::Append8BE(bytes, MilliTime()); |
| 4561 | JDWP::Append1BE(bytes, reason); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4562 | JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes. |
| 4563 | JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 4564 | JDWP::Append4BE(bytes, heap->GetBytesAllocated()); |
| 4565 | JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4566 | CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4))); |
| 4567 | Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4568 | } |
| 4569 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4570 | enum HpsgSolidity { |
| 4571 | SOLIDITY_FREE = 0, |
| 4572 | SOLIDITY_HARD = 1, |
| 4573 | SOLIDITY_SOFT = 2, |
| 4574 | SOLIDITY_WEAK = 3, |
| 4575 | SOLIDITY_PHANTOM = 4, |
| 4576 | SOLIDITY_FINALIZABLE = 5, |
| 4577 | SOLIDITY_SWEEP = 6, |
| 4578 | }; |
| 4579 | |
| 4580 | enum HpsgKind { |
| 4581 | KIND_OBJECT = 0, |
| 4582 | KIND_CLASS_OBJECT = 1, |
| 4583 | KIND_ARRAY_1 = 2, |
| 4584 | KIND_ARRAY_2 = 3, |
| 4585 | KIND_ARRAY_4 = 4, |
| 4586 | KIND_ARRAY_8 = 5, |
| 4587 | KIND_UNKNOWN = 6, |
| 4588 | KIND_NATIVE = 7, |
| 4589 | }; |
| 4590 | |
| 4591 | #define HPSG_PARTIAL (1<<7) |
| 4592 | #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7))) |
| 4593 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4594 | class HeapChunkContext { |
| 4595 | public: |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4596 | // Maximum chunk size. Obtain this from the formula: |
| 4597 | // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2 |
| 4598 | HeapChunkContext(bool merge, bool native) |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4599 | : buf_(16384 - 16), |
| 4600 | type_(0), |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4601 | chunk_overhead_(0) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4602 | Reset(); |
| 4603 | if (native) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4604 | type_ = CHUNK_TYPE("NHSG"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4605 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4606 | type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4607 | } |
| 4608 | } |
| 4609 | |
| 4610 | ~HeapChunkContext() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4611 | if (p_ > &buf_[0]) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4612 | Flush(); |
| 4613 | } |
| 4614 | } |
| 4615 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4616 | void SetChunkOverhead(size_t chunk_overhead) { |
| 4617 | chunk_overhead_ = chunk_overhead; |
| 4618 | } |
| 4619 | |
| 4620 | void ResetStartOfNextChunk() { |
| 4621 | startOfNextMemoryChunk_ = nullptr; |
| 4622 | } |
| 4623 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4624 | void EnsureHeader(const void* chunk_ptr) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4625 | if (!needHeader_) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4626 | return; |
| 4627 | } |
| 4628 | |
| 4629 | // Start a new HPSx chunk. |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4630 | JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). |
| 4631 | JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4632 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4633 | JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. |
| 4634 | 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] | 4635 | // [u4]: length of piece, in allocation units |
| 4636 | // 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] | 4637 | pieceLenField_ = p_; |
| 4638 | JDWP::Write4BE(&p_, 0x55555555); |
| 4639 | needHeader_ = false; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4640 | } |
| 4641 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4642 | void Flush() REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4643 | if (pieceLenField_ == nullptr) { |
Ian Rogers | d636b06 | 2013-01-18 17:51:18 -0800 | [diff] [blame] | 4644 | // Flush immediately post Reset (maybe back-to-back Flush). Ignore. |
| 4645 | CHECK(needHeader_); |
| 4646 | return; |
| 4647 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4648 | // Patch the "length of piece" field. |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4649 | CHECK_LE(&buf_[0], pieceLenField_); |
| 4650 | CHECK_LE(pieceLenField_, p_); |
| 4651 | JDWP::Set4BE(pieceLenField_, totalAllocationUnits_); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4652 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4653 | Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4654 | Reset(); |
| 4655 | } |
| 4656 | |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4657 | 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] | 4658 | REQUIRES_SHARED(Locks::heap_bitmap_lock_, |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4659 | Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4660 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes); |
| 4661 | } |
| 4662 | |
| 4663 | 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] | 4664 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4665 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4666 | } |
| 4667 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4668 | private: |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4669 | enum { ALLOCATION_UNIT_SIZE = 8 }; |
| 4670 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4671 | void Reset() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4672 | p_ = &buf_[0]; |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4673 | ResetStartOfNextChunk(); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4674 | totalAllocationUnits_ = 0; |
| 4675 | needHeader_ = true; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4676 | pieceLenField_ = nullptr; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4677 | } |
| 4678 | |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4679 | bool IsNative() const { |
| 4680 | return type_ == CHUNK_TYPE("NHSG"); |
| 4681 | } |
| 4682 | |
| 4683 | // Returns true if the object is not an empty chunk. |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4684 | 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] | 4685 | // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken |
| 4686 | // 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] | 4687 | if (used_bytes == 0) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4688 | if (start == nullptr) { |
| 4689 | // Reset for start of new heap. |
| 4690 | startOfNextMemoryChunk_ = nullptr; |
| 4691 | Flush(); |
| 4692 | } |
| 4693 | // Only process in use memory so that free region information |
| 4694 | // also includes dlmalloc book keeping. |
| 4695 | return false; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4696 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4697 | if (startOfNextMemoryChunk_ != nullptr) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4698 | // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because |
| 4699 | // of the use of mmaps, so don't report. If not free memory then start a new segment. |
| 4700 | bool flush = true; |
| 4701 | if (start > startOfNextMemoryChunk_) { |
| 4702 | const size_t kMaxFreeLen = 2 * kPageSize; |
| 4703 | void* free_start = startOfNextMemoryChunk_; |
| 4704 | void* free_end = start; |
| 4705 | const size_t free_len = |
| 4706 | reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start); |
| 4707 | if (!IsNative() || free_len < kMaxFreeLen) { |
| 4708 | AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative()); |
| 4709 | flush = false; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4710 | } |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4711 | } |
| 4712 | if (flush) { |
| 4713 | startOfNextMemoryChunk_ = nullptr; |
| 4714 | Flush(); |
| 4715 | } |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4716 | } |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4717 | return true; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4718 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4719 | |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4720 | void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4721 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4722 | if (ProcessRecord(start, used_bytes)) { |
| 4723 | uint8_t state = ExamineNativeObject(start); |
| 4724 | AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/); |
| 4725 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4726 | } |
| 4727 | } |
| 4728 | |
| 4729 | void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4730 | REQUIRES_SHARED(Locks::heap_bitmap_lock_, Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4731 | if (ProcessRecord(start, used_bytes)) { |
| 4732 | // Determine the type of this chunk. |
| 4733 | // OLD-TODO: if context.merge, see if this chunk is different from the last chunk. |
| 4734 | // If it's the same, we should combine them. |
| 4735 | uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start)); |
| 4736 | AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/); |
| 4737 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4738 | } |
| 4739 | } |
| 4740 | |
| 4741 | 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] | 4742 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4743 | // Make sure there's enough room left in the buffer. |
| 4744 | // We need to use two bytes for every fractional 256 allocation units used by the chunk plus |
| 4745 | // 17 bytes for any header. |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4746 | const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17; |
| 4747 | size_t byte_left = &buf_.back() - p_; |
| 4748 | if (byte_left < needed) { |
| 4749 | if (is_native) { |
Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4750 | // Cannot trigger memory allocation while walking native heap. |
Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4751 | return; |
| 4752 | } |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4753 | Flush(); |
| 4754 | } |
| 4755 | |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4756 | byte_left = &buf_.back() - p_; |
| 4757 | if (byte_left < needed) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4758 | LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", " |
| 4759 | << needed << " bytes)"; |
| 4760 | return; |
| 4761 | } |
| 4762 | EnsureHeader(ptr); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4763 | // Write out the chunk description. |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4764 | length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units. |
| 4765 | totalAllocationUnits_ += length; |
| 4766 | while (length > 256) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4767 | *p_++ = state | HPSG_PARTIAL; |
| 4768 | *p_++ = 255; // length - 1 |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4769 | length -= 256; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4770 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4771 | *p_++ = state; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4772 | *p_++ = length - 1; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4773 | } |
| 4774 | |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4775 | uint8_t ExamineNativeObject(const void* p) REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4776 | return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4777 | } |
| 4778 | |
| 4779 | uint8_t ExamineJavaObject(mirror::Object* o) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 4780 | REQUIRES_SHARED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4781 | if (o == nullptr) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4782 | return HPSG_STATE(SOLIDITY_FREE, 0); |
| 4783 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4784 | // It's an allocated chunk. Figure out what it is. |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4785 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 4786 | if (!heap->IsLiveObjectLocked(o)) { |
| 4787 | LOG(ERROR) << "Invalid object in managed heap: " << o; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4788 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4789 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 4790 | mirror::Class* c = o->GetClass(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4791 | if (c == nullptr) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4792 | // The object was probably just created but hasn't been initialized yet. |
| 4793 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4794 | } |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4795 | if (!heap->IsValidObjectAddress(c)) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4796 | LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4797 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4798 | } |
Mathieu Chartier | f26e1b3 | 2015-01-29 10:47:10 -0800 | [diff] [blame] | 4799 | if (c->GetClass() == nullptr) { |
| 4800 | LOG(ERROR) << "Null class of class " << c << " for object " << o; |
| 4801 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4802 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4803 | if (c->IsClassClass()) { |
| 4804 | return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT); |
| 4805 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4806 | if (c->IsArrayClass()) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4807 | switch (c->GetComponentSize()) { |
| 4808 | case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1); |
| 4809 | case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2); |
| 4810 | case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4811 | case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8); |
| 4812 | } |
| 4813 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4814 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4815 | } |
| 4816 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4817 | std::vector<uint8_t> buf_; |
| 4818 | uint8_t* p_; |
| 4819 | uint8_t* pieceLenField_; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4820 | void* startOfNextMemoryChunk_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4821 | size_t totalAllocationUnits_; |
| 4822 | uint32_t type_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4823 | bool needHeader_; |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4824 | size_t chunk_overhead_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4825 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4826 | DISALLOW_COPY_AND_ASSIGN(HeapChunkContext); |
| 4827 | }; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4828 | |
| 4829 | void Dbg::DdmSendHeapSegments(bool native) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4830 | Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen; |
| 4831 | Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4832 | if (when == HPSG_WHEN_NEVER) { |
| 4833 | return; |
| 4834 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4835 | // Figure out what kind of chunks we'll be sending. |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4836 | CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) |
| 4837 | << static_cast<int>(what); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4838 | |
| 4839 | // First, send a heap start chunk. |
| 4840 | uint8_t heap_id[4]; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4841 | JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap). |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4842 | Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4843 | Thread* self = Thread::Current(); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4844 | Locks::mutator_lock_->AssertSharedHeld(self); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4845 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4846 | // Send a series of heap segment chunks. |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4847 | HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native); |
Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4848 | auto bump_pointer_space_visitor = [&](mirror::Object* obj) |
| 4849 | REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) { |
| 4850 | const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment); |
| 4851 | HeapChunkContext::HeapChunkJavaCallback( |
| 4852 | obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, &context); |
| 4853 | }; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4854 | if (native) { |
Dimitry Ivanov | e6465bc | 2015-12-14 18:55:02 -0800 | [diff] [blame] | 4855 | UNIMPLEMENTED(WARNING) << "Native heap inspection is not supported"; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4856 | } else { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4857 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4858 | for (const auto& space : heap->GetContinuousSpaces()) { |
| 4859 | if (space->IsDlMallocSpace()) { |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4860 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4861 | // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an |
| 4862 | // allocation then the first sizeof(size_t) may belong to it. |
| 4863 | context.SetChunkOverhead(sizeof(size_t)); |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4864 | space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4865 | } else if (space->IsRosAllocSpace()) { |
| 4866 | context.SetChunkOverhead(0); |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4867 | // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since |
| 4868 | // 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] | 4869 | ScopedThreadSuspension sts(self, kSuspended); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4870 | ScopedSuspendAll ssa(__FUNCTION__); |
| 4871 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4872 | space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4873 | } else if (space->IsBumpPointerSpace()) { |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4874 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4875 | context.SetChunkOverhead(0); |
Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4876 | space->AsBumpPointerSpace()->Walk(bump_pointer_space_visitor); |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4877 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4878 | } else if (space->IsRegionSpace()) { |
| 4879 | heap->IncrementDisableMovingGC(self); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4880 | { |
| 4881 | ScopedThreadSuspension sts(self, kSuspended); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4882 | ScopedSuspendAll ssa(__FUNCTION__); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4883 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4884 | context.SetChunkOverhead(0); |
Andreas Gampe | 0c18338 | 2017-07-13 22:26:24 -0700 | [diff] [blame] | 4885 | space->AsRegionSpace()->Walk(bump_pointer_space_visitor); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4886 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4887 | } |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4888 | heap->DecrementDisableMovingGC(self); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4889 | } else { |
| 4890 | UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space; |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4891 | } |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4892 | context.ResetStartOfNextChunk(); |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4893 | } |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4894 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4895 | // Walk the large objects, these are not in the AllocSpace. |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4896 | context.SetChunkOverhead(0); |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4897 | heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4898 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4899 | |
| 4900 | // Finally, send a heap end chunk. |
| 4901 | Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHEN") : CHUNK_TYPE("HPEN"), sizeof(heap_id), heap_id); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4902 | } |
| 4903 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4904 | void Dbg::SetAllocTrackingEnabled(bool enable) { |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4905 | gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4906 | } |
| 4907 | |
| 4908 | void Dbg::DumpRecentAllocations() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4909 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4910 | MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4911 | if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4912 | LOG(INFO) << "Not recording tracked allocations"; |
| 4913 | return; |
| 4914 | } |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4915 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 4916 | CHECK(records != nullptr); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4917 | |
Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 4918 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4919 | uint16_t count = capped_count; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4920 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4921 | LOG(INFO) << "Tracked allocations, (count=" << count << ")"; |
| 4922 | for (auto it = records->RBegin(), end = records->REnd(); |
| 4923 | count > 0 && it != end; count--, it++) { |
Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 4924 | const gc::AllocRecord* record = &it->second; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4925 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4926 | LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4927 | << mirror::Class::PrettyClass(record->GetClass()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4928 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4929 | for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { |
| 4930 | const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); |
| 4931 | ArtMethod* m = stack_element.GetMethod(); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 4932 | LOG(INFO) << " " << ArtMethod::PrettyMethod(m) << " line " |
| 4933 | << stack_element.ComputeLineNumber(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4934 | } |
| 4935 | |
| 4936 | // pause periodically to help logcat catch up |
| 4937 | if ((count % 5) == 0) { |
| 4938 | usleep(40000); |
| 4939 | } |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4940 | } |
| 4941 | } |
| 4942 | |
| 4943 | class StringTable { |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4944 | private: |
| 4945 | struct Entry { |
Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4946 | explicit Entry(const char* data_in) |
| 4947 | : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { |
| 4948 | } |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4949 | Entry(const Entry& entry) = default; |
| 4950 | Entry(Entry&& entry) = default; |
| 4951 | |
| 4952 | // Pointer to the actual string data. |
| 4953 | const char* data; |
Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4954 | |
| 4955 | // The hash of the data. |
| 4956 | const uint32_t hash; |
| 4957 | |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4958 | // The index. This will be filled in on Finish and is not part of the ordering, so mark it |
| 4959 | // mutable. |
| 4960 | mutable uint32_t index; |
| 4961 | |
Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 4962 | bool operator==(const Entry& other) const { |
| 4963 | return strcmp(data, other.data) == 0; |
| 4964 | } |
| 4965 | }; |
| 4966 | struct EntryHash { |
| 4967 | size_t operator()(const Entry& entry) const { |
| 4968 | return entry.hash; |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4969 | } |
| 4970 | }; |
| 4971 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4972 | public: |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4973 | StringTable() : finished_(false) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4974 | } |
| 4975 | |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 4976 | void Add(const char* str, bool copy_string) { |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4977 | DCHECK(!finished_); |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 4978 | if (UNLIKELY(copy_string)) { |
| 4979 | // Check whether it's already there. |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4980 | Entry entry(str); |
| 4981 | if (table_.find(entry) != table_.end()) { |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 4982 | return; |
| 4983 | } |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4984 | |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 4985 | // Make a copy. |
| 4986 | size_t str_len = strlen(str); |
| 4987 | char* copy = new char[str_len + 1]; |
| 4988 | strlcpy(copy, str, str_len + 1); |
| 4989 | string_backup_.emplace_back(copy); |
| 4990 | str = copy; |
| 4991 | } |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 4992 | Entry entry(str); |
| 4993 | table_.insert(entry); |
| 4994 | } |
| 4995 | |
| 4996 | // Update all entries and give them an index. Note that this is likely not the insertion order, |
| 4997 | // as the set will with high likelihood reorder elements. Thus, Add must not be called after |
| 4998 | // Finish, and Finish must be called before IndexOf. In that case, WriteTo will walk in |
| 4999 | // the same order as Finish, and indices will agree. The order invariant, as well as indices, |
| 5000 | // are enforced through debug checks. |
| 5001 | void Finish() { |
| 5002 | DCHECK(!finished_); |
| 5003 | finished_ = true; |
| 5004 | uint32_t index = 0; |
| 5005 | for (auto& entry : table_) { |
| 5006 | entry.index = index; |
| 5007 | ++index; |
| 5008 | } |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5009 | } |
| 5010 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5011 | size_t IndexOf(const char* s) const { |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5012 | DCHECK(finished_); |
| 5013 | Entry entry(s); |
| 5014 | auto it = table_.find(entry); |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5015 | if (it == table_.end()) { |
| 5016 | LOG(FATAL) << "IndexOf(\"" << s << "\") failed"; |
| 5017 | } |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5018 | return it->index; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5019 | } |
| 5020 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5021 | size_t Size() const { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5022 | return table_.size(); |
| 5023 | } |
| 5024 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 5025 | void WriteTo(std::vector<uint8_t>& bytes) const { |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5026 | DCHECK(finished_); |
| 5027 | uint32_t cur_index = 0; |
| 5028 | for (const auto& entry : table_) { |
| 5029 | DCHECK_EQ(cur_index++, entry.index); |
| 5030 | |
| 5031 | size_t s_len = CountModifiedUtf8Chars(entry.data); |
Christopher Ferris | 8a35405 | 2015-04-24 17:23:53 -0700 | [diff] [blame] | 5032 | std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]); |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5033 | ConvertModifiedUtf8ToUtf16(s_utf16.get(), entry.data); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 5034 | JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5035 | } |
| 5036 | } |
| 5037 | |
| 5038 | private: |
Andreas Gampe | 84eadb2 | 2017-07-07 15:08:01 -0700 | [diff] [blame] | 5039 | std::unordered_set<Entry, EntryHash> table_; |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5040 | std::vector<std::unique_ptr<char[]>> string_backup_; |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5041 | |
| 5042 | bool finished_; |
| 5043 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5044 | DISALLOW_COPY_AND_ASSIGN(StringTable); |
| 5045 | }; |
| 5046 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5047 | static const char* GetMethodSourceFile(ArtMethod* method) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 5048 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5049 | DCHECK(method != nullptr); |
| 5050 | const char* source_file = method->GetDeclaringClassSourceFile(); |
Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 5051 | return (source_file != nullptr) ? source_file : ""; |
| 5052 | } |
| 5053 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5054 | /* |
| 5055 | * The data we send to DDMS contains everything we have recorded. |
| 5056 | * |
| 5057 | * Message header (all values big-endian): |
| 5058 | * (1b) message header len (to allow future expansion); includes itself |
| 5059 | * (1b) entry header len |
| 5060 | * (1b) stack frame len |
| 5061 | * (2b) number of entries |
| 5062 | * (4b) offset to string table from start of message |
| 5063 | * (2b) number of class name strings |
| 5064 | * (2b) number of method name strings |
| 5065 | * (2b) number of source file name strings |
| 5066 | * For each entry: |
| 5067 | * (4b) total allocation size |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 5068 | * (2b) thread id |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5069 | * (2b) allocated object's class name index |
| 5070 | * (1b) stack depth |
| 5071 | * For each stack frame: |
| 5072 | * (2b) method's class name |
| 5073 | * (2b) method name |
| 5074 | * (2b) method source file |
| 5075 | * (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| 5076 | * (xb) class name strings |
| 5077 | * (xb) method name strings |
| 5078 | * (xb) source file strings |
| 5079 | * |
| 5080 | * As with other DDM traffic, strings are sent as a 4-byte length |
| 5081 | * followed by UTF-16 data. |
| 5082 | * |
| 5083 | * 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] | 5084 | * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5085 | * each table, but in practice there should be far fewer. |
| 5086 | * |
| 5087 | * The chief reason for using a string table here is to keep the size of |
| 5088 | * the DDMS message to a minimum. This is partly to make the protocol |
| 5089 | * efficient, but also because we have to form the whole thing up all at |
| 5090 | * once in a memory buffer. |
| 5091 | * |
| 5092 | * We use separate string tables for class names, method names, and source |
| 5093 | * files to keep the indexes small. There will generally be no overlap |
| 5094 | * between the contents of these tables. |
| 5095 | */ |
| 5096 | jbyteArray Dbg::GetRecentAllocations() { |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 5097 | if ((false)) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5098 | DumpRecentAllocations(); |
| 5099 | } |
| 5100 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5101 | Thread* self = Thread::Current(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5102 | std::vector<uint8_t> bytes; |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5103 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5104 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5105 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 5106 | // In case this method is called when allocation tracker is disabled, |
| 5107 | // we should still send some data back. |
| 5108 | gc::AllocRecordObjectMap dummy; |
| 5109 | if (records == nullptr) { |
| 5110 | CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()); |
| 5111 | records = &dummy; |
| 5112 | } |
Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5113 | // We don't need to wait on the condition variable records->new_record_condition_, because this |
| 5114 | // function only reads the class objects, which are already marked so it doesn't change their |
| 5115 | // reachability. |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5116 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5117 | // |
| 5118 | // Part 1: generate string tables. |
| 5119 | // |
| 5120 | StringTable class_names; |
| 5121 | StringTable method_names; |
| 5122 | StringTable filenames; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5123 | |
Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5124 | VLOG(jdwp) << "Collecting StringTables."; |
| 5125 | |
Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 5126 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5127 | uint16_t count = capped_count; |
Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5128 | size_t alloc_byte_count = 0; |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5129 | for (auto it = records->RBegin(), end = records->REnd(); |
| 5130 | count > 0 && it != end; count--, it++) { |
Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 5131 | const gc::AllocRecord* record = &it->second; |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 5132 | std::string temp; |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5133 | const char* class_descr = record->GetClassDescriptor(&temp); |
| 5134 | class_names.Add(class_descr, !temp.empty()); |
Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5135 | |
| 5136 | // Size + tid + class name index + stack depth. |
| 5137 | alloc_byte_count += 4u + 2u + 2u + 1u; |
| 5138 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5139 | for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { |
| 5140 | ArtMethod* m = record->StackElement(i).GetMethod(); |
Andreas Gampe | f774a4e | 2017-07-06 22:15:18 -0700 | [diff] [blame] | 5141 | class_names.Add(m->GetDeclaringClassDescriptor(), false); |
| 5142 | method_names.Add(m->GetName(), false); |
| 5143 | filenames.Add(GetMethodSourceFile(m), false); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5144 | } |
Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5145 | |
| 5146 | // Depth * (class index + method name index + file name index + line number). |
| 5147 | alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5148 | } |
| 5149 | |
Andreas Gampe | 2eeb01a | 2017-07-07 14:09:46 -0700 | [diff] [blame] | 5150 | class_names.Finish(); |
| 5151 | method_names.Finish(); |
| 5152 | filenames.Finish(); |
Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5153 | VLOG(jdwp) << "Done collecting StringTables:" << std::endl |
| 5154 | << " ClassNames: " << class_names.Size() << std::endl |
| 5155 | << " MethodNames: " << method_names.Size() << std::endl |
| 5156 | << " Filenames: " << filenames.Size(); |
| 5157 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5158 | LOG(INFO) << "recent allocation records: " << capped_count; |
| 5159 | LOG(INFO) << "allocation records all objects: " << records->Size(); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5160 | |
| 5161 | // |
| 5162 | // Part 2: Generate the output and store it in the buffer. |
| 5163 | // |
| 5164 | |
| 5165 | // (1b) message header len (to allow future expansion); includes itself |
| 5166 | // (1b) entry header len |
| 5167 | // (1b) stack frame len |
| 5168 | const int kMessageHeaderLen = 15; |
| 5169 | const int kEntryHeaderLen = 9; |
| 5170 | const int kStackFrameLen = 8; |
| 5171 | JDWP::Append1BE(bytes, kMessageHeaderLen); |
| 5172 | JDWP::Append1BE(bytes, kEntryHeaderLen); |
| 5173 | JDWP::Append1BE(bytes, kStackFrameLen); |
| 5174 | |
| 5175 | // (2b) number of entries |
| 5176 | // (4b) offset to string table from start of message |
| 5177 | // (2b) number of class name strings |
| 5178 | // (2b) number of method name strings |
| 5179 | // (2b) number of source file name strings |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 5180 | JDWP::Append2BE(bytes, capped_count); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5181 | size_t string_table_offset = bytes.size(); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 5182 | JDWP::Append4BE(bytes, 0); // We'll patch this later... |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5183 | JDWP::Append2BE(bytes, class_names.Size()); |
| 5184 | JDWP::Append2BE(bytes, method_names.Size()); |
| 5185 | JDWP::Append2BE(bytes, filenames.Size()); |
| 5186 | |
Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5187 | VLOG(jdwp) << "Dumping allocations with stacks"; |
| 5188 | |
Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5189 | // Enlarge the vector for the allocation data. |
| 5190 | size_t reserve_size = bytes.size() + alloc_byte_count; |
| 5191 | bytes.reserve(reserve_size); |
| 5192 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 5193 | std::string temp; |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5194 | count = capped_count; |
| 5195 | // The last "count" number of allocation records in "records" are the most recent "count" number |
| 5196 | // of allocations. Reverse iterate to get them. The most recent allocation is sent first. |
| 5197 | for (auto it = records->RBegin(), end = records->REnd(); |
| 5198 | count > 0 && it != end; count--, it++) { |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5199 | // For each entry: |
| 5200 | // (4b) total allocation size |
| 5201 | // (2b) thread id |
| 5202 | // (2b) allocated object's class name index |
| 5203 | // (1b) stack depth |
Mathieu Chartier | 458b105 | 2016-03-29 14:02:55 -0700 | [diff] [blame] | 5204 | const gc::AllocRecord* record = &it->second; |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5205 | size_t stack_depth = record->GetDepth(); |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 5206 | size_t allocated_object_class_name_index = |
Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5207 | class_names.IndexOf(record->GetClassDescriptor(&temp)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 5208 | JDWP::Append4BE(bytes, record->ByteCount()); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5209 | JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid())); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5210 | JDWP::Append2BE(bytes, allocated_object_class_name_index); |
| 5211 | JDWP::Append1BE(bytes, stack_depth); |
| 5212 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5213 | for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { |
| 5214 | // For each stack frame: |
| 5215 | // (2b) method's class name |
| 5216 | // (2b) method name |
| 5217 | // (2b) method source file |
| 5218 | // (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] | 5219 | ArtMethod* m = record->StackElement(stack_frame).GetMethod(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5220 | size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); |
| 5221 | size_t method_name_index = method_names.IndexOf(m->GetName()); |
| 5222 | size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5223 | JDWP::Append2BE(bytes, class_name_index); |
| 5224 | JDWP::Append2BE(bytes, method_name_index); |
| 5225 | JDWP::Append2BE(bytes, file_name_index); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5226 | JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber()); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5227 | } |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5228 | } |
| 5229 | |
Andreas Gampe | d0fc768 | 2017-07-07 14:03:08 -0700 | [diff] [blame] | 5230 | CHECK_EQ(bytes.size(), reserve_size); |
Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5231 | VLOG(jdwp) << "Dumping tables."; |
| 5232 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5233 | // (xb) class name strings |
| 5234 | // (xb) method name strings |
| 5235 | // (xb) source file strings |
| 5236 | JDWP::Set4BE(&bytes[string_table_offset], bytes.size()); |
| 5237 | class_names.WriteTo(bytes); |
| 5238 | method_names.WriteTo(bytes); |
| 5239 | filenames.WriteTo(bytes); |
Andreas Gampe | ff29cee | 2017-07-07 11:11:15 -0700 | [diff] [blame] | 5240 | |
| 5241 | VLOG(jdwp) << "GetRecentAllocations: data created. " << bytes.size(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5242 | } |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5243 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5244 | jbyteArray result = env->NewByteArray(bytes.size()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 5245 | if (result != nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5246 | env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); |
| 5247 | } |
| 5248 | return result; |
| 5249 | } |
| 5250 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5251 | ArtMethod* DeoptimizationRequest::Method() const { |
Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 5252 | return jni::DecodeArtMethod(method_); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5253 | } |
| 5254 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5255 | void DeoptimizationRequest::SetMethod(ArtMethod* m) { |
Andreas Gampe | 13b2784 | 2016-11-07 16:48:23 -0800 | [diff] [blame] | 5256 | method_ = jni::EncodeArtMethod(m); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5257 | } |
| 5258 | |
Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5259 | void Dbg::VisitRoots(RootVisitor* visitor) { |
| 5260 | // Visit breakpoint roots, used to prevent unloading of methods with breakpoints. |
| 5261 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 5262 | BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal)); |
| 5263 | for (Breakpoint& breakpoint : gBreakpoints) { |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 5264 | breakpoint.Method()->VisitRoots(root_visitor, kRuntimePointerSize); |
Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5265 | } |
| 5266 | } |
| 5267 | |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 5268 | void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) { |
| 5269 | Dbg::PostThreadStart(self); |
| 5270 | } |
| 5271 | |
| 5272 | void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) { |
| 5273 | Dbg::PostThreadDeath(self); |
| 5274 | } |
| 5275 | |
Andreas Gampe | 0f01b58 | 2017-01-18 15:22:37 -0800 | [diff] [blame] | 5276 | void Dbg::DbgClassLoadCallback::ClassLoad(Handle<mirror::Class> klass ATTRIBUTE_UNUSED) { |
| 5277 | // Ignore ClassLoad; |
| 5278 | } |
| 5279 | void Dbg::DbgClassLoadCallback::ClassPrepare(Handle<mirror::Class> temp_klass ATTRIBUTE_UNUSED, |
| 5280 | Handle<mirror::Class> klass) { |
| 5281 | Dbg::PostClassPrepare(klass.Get()); |
| 5282 | } |
| 5283 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 5284 | } // namespace art |