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 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 21 | #include <set> |
| 22 | |
Ian Rogers | 166db04 | 2013-07-26 12:05:57 -0700 | [diff] [blame] | 23 | #include "arch/context.h" |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 24 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 25 | #include "art_method-inl.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 26 | #include "base/time_utils.h" |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 27 | #include "class_linker.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 28 | #include "class_linker-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 29 | #include "dex_file-inl.h" |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 30 | #include "dex_instruction.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 31 | #include "gc/accounting/card_table-inl.h" |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 32 | #include "gc/allocation_record.h" |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 33 | #include "gc/scoped_gc_critical_section.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 34 | #include "gc/space/large_object_space.h" |
| 35 | #include "gc/space/space-inl.h" |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 36 | #include "handle_scope.h" |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 37 | #include "jdwp/jdwp_priv.h" |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 38 | #include "jdwp/object_registry.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 39 | #include "mirror/class.h" |
| 40 | #include "mirror/class-inl.h" |
| 41 | #include "mirror/class_loader.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 42 | #include "mirror/object-inl.h" |
| 43 | #include "mirror/object_array-inl.h" |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 44 | #include "mirror/string-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 45 | #include "mirror/throwable.h" |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 46 | #include "quick/inline_method_analyser.h" |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 47 | #include "reflection.h" |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 48 | #include "safe_map.h" |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 49 | #include "scoped_thread_state_change.h" |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 50 | #include "ScopedLocalRef.h" |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 51 | #include "ScopedPrimitiveArray.h" |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 52 | #include "handle_scope-inl.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 53 | #include "thread_list.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 54 | #include "utf.h" |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 55 | #include "verifier/method_verifier-inl.h" |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 56 | #include "well_known_classes.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 57 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 58 | namespace art { |
| 59 | |
Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 60 | // The key identifying the debugger to update instrumentation. |
| 61 | static constexpr const char* kDbgInstrumentationKey = "Debugger"; |
| 62 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 63 | // 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] | 64 | static uint16_t CappedAllocRecordCount(size_t alloc_record_count) { |
Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 65 | const size_t cap = 0xffff; |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 66 | if (alloc_record_count > cap) { |
| 67 | return cap; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 68 | } |
| 69 | return alloc_record_count; |
| 70 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 71 | |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 72 | class Breakpoint : public ValueObject { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 73 | public: |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 74 | Breakpoint(ArtMethod* method, uint32_t dex_pc, DeoptimizationRequest::Kind deoptimization_kind) |
| 75 | : method_(method), |
| 76 | dex_pc_(dex_pc), |
| 77 | deoptimization_kind_(deoptimization_kind) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 78 | CHECK(deoptimization_kind_ == DeoptimizationRequest::kNothing || |
| 79 | deoptimization_kind_ == DeoptimizationRequest::kSelectiveDeoptimization || |
| 80 | deoptimization_kind_ == DeoptimizationRequest::kFullDeoptimization); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 83 | Breakpoint(const Breakpoint& other) SHARED_REQUIRES(Locks::mutator_lock_) |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 84 | : method_(other.method_), |
| 85 | dex_pc_(other.dex_pc_), |
| 86 | deoptimization_kind_(other.deoptimization_kind_) {} |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 87 | |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 88 | // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause |
| 89 | // GC to deadlock if another thread tries to call SuspendAll while the GC is in a runnable state. |
| 90 | ArtMethod* Method() const { |
| 91 | return method_; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | uint32_t DexPc() const { |
| 95 | return dex_pc_; |
| 96 | } |
| 97 | |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 98 | DeoptimizationRequest::Kind GetDeoptimizationKind() const { |
| 99 | return deoptimization_kind_; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | private: |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 103 | // The location of this breakpoint. |
Mathieu Chartier | 41af5e5 | 2015-10-28 11:10:46 -0700 | [diff] [blame] | 104 | ArtMethod* method_; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 105 | uint32_t dex_pc_; |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 106 | |
| 107 | // Indicates whether breakpoint needs full deoptimization or selective deoptimization. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 108 | DeoptimizationRequest::Kind deoptimization_kind_; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 109 | }; |
| 110 | |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 111 | static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 112 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 113 | os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc()); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 114 | return os; |
| 115 | } |
| 116 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 117 | class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 118 | public: |
| 119 | DebugInstrumentationListener() {} |
| 120 | virtual ~DebugInstrumentationListener() {} |
| 121 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 122 | void MethodEntered(Thread* thread, mirror::Object* this_object, ArtMethod* method, |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 123 | uint32_t dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 124 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 125 | if (method->IsNative()) { |
| 126 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 127 | return; |
| 128 | } |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 129 | if (IsListeningToDexPcMoved()) { |
| 130 | // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is |
| 131 | // going to be called right after us. To avoid sending JDWP events twice for this location, |
| 132 | // we report the event in DexPcMoved. However, we must remind this is method entry so we |
| 133 | // send the METHOD_ENTRY event. And we can also group it with other events for this location |
| 134 | // like BREAKPOINT or SINGLE_STEP (or even METHOD_EXIT if this is a RETURN instruction). |
| 135 | thread->SetDebugMethodEntry(); |
| 136 | } else if (IsListeningToMethodExit() && IsReturn(method, dex_pc)) { |
| 137 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 138 | // RETURN so we know the MethodExited method is going to be called right after us. To avoid |
| 139 | // sending JDWP events twice for this location, we report the event(s) in MethodExited. |
| 140 | // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can |
| 141 | // also group it with other events for this location like BREAKPOINT or SINGLE_STEP. |
| 142 | thread->SetDebugMethodEntry(); |
| 143 | } else { |
| 144 | Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr); |
| 145 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 146 | } |
| 147 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 148 | void MethodExited(Thread* thread, mirror::Object* this_object, ArtMethod* method, |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 149 | uint32_t dex_pc, const JValue& return_value) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 150 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 151 | if (method->IsNative()) { |
| 152 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 153 | return; |
| 154 | } |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 155 | uint32_t events = Dbg::kMethodExit; |
| 156 | if (thread->IsDebugMethodEntry()) { |
| 157 | // It is also the method entry. |
| 158 | DCHECK(IsReturn(method, dex_pc)); |
| 159 | events |= Dbg::kMethodEntry; |
| 160 | thread->ClearDebugMethodEntry(); |
| 161 | } |
| 162 | Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 163 | } |
| 164 | |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 165 | void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object ATTRIBUTE_UNUSED, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 166 | ArtMethod* method, uint32_t dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 167 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 168 | // We're not recorded to listen to this kind of event, so complain. |
| 169 | LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method) |
Sebastien Hertz | 51db44a | 2013-11-19 10:00:29 +0100 | [diff] [blame] | 170 | << " " << dex_pc; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 171 | } |
| 172 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 173 | void DexPcMoved(Thread* thread, mirror::Object* this_object, ArtMethod* method, |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 174 | uint32_t new_dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 175 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 176 | if (IsListeningToMethodExit() && IsReturn(method, new_dex_pc)) { |
| 177 | // We also listen to kMethodExited instrumentation event and the current instruction is a |
| 178 | // RETURN so we know the MethodExited method is going to be called right after us. Like in |
| 179 | // MethodEntered, we delegate event reporting to MethodExited. |
| 180 | // Besides, if this RETURN instruction is the only one in the method, we can send multiple |
| 181 | // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP. |
| 182 | // Therefore, we must not clear the debug method entry flag here. |
| 183 | } else { |
| 184 | uint32_t events = 0; |
| 185 | if (thread->IsDebugMethodEntry()) { |
| 186 | // It is also the method entry. |
| 187 | events = Dbg::kMethodEntry; |
| 188 | thread->ClearDebugMethodEntry(); |
| 189 | } |
| 190 | Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, events, nullptr); |
| 191 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 192 | } |
| 193 | |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 194 | void FieldRead(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 195 | ArtMethod* method, uint32_t dex_pc, ArtField* field) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 196 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 197 | Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 198 | } |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 199 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 200 | void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 201 | ArtMethod* method, uint32_t dex_pc, ArtField* field, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 202 | const JValue& field_value) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 203 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 204 | Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value); |
| 205 | } |
| 206 | |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 207 | void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 208 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 209 | Dbg::PostException(exception_object); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 210 | } |
| 211 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 212 | // We only care about how many backward branches were executed in the Jit. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 213 | void BackwardBranch(Thread* /*thread*/, ArtMethod* method, int32_t dex_pc_offset) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 214 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 215 | LOG(ERROR) << "Unexpected backward branch event in debugger " << PrettyMethod(method) |
| 216 | << " " << dex_pc_offset; |
| 217 | } |
| 218 | |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 219 | // We only care about invokes in the Jit. |
| 220 | void InvokeVirtualOrInterface(Thread* thread ATTRIBUTE_UNUSED, |
| 221 | mirror::Object*, |
| 222 | ArtMethod* method, |
| 223 | uint32_t dex_pc, |
| 224 | ArtMethod*) |
| 225 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
| 226 | LOG(ERROR) << "Unexpected invoke event in debugger " << PrettyMethod(method) |
| 227 | << " " << dex_pc; |
| 228 | } |
| 229 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 230 | private: |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 231 | static bool IsReturn(ArtMethod* method, uint32_t dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 232 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 233 | const DexFile::CodeItem* code_item = method->GetCodeItem(); |
| 234 | const Instruction* instruction = Instruction::At(&code_item->insns_[dex_pc]); |
| 235 | return instruction->IsReturn(); |
| 236 | } |
| 237 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 238 | static bool IsListeningToDexPcMoved() SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 239 | return IsListeningTo(instrumentation::Instrumentation::kDexPcMoved); |
| 240 | } |
| 241 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 242 | static bool IsListeningToMethodExit() SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 243 | return IsListeningTo(instrumentation::Instrumentation::kMethodExited); |
| 244 | } |
| 245 | |
| 246 | static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 247 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 9d6bf69 | 2015-04-10 12:12:33 +0200 | [diff] [blame] | 248 | return (Dbg::GetInstrumentationEvents() & event) != 0; |
| 249 | } |
| 250 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 251 | DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 252 | } gDebugInstrumentationListener; |
| 253 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 254 | // JDWP is allowed unless the Zygote forbids it. |
| 255 | static bool gJdwpAllowed = true; |
| 256 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 257 | // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line? |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 258 | static bool gJdwpConfigured = false; |
| 259 | |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 260 | // JDWP options for debugging. Only valid if IsJdwpConfigured() is true. |
| 261 | static JDWP::JdwpOptions gJdwpOptions; |
| 262 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 263 | // Runtime JDWP state. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 264 | static JDWP::JdwpState* gJdwpState = nullptr; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 265 | static bool gDebuggerConnected; // debugger or DDMS is connected. |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 266 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 267 | static bool gDdmThreadNotification = false; |
| 268 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 269 | // DDMS GC-related settings. |
| 270 | static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER; |
| 271 | static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 272 | static Dbg::HpsgWhat gDdmHpsgWhat; |
| 273 | static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 274 | static Dbg::HpsgWhat gDdmNhsgWhat; |
| 275 | |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 276 | bool Dbg::gDebuggerActive = false; |
Sebastien Hertz | 4e5b208 | 2015-03-24 19:03:40 +0100 | [diff] [blame] | 277 | bool Dbg::gDisposed = false; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 278 | ObjectRegistry* Dbg::gRegistry = nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 279 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 280 | // Deoptimization support. |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 281 | std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_; |
| 282 | size_t Dbg::full_deoptimization_event_count_ = 0; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 283 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 284 | // Instrumentation event reference counters. |
| 285 | size_t Dbg::dex_pc_change_event_ref_count_ = 0; |
| 286 | size_t Dbg::method_enter_event_ref_count_ = 0; |
| 287 | size_t Dbg::method_exit_event_ref_count_ = 0; |
| 288 | size_t Dbg::field_read_event_ref_count_ = 0; |
| 289 | size_t Dbg::field_write_event_ref_count_ = 0; |
| 290 | size_t Dbg::exception_catch_event_ref_count_ = 0; |
| 291 | uint32_t Dbg::instrumentation_events_ = 0; |
| 292 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 293 | // Breakpoints. |
jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 294 | static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 295 | |
Mathieu Chartier | bb87e0f | 2015-04-03 11:21:55 -0700 | [diff] [blame] | 296 | void DebugInvokeReq::VisitRoots(RootVisitor* visitor, const RootInfo& root_info) { |
| 297 | receiver.VisitRootIfNonNull(visitor, root_info); // null for static method call. |
| 298 | klass.VisitRoot(visitor, root_info); |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 299 | } |
| 300 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 301 | void SingleStepControl::AddDexPc(uint32_t dex_pc) { |
| 302 | dex_pcs_.insert(dex_pc); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 303 | } |
| 304 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 305 | bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const { |
| 306 | return dex_pcs_.find(dex_pc) == dex_pcs_.end(); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 307 | } |
| 308 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 309 | static bool IsBreakpoint(const ArtMethod* m, uint32_t dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 310 | REQUIRES(!Locks::breakpoint_lock_) |
| 311 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 312 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 313 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 314 | if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 315 | VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; |
| 316 | return true; |
| 317 | } |
| 318 | } |
| 319 | return false; |
| 320 | } |
| 321 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 322 | static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 323 | REQUIRES(!Locks::thread_suspend_count_lock_) { |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 324 | MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_); |
| 325 | // A thread may be suspended for GC; in this code, we really want to know whether |
| 326 | // there's a debugger suspension active. |
| 327 | return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; |
| 328 | } |
| 329 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 330 | static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 331 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 332 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 333 | if (o == nullptr) { |
| 334 | *error = JDWP::ERR_INVALID_OBJECT; |
| 335 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 336 | } |
| 337 | if (!o->IsArrayInstance()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 338 | *error = JDWP::ERR_INVALID_ARRAY; |
| 339 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 340 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 341 | *error = JDWP::ERR_NONE; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 342 | return o->AsArray(); |
| 343 | } |
| 344 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 345 | static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 346 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 347 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 348 | if (o == nullptr) { |
| 349 | *error = JDWP::ERR_INVALID_OBJECT; |
| 350 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 351 | } |
| 352 | if (!o->IsClass()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 353 | *error = JDWP::ERR_INVALID_CLASS; |
| 354 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 355 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 356 | *error = JDWP::ERR_NONE; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 357 | return o->AsClass(); |
| 358 | } |
| 359 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 360 | static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, |
| 361 | JDWP::JdwpError* error) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 362 | SHARED_REQUIRES(Locks::mutator_lock_) |
| 363 | REQUIRES(!Locks::thread_list_lock_, !Locks::thread_suspend_count_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 364 | mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 365 | if (thread_peer == nullptr) { |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 366 | // This isn't even an object. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 367 | *error = JDWP::ERR_INVALID_OBJECT; |
| 368 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 369 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 370 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 371 | mirror::Class* java_lang_Thread = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 372 | if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) { |
| 373 | // This isn't a thread. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 374 | *error = JDWP::ERR_INVALID_THREAD; |
| 375 | return nullptr; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 376 | } |
| 377 | |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 378 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 379 | Thread* thread = Thread::FromManagedThread(soa, thread_peer); |
| 380 | // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a |
| 381 | // zombie. |
| 382 | *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE; |
| 383 | return thread; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 384 | } |
| 385 | |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 386 | static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { |
| 387 | // JDWP deliberately uses the descriptor characters' ASCII values for its enum. |
| 388 | // Note that by "basic" we mean that we don't get more specific than JT_OBJECT. |
| 389 | return static_cast<JDWP::JdwpTag>(descriptor[0]); |
| 390 | } |
| 391 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 392 | static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 393 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 394 | std::string temp; |
| 395 | const char* descriptor = klass->GetDescriptor(&temp); |
| 396 | return BasicTagFromDescriptor(descriptor); |
| 397 | } |
| 398 | |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 399 | static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 400 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 401 | CHECK(c != nullptr); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 402 | if (c->IsArrayClass()) { |
| 403 | return JDWP::JT_ARRAY; |
| 404 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 405 | if (c->IsStringClass()) { |
| 406 | return JDWP::JT_STRING; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 407 | } |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 408 | if (c->IsClassClass()) { |
| 409 | return JDWP::JT_CLASS_OBJECT; |
| 410 | } |
| 411 | { |
| 412 | mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread); |
| 413 | if (thread_class->IsAssignableFrom(c)) { |
| 414 | return JDWP::JT_THREAD; |
| 415 | } |
| 416 | } |
| 417 | { |
| 418 | mirror::Class* thread_group_class = |
| 419 | soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup); |
| 420 | if (thread_group_class->IsAssignableFrom(c)) { |
| 421 | return JDWP::JT_THREAD_GROUP; |
| 422 | } |
| 423 | } |
| 424 | { |
| 425 | mirror::Class* class_loader_class = |
| 426 | soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader); |
| 427 | if (class_loader_class->IsAssignableFrom(c)) { |
| 428 | return JDWP::JT_CLASS_LOADER; |
| 429 | } |
| 430 | } |
| 431 | return JDWP::JT_OBJECT; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | /* |
| 435 | * Objects declared to hold Object might actually hold a more specific |
| 436 | * type. The debugger may take a special interest in these (e.g. it |
| 437 | * wants to display the contents of Strings), so we want to return an |
| 438 | * appropriate tag. |
| 439 | * |
| 440 | * Null objects are tagged JT_OBJECT. |
| 441 | */ |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 442 | JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 443 | return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass()); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | static bool IsPrimitiveTag(JDWP::JdwpTag tag) { |
| 447 | switch (tag) { |
| 448 | case JDWP::JT_BOOLEAN: |
| 449 | case JDWP::JT_BYTE: |
| 450 | case JDWP::JT_CHAR: |
| 451 | case JDWP::JT_FLOAT: |
| 452 | case JDWP::JT_DOUBLE: |
| 453 | case JDWP::JT_INT: |
| 454 | case JDWP::JT_LONG: |
| 455 | case JDWP::JT_SHORT: |
| 456 | case JDWP::JT_VOID: |
| 457 | return true; |
| 458 | default: |
| 459 | return false; |
| 460 | } |
| 461 | } |
| 462 | |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 463 | void Dbg::StartJdwp() { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 464 | if (!gJdwpAllowed || !IsJdwpConfigured()) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 465 | // No JDWP for you! |
| 466 | return; |
| 467 | } |
| 468 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 469 | CHECK(gRegistry == nullptr); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 470 | gRegistry = new ObjectRegistry; |
| 471 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 472 | // Init JDWP if the debugger is enabled. This may connect out to a |
| 473 | // debugger, passively listen for a debugger, or block waiting for a |
| 474 | // debugger. |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 475 | gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 476 | if (gJdwpState == nullptr) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 477 | // We probably failed because some other process has the port already, which means that |
| 478 | // if we don't abort the user is likely to think they're talking to us when they're actually |
| 479 | // talking to that other process. |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 480 | LOG(FATAL) << "Debugger thread failed to initialize"; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | // If a debugger has already attached, send the "welcome" message. |
| 484 | // This may cause us to suspend all threads. |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 485 | if (gJdwpState->IsActive()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 486 | ScopedObjectAccess soa(Thread::Current()); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 487 | gJdwpState->PostVMStart(); |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 488 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 491 | void Dbg::StopJdwp() { |
Sebastien Hertz | c6345ef | 2014-08-18 19:26:39 +0200 | [diff] [blame] | 492 | // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the |
| 493 | // destruction of gJdwpState). |
| 494 | if (gJdwpState != nullptr && gJdwpState->IsActive()) { |
| 495 | gJdwpState->PostVMDeath(); |
| 496 | } |
Sebastien Hertz | 0376e6b | 2014-02-06 18:12:59 +0100 | [diff] [blame] | 497 | // 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] | 498 | Dispose(); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 499 | delete gJdwpState; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 500 | gJdwpState = nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 501 | delete gRegistry; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 502 | gRegistry = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 503 | } |
| 504 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 505 | void Dbg::GcDidFinish() { |
| 506 | if (gDdmHpifWhen != HPIF_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 507 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 508 | VLOG(jdwp) << "Sending heap info to DDM"; |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 509 | DdmSendHeapInfo(gDdmHpifWhen); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 510 | } |
| 511 | if (gDdmHpsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 512 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 513 | VLOG(jdwp) << "Dumping heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 514 | DdmSendHeapSegments(false); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 515 | } |
| 516 | if (gDdmNhsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 517 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 518 | VLOG(jdwp) << "Dumping native heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 519 | DdmSendHeapSegments(true); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 520 | } |
| 521 | } |
| 522 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 523 | void Dbg::SetJdwpAllowed(bool allowed) { |
| 524 | gJdwpAllowed = allowed; |
| 525 | } |
| 526 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 527 | DebugInvokeReq* Dbg::GetInvokeReq() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 528 | return Thread::Current()->GetInvokeReq(); |
| 529 | } |
| 530 | |
| 531 | Thread* Dbg::GetDebugThread() { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 532 | return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | void Dbg::ClearWaitForEventThread() { |
Sebastien Hertz | 2bf93f4 | 2015-01-09 18:44:05 +0100 | [diff] [blame] | 536 | gJdwpState->ReleaseJdwpTokenForEvent(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | void Dbg::Connected() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 540 | CHECK(!gDebuggerConnected); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 541 | VLOG(jdwp) << "JDWP has attached"; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 542 | gDebuggerConnected = true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 543 | gDisposed = false; |
| 544 | } |
| 545 | |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 546 | bool Dbg::RequiresDeoptimization() { |
| 547 | // We don't need deoptimization if everything runs with interpreter after |
| 548 | // enabling -Xint mode. |
| 549 | return !Runtime::Current()->GetInstrumentation()->IsForcedInterpretOnly(); |
| 550 | } |
| 551 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 552 | void Dbg::GoActive() { |
| 553 | // Enable all debugging features, including scans for breakpoints. |
| 554 | // This is a no-op if we're already active. |
| 555 | // Only called from the JDWP handler thread. |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 556 | if (IsDebuggerActive()) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 557 | return; |
| 558 | } |
| 559 | |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 560 | Thread* const self = Thread::Current(); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 561 | { |
| 562 | // 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] | 563 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 564 | CHECK_EQ(gBreakpoints.size(), 0U); |
| 565 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 566 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 567 | { |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 568 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 569 | CHECK_EQ(deoptimization_requests_.size(), 0U); |
| 570 | CHECK_EQ(full_deoptimization_event_count_, 0U); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 571 | CHECK_EQ(dex_pc_change_event_ref_count_, 0U); |
| 572 | CHECK_EQ(method_enter_event_ref_count_, 0U); |
| 573 | CHECK_EQ(method_exit_event_ref_count_, 0U); |
| 574 | CHECK_EQ(field_read_event_ref_count_, 0U); |
| 575 | CHECK_EQ(field_write_event_ref_count_, 0U); |
| 576 | CHECK_EQ(exception_catch_event_ref_count_, 0U); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 577 | } |
| 578 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 579 | Runtime* runtime = Runtime::Current(); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 580 | ScopedSuspendAll ssa(__FUNCTION__); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 581 | if (RequiresDeoptimization()) { |
| 582 | runtime->GetInstrumentation()->EnableDeoptimization(); |
| 583 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 584 | instrumentation_events_ = 0; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 585 | gDebuggerActive = true; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 586 | LOG(INFO) << "Debugger is active"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | void Dbg::Disconnected() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 590 | CHECK(gDebuggerConnected); |
| 591 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 592 | LOG(INFO) << "Debugger is no longer active"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 593 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 594 | // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread |
| 595 | // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener |
| 596 | // and clear the object registry. |
| 597 | Runtime* runtime = Runtime::Current(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 598 | Thread* self = Thread::Current(); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 599 | { |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 600 | // Required for DisableDeoptimization. |
| 601 | gc::ScopedGCCriticalSection gcs(self, |
| 602 | gc::kGcCauseInstrumentation, |
| 603 | gc::kCollectorTypeInstrumentation); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 604 | ScopedSuspendAll ssa(__FUNCTION__); |
| 605 | ThreadState old_state = self->SetStateUnsafe(kRunnable); |
| 606 | // Debugger may not be active at this point. |
| 607 | if (IsDebuggerActive()) { |
| 608 | { |
| 609 | // Since we're going to disable deoptimization, we clear the deoptimization requests queue. |
| 610 | // This prevents us from having any pending deoptimization request when the debugger attaches |
| 611 | // to us again while no event has been requested yet. |
Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 612 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 613 | deoptimization_requests_.clear(); |
| 614 | full_deoptimization_event_count_ = 0U; |
| 615 | } |
| 616 | if (instrumentation_events_ != 0) { |
| 617 | runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener, |
| 618 | instrumentation_events_); |
| 619 | instrumentation_events_ = 0; |
| 620 | } |
| 621 | if (RequiresDeoptimization()) { |
| 622 | runtime->GetInstrumentation()->DisableDeoptimization(kDbgInstrumentationKey); |
| 623 | } |
| 624 | gDebuggerActive = false; |
Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 625 | } |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 626 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 627 | } |
Sebastien Hertz | 55f6534 | 2015-01-13 22:48:34 +0100 | [diff] [blame] | 628 | |
| 629 | { |
| 630 | ScopedObjectAccess soa(self); |
| 631 | gRegistry->Clear(); |
| 632 | } |
| 633 | |
| 634 | gDebuggerConnected = false; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 635 | } |
| 636 | |
Sebastien Hertz | b3b173b | 2015-02-06 09:16:32 +0100 | [diff] [blame] | 637 | void Dbg::ConfigureJdwp(const JDWP::JdwpOptions& jdwp_options) { |
| 638 | CHECK_NE(jdwp_options.transport, JDWP::kJdwpTransportUnknown); |
| 639 | gJdwpOptions = jdwp_options; |
| 640 | gJdwpConfigured = true; |
| 641 | } |
| 642 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 643 | bool Dbg::IsJdwpConfigured() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 644 | return gJdwpConfigured; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | int64_t Dbg::LastDebuggerActivity() { |
Elliott Hughes | ca95152 | 2011-12-05 12:01:32 -0800 | [diff] [blame] | 648 | return gJdwpState->LastDebuggerActivity(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 649 | } |
| 650 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 651 | void Dbg::UndoDebuggerSuspensions() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 652 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 653 | } |
| 654 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 655 | std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 656 | JDWP::JdwpError error; |
| 657 | mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error); |
| 658 | if (o == nullptr) { |
| 659 | if (error == JDWP::ERR_NONE) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 660 | return "null"; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 661 | } else { |
| 662 | return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); |
| 663 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 664 | } |
| 665 | if (!o->IsClass()) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 666 | 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] | 667 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 668 | return GetClassName(o->AsClass()); |
| 669 | } |
| 670 | |
| 671 | std::string Dbg::GetClassName(mirror::Class* klass) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 672 | if (klass == nullptr) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 673 | return "null"; |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 674 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 675 | std::string temp; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 676 | return DescriptorToName(klass->GetDescriptor(&temp)); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 677 | } |
| 678 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 679 | JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 680 | JDWP::JdwpError status; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 681 | mirror::Class* c = DecodeClass(id, &status); |
| 682 | if (c == nullptr) { |
| 683 | *class_object_id = 0; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 684 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 685 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 686 | *class_object_id = gRegistry->Add(c); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 687 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 688 | } |
| 689 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 690 | JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 691 | JDWP::JdwpError status; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 692 | mirror::Class* c = DecodeClass(id, &status); |
| 693 | if (c == nullptr) { |
| 694 | *superclass_id = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 695 | return status; |
| 696 | } |
| 697 | if (c->IsInterface()) { |
| 698 | // http://code.google.com/p/android/issues/detail?id=20856 |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 699 | *superclass_id = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 700 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 701 | *superclass_id = gRegistry->Add(c->GetSuperClass()); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 702 | } |
| 703 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 704 | } |
| 705 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 706 | JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 707 | JDWP::JdwpError error; |
| 708 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 709 | if (o == nullptr) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 710 | return JDWP::ERR_INVALID_OBJECT; |
| 711 | } |
| 712 | expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader())); |
| 713 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 714 | } |
| 715 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 716 | JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 717 | JDWP::JdwpError error; |
| 718 | mirror::Class* c = DecodeClass(id, &error); |
| 719 | if (c == nullptr) { |
| 720 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 721 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 722 | |
| 723 | uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask; |
| 724 | |
Yevgeny Rouban | de34eea | 2014-02-15 01:06:03 +0700 | [diff] [blame] | 725 | // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set, |
| 726 | // not interfaces. |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 727 | // 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] | 728 | if ((access_flags & kAccInterface) == 0) { |
| 729 | access_flags |= kAccSuper; |
| 730 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 731 | |
| 732 | expandBufAdd4BE(pReply, access_flags); |
| 733 | |
| 734 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 735 | } |
| 736 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 737 | JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { |
| 738 | JDWP::JdwpError error; |
| 739 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 740 | if (o == nullptr) { |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 741 | return JDWP::ERR_INVALID_OBJECT; |
| 742 | } |
| 743 | |
| 744 | // Ensure all threads are suspended while we read objects' lock words. |
| 745 | Thread* self = Thread::Current(); |
Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 746 | CHECK_EQ(self->GetState(), kRunnable); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 747 | |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 748 | MonitorInfo monitor_info; |
| 749 | { |
| 750 | ScopedThreadSuspension sts(self, kSuspended); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 751 | ScopedSuspendAll ssa(__FUNCTION__); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 752 | monitor_info = MonitorInfo(o); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 753 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 754 | if (monitor_info.owner_ != nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 755 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer())); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 756 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 757 | expandBufAddObjectId(reply, gRegistry->Add(nullptr)); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 758 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 759 | expandBufAdd4BE(reply, monitor_info.entry_count_); |
| 760 | expandBufAdd4BE(reply, monitor_info.waiters_.size()); |
| 761 | for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) { |
| 762 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer())); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 763 | } |
| 764 | return JDWP::ERR_NONE; |
| 765 | } |
| 766 | |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 767 | JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 768 | std::vector<JDWP::ObjectId>* monitors, |
| 769 | std::vector<uint32_t>* stack_depths) { |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 770 | struct OwnedMonitorVisitor : public StackVisitor { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 771 | OwnedMonitorVisitor(Thread* thread, Context* context, |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 772 | std::vector<JDWP::ObjectId>* monitor_vector, |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 773 | std::vector<uint32_t>* stack_depth_vector) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 774 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 775 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 776 | current_stack_depth(0), |
| 777 | monitors(monitor_vector), |
| 778 | stack_depths(stack_depth_vector) {} |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 779 | |
| 780 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 781 | // annotalysis. |
| 782 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 783 | if (!GetMethod()->IsRuntimeMethod()) { |
| 784 | Monitor::VisitLocks(this, AppendOwnedMonitors, this); |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 785 | ++current_stack_depth; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 786 | } |
| 787 | return true; |
| 788 | } |
| 789 | |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 790 | static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 791 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 792 | OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 793 | visitor->monitors->push_back(gRegistry->Add(owned_monitor)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 794 | visitor->stack_depths->push_back(visitor->current_stack_depth); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 795 | } |
| 796 | |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 797 | size_t current_stack_depth; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 798 | std::vector<JDWP::ObjectId>* const monitors; |
| 799 | std::vector<uint32_t>* const stack_depths; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 800 | }; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 801 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 802 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 803 | JDWP::JdwpError error; |
| 804 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 805 | if (thread == nullptr) { |
| 806 | return error; |
| 807 | } |
| 808 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 809 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 810 | } |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 811 | std::unique_ptr<Context> context(Context::Create()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 812 | OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 813 | visitor.WalkStack(); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 814 | return JDWP::ERR_NONE; |
| 815 | } |
| 816 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 817 | JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 818 | JDWP::ObjectId* contended_monitor) { |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 819 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 820 | *contended_monitor = 0; |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 821 | JDWP::JdwpError error; |
| 822 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 823 | if (thread == nullptr) { |
| 824 | return error; |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 825 | } |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 826 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 827 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 828 | } |
| 829 | mirror::Object* contended_monitor_obj = Monitor::GetContendedMonitor(thread); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 830 | // Add() requires the thread_list_lock_ not held to avoid the lock |
| 831 | // level violation. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 832 | *contended_monitor = gRegistry->Add(contended_monitor_obj); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 833 | return JDWP::ERR_NONE; |
| 834 | } |
| 835 | |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 836 | JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 837 | std::vector<uint64_t>* counts) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 838 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 839 | heap->CollectGarbage(false); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 840 | std::vector<mirror::Class*> classes; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 841 | counts->clear(); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 842 | for (size_t i = 0; i < class_ids.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 843 | JDWP::JdwpError error; |
| 844 | mirror::Class* c = DecodeClass(class_ids[i], &error); |
| 845 | if (c == nullptr) { |
| 846 | return error; |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 847 | } |
| 848 | classes.push_back(c); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 849 | counts->push_back(0); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 850 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 851 | heap->CountInstances(classes, false, &(*counts)[0]); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 852 | return JDWP::ERR_NONE; |
| 853 | } |
| 854 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 855 | JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, |
| 856 | std::vector<JDWP::ObjectId>* instances) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 857 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 858 | // We only want reachable instances, so do a GC. |
| 859 | heap->CollectGarbage(false); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 860 | JDWP::JdwpError error; |
| 861 | mirror::Class* c = DecodeClass(class_id, &error); |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 862 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 863 | return error; |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 864 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 865 | std::vector<mirror::Object*> raw_instances; |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 866 | Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances); |
| 867 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 868 | instances->push_back(gRegistry->Add(raw_instances[i])); |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 869 | } |
| 870 | return JDWP::ERR_NONE; |
| 871 | } |
| 872 | |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 873 | JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 874 | std::vector<JDWP::ObjectId>* referring_objects) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 875 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 876 | heap->CollectGarbage(false); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 877 | JDWP::JdwpError error; |
| 878 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 879 | if (o == nullptr) { |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 880 | return JDWP::ERR_INVALID_OBJECT; |
| 881 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 882 | std::vector<mirror::Object*> raw_instances; |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 883 | heap->GetReferringObjects(o, max_count, raw_instances); |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 884 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 885 | referring_objects->push_back(gRegistry->Add(raw_instances[i])); |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 886 | } |
| 887 | return JDWP::ERR_NONE; |
| 888 | } |
| 889 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 890 | JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { |
| 891 | JDWP::JdwpError error; |
| 892 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 893 | if (o == nullptr) { |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 894 | return JDWP::ERR_INVALID_OBJECT; |
| 895 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 896 | gRegistry->DisableCollection(object_id); |
| 897 | return JDWP::ERR_NONE; |
| 898 | } |
| 899 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 900 | JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { |
| 901 | JDWP::JdwpError error; |
| 902 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 903 | // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI |
| 904 | // also ignores these cases and never return an error. However it's not obvious why this command |
| 905 | // should behave differently from DisableCollection and IsCollected commands. So let's be more |
| 906 | // strict and return an error if this happens. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 907 | if (o == nullptr) { |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 908 | return JDWP::ERR_INVALID_OBJECT; |
| 909 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 910 | gRegistry->EnableCollection(object_id); |
| 911 | return JDWP::ERR_NONE; |
| 912 | } |
| 913 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 914 | JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) { |
| 915 | *is_collected = true; |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 916 | if (object_id == 0) { |
| 917 | // Null object id is invalid. |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 918 | return JDWP::ERR_INVALID_OBJECT; |
| 919 | } |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 920 | // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However |
| 921 | // the RI seems to ignore this and assume object has been collected. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 922 | JDWP::JdwpError error; |
| 923 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 924 | if (o != nullptr) { |
| 925 | *is_collected = gRegistry->IsCollected(object_id); |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 926 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 927 | return JDWP::ERR_NONE; |
| 928 | } |
| 929 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 930 | void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) { |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 931 | gRegistry->DisposeObject(object_id, reference_count); |
| 932 | } |
| 933 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 934 | JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) { |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 935 | DCHECK(klass != nullptr); |
| 936 | if (klass->IsArrayClass()) { |
| 937 | return JDWP::TT_ARRAY; |
| 938 | } else if (klass->IsInterface()) { |
| 939 | return JDWP::TT_INTERFACE; |
| 940 | } else { |
| 941 | return JDWP::TT_CLASS; |
| 942 | } |
| 943 | } |
| 944 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 945 | JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 946 | JDWP::JdwpError error; |
| 947 | mirror::Class* c = DecodeClass(class_id, &error); |
| 948 | if (c == nullptr) { |
| 949 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 950 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 951 | |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 952 | JDWP::JdwpTypeTag type_tag = GetTypeTag(c); |
| 953 | expandBufAdd1(pReply, type_tag); |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 954 | expandBufAddRefTypeId(pReply, class_id); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 955 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 956 | } |
| 957 | |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 958 | // Get the complete list of reference classes (i.e. all classes except |
| 959 | // the primitive types). |
| 960 | // Returns a newly-allocated buffer full of RefTypeId values. |
| 961 | class ClassListCreator : public ClassVisitor { |
| 962 | public: |
| 963 | explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes_(classes) {} |
| 964 | |
| 965 | bool Visit(mirror::Class* c) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
| 966 | if (!c->IsPrimitive()) { |
| 967 | classes_->push_back(Dbg::GetObjectRegistry()->AddRefType(c)); |
| 968 | } |
| 969 | return true; |
| 970 | } |
| 971 | |
| 972 | private: |
| 973 | std::vector<JDWP::RefTypeId>* const classes_; |
| 974 | }; |
| 975 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 976 | void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) { |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 977 | ClassListCreator clc(classes); |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 978 | Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(&clc); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 979 | } |
| 980 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 981 | JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, |
| 982 | uint32_t* pStatus, std::string* pDescriptor) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 983 | JDWP::JdwpError error; |
| 984 | mirror::Class* c = DecodeClass(class_id, &error); |
| 985 | if (c == nullptr) { |
| 986 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 987 | } |
| 988 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 989 | if (c->IsArrayClass()) { |
| 990 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 991 | *pTypeTag = JDWP::TT_ARRAY; |
| 992 | } else { |
| 993 | if (c->IsErroneous()) { |
| 994 | *pStatus = JDWP::CS_ERROR; |
| 995 | } else { |
| 996 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED; |
| 997 | } |
| 998 | *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 999 | } |
| 1000 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1001 | if (pDescriptor != nullptr) { |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1002 | std::string temp; |
| 1003 | *pDescriptor = c->GetDescriptor(&temp); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1004 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1005 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1006 | } |
| 1007 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1008 | void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1009 | std::vector<mirror::Class*> classes; |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 1010 | Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1011 | ids->clear(); |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1012 | for (size_t i = 0; i < classes.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1013 | ids->push_back(gRegistry->Add(classes[i])); |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1014 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1015 | } |
| 1016 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1017 | JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { |
| 1018 | JDWP::JdwpError error; |
| 1019 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1020 | if (o == nullptr) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1021 | return JDWP::ERR_INVALID_OBJECT; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1022 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1023 | |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1024 | JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass()); |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1025 | JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1026 | |
| 1027 | expandBufAdd1(pReply, type_tag); |
| 1028 | expandBufAddRefTypeId(pReply, type_id); |
| 1029 | |
| 1030 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1031 | } |
| 1032 | |
Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 1033 | JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1034 | JDWP::JdwpError error; |
| 1035 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1036 | if (c == nullptr) { |
| 1037 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1038 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1039 | std::string temp; |
| 1040 | *signature = c->GetDescriptor(&temp); |
Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 1041 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1042 | } |
| 1043 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1044 | JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) { |
| 1045 | JDWP::JdwpError error; |
| 1046 | mirror::Class* c = DecodeClass(class_id, &error); |
Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1047 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1048 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1049 | } |
Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1050 | const char* source_file = c->GetSourceFile(); |
| 1051 | if (source_file == nullptr) { |
Sebastien Hertz | b7054ba | 2014-03-13 11:52:31 +0100 | [diff] [blame] | 1052 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1053 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1054 | *result = source_file; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1055 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1058 | JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1059 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1060 | JDWP::JdwpError error; |
| 1061 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1062 | if (error != JDWP::ERR_NONE) { |
| 1063 | *tag = JDWP::JT_VOID; |
| 1064 | return error; |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1065 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1066 | *tag = TagFromObject(soa, o); |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1067 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1068 | } |
| 1069 | |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1070 | size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1071 | switch (tag) { |
| 1072 | case JDWP::JT_VOID: |
| 1073 | return 0; |
| 1074 | case JDWP::JT_BYTE: |
| 1075 | case JDWP::JT_BOOLEAN: |
| 1076 | return 1; |
| 1077 | case JDWP::JT_CHAR: |
| 1078 | case JDWP::JT_SHORT: |
| 1079 | return 2; |
| 1080 | case JDWP::JT_FLOAT: |
| 1081 | case JDWP::JT_INT: |
| 1082 | return 4; |
| 1083 | case JDWP::JT_ARRAY: |
| 1084 | case JDWP::JT_OBJECT: |
| 1085 | case JDWP::JT_STRING: |
| 1086 | case JDWP::JT_THREAD: |
| 1087 | case JDWP::JT_THREAD_GROUP: |
| 1088 | case JDWP::JT_CLASS_LOADER: |
| 1089 | case JDWP::JT_CLASS_OBJECT: |
| 1090 | return sizeof(JDWP::ObjectId); |
| 1091 | case JDWP::JT_DOUBLE: |
| 1092 | case JDWP::JT_LONG: |
| 1093 | return 8; |
| 1094 | default: |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1095 | LOG(FATAL) << "Unknown tag " << tag; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1096 | return -1; |
| 1097 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1098 | } |
| 1099 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1100 | JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { |
| 1101 | JDWP::JdwpError error; |
| 1102 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
| 1103 | if (a == nullptr) { |
| 1104 | return error; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1105 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1106 | *length = a->GetLength(); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1107 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1108 | } |
| 1109 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1110 | 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] | 1111 | JDWP::JdwpError error; |
| 1112 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1113 | if (a == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1114 | return error; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1115 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1116 | |
| 1117 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 1118 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1119 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1120 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1121 | JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType()); |
| 1122 | expandBufAdd1(pReply, element_tag); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1123 | expandBufAdd4BE(pReply, count); |
| 1124 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1125 | if (IsPrimitiveTag(element_tag)) { |
| 1126 | size_t width = GetTagWidth(element_tag); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1127 | uint8_t* dst = expandBufAddSpace(pReply, count * width); |
| 1128 | if (width == 8) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1129 | 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] | 1130 | for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]); |
| 1131 | } else if (width == 4) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1132 | 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] | 1133 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]); |
| 1134 | } else if (width == 2) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1135 | 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] | 1136 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]); |
| 1137 | } else { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1138 | 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] | 1139 | memcpy(dst, &src[offset * width], count * width); |
| 1140 | } |
| 1141 | } else { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1142 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1143 | mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>(); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1144 | for (int i = 0; i < count; ++i) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1145 | mirror::Object* element = oa->Get(offset + i); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1146 | JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element) |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1147 | : element_tag; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1148 | expandBufAdd1(pReply, specific_tag); |
| 1149 | expandBufAddObjectId(pReply, gRegistry->Add(element)); |
| 1150 | } |
| 1151 | } |
| 1152 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1153 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1154 | } |
| 1155 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1156 | template <typename T> |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1157 | 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] | 1158 | NO_THREAD_SAFETY_ANALYSIS { |
| 1159 | // TODO: fix when annotalysis correctly handles non-member functions. |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1160 | DCHECK(a->GetClass()->IsPrimitiveArray()); |
| 1161 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1162 | T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1163 | for (int i = 0; i < count; ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1164 | *dst++ = src->ReadValue(sizeof(T)); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1165 | } |
| 1166 | } |
| 1167 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1168 | JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1169 | JDWP::Request* request) { |
| 1170 | JDWP::JdwpError error; |
| 1171 | mirror::Array* dst = DecodeNonNullArray(array_id, &error); |
| 1172 | if (dst == nullptr) { |
| 1173 | return error; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1174 | } |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1175 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1176 | if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) { |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1177 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1178 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1179 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1180 | JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType()); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1181 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1182 | if (IsPrimitiveTag(element_tag)) { |
| 1183 | size_t width = GetTagWidth(element_tag); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1184 | if (width == 8) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1185 | CopyArrayData<uint64_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1186 | } else if (width == 4) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1187 | CopyArrayData<uint32_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1188 | } else if (width == 2) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1189 | CopyArrayData<uint16_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1190 | } else { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1191 | CopyArrayData<uint8_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1192 | } |
| 1193 | } else { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1194 | mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>(); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1195 | for (int i = 0; i < count; ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1196 | JDWP::ObjectId id = request->ReadObjectId(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1197 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 1198 | if (error != JDWP::ERR_NONE) { |
| 1199 | return error; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1200 | } |
Sebastien Hertz | 2e1c16d | 2015-08-28 11:57:49 +0200 | [diff] [blame] | 1201 | // Check if the object's type is compatible with the array's type. |
| 1202 | if (o != nullptr && !o->InstanceOf(oa->GetClass()->GetComponentType())) { |
| 1203 | return JDWP::ERR_TYPE_MISMATCH; |
| 1204 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1205 | oa->Set<false>(offset + i, o); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1206 | } |
| 1207 | } |
| 1208 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1209 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1210 | } |
| 1211 | |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1212 | JDWP::JdwpError Dbg::CreateString(const std::string& str, JDWP::ObjectId* new_string_id) { |
| 1213 | Thread* self = Thread::Current(); |
| 1214 | mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str()); |
| 1215 | if (new_string == nullptr) { |
| 1216 | DCHECK(self->IsExceptionPending()); |
| 1217 | self->ClearException(); |
| 1218 | LOG(ERROR) << "Could not allocate string"; |
| 1219 | *new_string_id = 0; |
| 1220 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1221 | } |
| 1222 | *new_string_id = gRegistry->Add(new_string); |
| 1223 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1224 | } |
| 1225 | |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1226 | 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] | 1227 | JDWP::JdwpError error; |
| 1228 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1229 | if (c == nullptr) { |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1230 | *new_object_id = 0; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1231 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1232 | } |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1233 | Thread* self = Thread::Current(); |
Sebastien Hertz | 56d5e50 | 2015-11-03 17:38:35 +0100 | [diff] [blame] | 1234 | mirror::Object* new_object; |
| 1235 | if (c->IsStringClass()) { |
| 1236 | // Special case for java.lang.String. |
| 1237 | gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); |
| 1238 | mirror::SetStringCountVisitor visitor(0); |
| 1239 | new_object = mirror::String::Alloc<true>(self, 0, allocator_type, visitor); |
| 1240 | } else { |
| 1241 | new_object = c->AllocObject(self); |
| 1242 | } |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1243 | if (new_object == nullptr) { |
| 1244 | DCHECK(self->IsExceptionPending()); |
| 1245 | self->ClearException(); |
| 1246 | LOG(ERROR) << "Could not allocate object of type " << PrettyDescriptor(c); |
| 1247 | *new_object_id = 0; |
| 1248 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1249 | } |
| 1250 | *new_object_id = gRegistry->Add(new_object); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1251 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1252 | } |
| 1253 | |
Elliott Hughes | bf13d36 | 2011-12-08 15:51:37 -0800 | [diff] [blame] | 1254 | /* |
| 1255 | * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]". |
| 1256 | */ |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1257 | JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length, |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1258 | JDWP::ObjectId* new_array_id) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1259 | JDWP::JdwpError error; |
| 1260 | mirror::Class* c = DecodeClass(array_class_id, &error); |
| 1261 | if (c == nullptr) { |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1262 | *new_array_id = 0; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1263 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1264 | } |
Sebastien Hertz | 2c3e77a | 2015-04-02 16:26:48 +0200 | [diff] [blame] | 1265 | Thread* self = Thread::Current(); |
| 1266 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1267 | mirror::Array* new_array = mirror::Array::Alloc<true>(self, c, length, |
| 1268 | c->GetComponentSizeShift(), |
| 1269 | heap->GetCurrentAllocator()); |
| 1270 | if (new_array == nullptr) { |
| 1271 | DCHECK(self->IsExceptionPending()); |
| 1272 | self->ClearException(); |
| 1273 | LOG(ERROR) << "Could not allocate array of type " << PrettyDescriptor(c); |
| 1274 | *new_array_id = 0; |
| 1275 | return JDWP::ERR_OUT_OF_MEMORY; |
| 1276 | } |
| 1277 | *new_array_id = gRegistry->Add(new_array); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1278 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1279 | } |
| 1280 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1281 | JDWP::FieldId Dbg::ToFieldId(const ArtField* f) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1282 | return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1283 | } |
| 1284 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1285 | static JDWP::MethodId ToMethodId(const ArtMethod* m) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1286 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1287 | return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1288 | } |
| 1289 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1290 | static ArtField* FromFieldId(JDWP::FieldId fid) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1291 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1292 | return reinterpret_cast<ArtField*>(static_cast<uintptr_t>(fid)); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1293 | } |
| 1294 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1295 | static ArtMethod* FromMethodId(JDWP::MethodId mid) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1296 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1297 | return reinterpret_cast<ArtMethod*>(static_cast<uintptr_t>(mid)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1298 | } |
| 1299 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1300 | bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) { |
| 1301 | CHECK(event_thread != nullptr); |
| 1302 | JDWP::JdwpError error; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1303 | mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>( |
| 1304 | expected_thread_id, &error); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1305 | return expected_thread_peer == event_thread->GetPeer(); |
| 1306 | } |
| 1307 | |
| 1308 | bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location, |
| 1309 | const JDWP::EventLocation& event_location) { |
| 1310 | if (expected_location.dex_pc != event_location.dex_pc) { |
| 1311 | return false; |
| 1312 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1313 | ArtMethod* m = FromMethodId(expected_location.method_id); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1314 | return m == event_location.method; |
| 1315 | } |
| 1316 | |
| 1317 | bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1318 | if (event_class == nullptr) { |
| 1319 | return false; |
| 1320 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1321 | JDWP::JdwpError error; |
| 1322 | mirror::Class* expected_class = DecodeClass(class_id, &error); |
| 1323 | CHECK(expected_class != nullptr); |
| 1324 | return expected_class->IsAssignableFrom(event_class); |
| 1325 | } |
| 1326 | |
| 1327 | 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] | 1328 | ArtField* event_field) { |
| 1329 | ArtField* expected_field = FromFieldId(expected_field_id); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1330 | if (expected_field != event_field) { |
| 1331 | return false; |
| 1332 | } |
| 1333 | return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id); |
| 1334 | } |
| 1335 | |
| 1336 | bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) { |
| 1337 | JDWP::JdwpError error; |
| 1338 | mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error); |
| 1339 | return modifier_instance == event_instance; |
| 1340 | } |
| 1341 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1342 | void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, ArtMethod* m, uint32_t dex_pc) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1343 | if (m == nullptr) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1344 | memset(location, 0, sizeof(*location)); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1345 | } else { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1346 | mirror::Class* c = m->GetDeclaringClass(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1347 | location->type_tag = GetTypeTag(c); |
| 1348 | location->class_id = gRegistry->AddRefType(c); |
| 1349 | location->method_id = ToMethodId(m); |
| 1350 | location->dex_pc = (m->IsNative() || m->IsProxyMethod()) ? static_cast<uint64_t>(-1) : dex_pc; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1351 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1352 | } |
| 1353 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1354 | std::string Dbg::GetMethodName(JDWP::MethodId method_id) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1355 | ArtMethod* m = FromMethodId(method_id); |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1356 | if (m == nullptr) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1357 | return "null"; |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1358 | } |
Sebastien Hertz | 415fd08 | 2015-06-01 11:42:27 +0200 | [diff] [blame] | 1359 | return m->GetInterfaceMethodIfProxy(sizeof(void*))->GetName(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1360 | } |
| 1361 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1362 | std::string Dbg::GetFieldName(JDWP::FieldId field_id) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1363 | ArtField* f = FromFieldId(field_id); |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1364 | if (f == nullptr) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1365 | return "null"; |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1366 | } |
| 1367 | return f->GetName(); |
Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 1368 | } |
| 1369 | |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1370 | /* |
| 1371 | * Augment the access flags for synthetic methods and fields by setting |
| 1372 | * the (as described by the spec) "0xf0000000 bit". Also, strip out any |
| 1373 | * flags not specified by the Java programming language. |
| 1374 | */ |
| 1375 | static uint32_t MangleAccessFlags(uint32_t accessFlags) { |
| 1376 | accessFlags &= kAccJavaFlagsMask; |
| 1377 | if ((accessFlags & kAccSynthetic) != 0) { |
| 1378 | accessFlags |= 0xf0000000; |
| 1379 | } |
| 1380 | return accessFlags; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1381 | } |
| 1382 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1383 | /* |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1384 | * Circularly shifts registers so that arguments come first. Debuggers |
| 1385 | * expect slots to begin with arguments, but dex code places them at |
| 1386 | * the end. |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1387 | */ |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1388 | static uint16_t MangleSlot(uint16_t slot, ArtMethod* m) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1389 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1390 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1391 | if (code_item == nullptr) { |
| 1392 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1393 | // return the slot as is since all registers are arguments. |
| 1394 | LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m); |
| 1395 | return slot; |
| 1396 | } |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1397 | uint16_t ins_size = code_item->ins_size_; |
| 1398 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1399 | if (slot >= locals_size) { |
| 1400 | return slot - locals_size; |
| 1401 | } else { |
| 1402 | return slot + ins_size; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1403 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1404 | } |
| 1405 | |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1406 | /* |
| 1407 | * Circularly shifts registers so that arguments come last. Reverts |
| 1408 | * slots to dex style argument placement. |
| 1409 | */ |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1410 | static uint16_t DemangleSlot(uint16_t slot, ArtMethod* m, JDWP::JdwpError* error) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1411 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1412 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1413 | if (code_item == nullptr) { |
| 1414 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1415 | // return the slot as is since all registers are arguments. |
| 1416 | LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1417 | uint16_t vreg_count = ArtMethod::NumArgRegisters(m->GetShorty()); |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1418 | if (slot < vreg_count) { |
| 1419 | *error = JDWP::ERR_NONE; |
| 1420 | return slot; |
| 1421 | } |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1422 | } else { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1423 | if (slot < code_item->registers_size_) { |
| 1424 | uint16_t ins_size = code_item->ins_size_; |
| 1425 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1426 | *error = JDWP::ERR_NONE; |
| 1427 | return (slot < ins_size) ? slot + locals_size : slot - ins_size; |
| 1428 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1429 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 1430 | |
| 1431 | // Slot is invalid in the method. |
| 1432 | LOG(ERROR) << "Invalid local slot " << slot << " for method " << PrettyMethod(m); |
| 1433 | *error = JDWP::ERR_INVALID_SLOT; |
| 1434 | return DexFile::kDexNoIndex16; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1435 | } |
| 1436 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1437 | JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, |
| 1438 | JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1439 | JDWP::JdwpError error; |
| 1440 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1441 | if (c == nullptr) { |
| 1442 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1443 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1444 | |
| 1445 | size_t instance_field_count = c->NumInstanceFields(); |
| 1446 | size_t static_field_count = c->NumStaticFields(); |
| 1447 | |
| 1448 | expandBufAdd4BE(pReply, instance_field_count + static_field_count); |
| 1449 | |
| 1450 | for (size_t i = 0; i < instance_field_count + static_field_count; ++i) { |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1451 | ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : |
| 1452 | c->GetStaticField(i - instance_field_count); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1453 | expandBufAddFieldId(pReply, ToFieldId(f)); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1454 | expandBufAddUtf8String(pReply, f->GetName()); |
| 1455 | expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1456 | if (with_generic) { |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1457 | static const char genericSignature[1] = ""; |
| 1458 | expandBufAddUtf8String(pReply, genericSignature); |
| 1459 | } |
| 1460 | expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); |
| 1461 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1462 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1463 | } |
| 1464 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1465 | JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1466 | JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1467 | JDWP::JdwpError error; |
| 1468 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1469 | if (c == nullptr) { |
| 1470 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1471 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1472 | |
| 1473 | size_t direct_method_count = c->NumDirectMethods(); |
| 1474 | size_t virtual_method_count = c->NumVirtualMethods(); |
| 1475 | |
| 1476 | expandBufAdd4BE(pReply, direct_method_count + virtual_method_count); |
| 1477 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1478 | auto* cl = Runtime::Current()->GetClassLinker(); |
| 1479 | auto ptr_size = cl->GetImagePointerSize(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1480 | for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1481 | ArtMethod* m = i < direct_method_count ? |
| 1482 | c->GetDirectMethod(i, ptr_size) : c->GetVirtualMethod(i - direct_method_count, ptr_size); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1483 | expandBufAddMethodId(pReply, ToMethodId(m)); |
Sebastien Hertz | 415fd08 | 2015-06-01 11:42:27 +0200 | [diff] [blame] | 1484 | expandBufAddUtf8String(pReply, m->GetInterfaceMethodIfProxy(sizeof(void*))->GetName()); |
| 1485 | expandBufAddUtf8String(pReply, |
| 1486 | m->GetInterfaceMethodIfProxy(sizeof(void*))->GetSignature().ToString()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1487 | if (with_generic) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1488 | const char* generic_signature = ""; |
| 1489 | expandBufAddUtf8String(pReply, generic_signature); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1490 | } |
| 1491 | expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags())); |
| 1492 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1493 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1494 | } |
| 1495 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1496 | JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1497 | JDWP::JdwpError error; |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1498 | Thread* self = Thread::Current(); |
| 1499 | StackHandleScope<1> hs(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1500 | Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error))); |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1501 | if (c.Get() == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1502 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1503 | } |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1504 | size_t interface_count = c->NumDirectInterfaces(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1505 | expandBufAdd4BE(pReply, interface_count); |
| 1506 | for (size_t i = 0; i < interface_count; ++i) { |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1507 | expandBufAddRefTypeId(pReply, |
| 1508 | gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i))); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1509 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1510 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1513 | void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1514 | struct DebugCallbackContext { |
| 1515 | int numItems; |
| 1516 | JDWP::ExpandBuf* pReply; |
| 1517 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1518 | static bool Callback(void* context, uint32_t address, uint32_t line_number) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1519 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1520 | expandBufAdd8BE(pContext->pReply, address); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1521 | expandBufAdd4BE(pContext->pReply, line_number); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1522 | pContext->numItems++; |
Sebastien Hertz | f2910ee | 2013-10-19 16:39:24 +0200 | [diff] [blame] | 1523 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1524 | } |
| 1525 | }; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1526 | ArtMethod* m = FromMethodId(method_id); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1527 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1528 | uint64_t start, end; |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1529 | if (code_item == nullptr) { |
| 1530 | DCHECK(m->IsNative() || m->IsProxyMethod()); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1531 | start = -1; |
| 1532 | end = -1; |
| 1533 | } else { |
| 1534 | start = 0; |
jeffhao | 14f0db9 | 2012-12-14 17:50:42 -0800 | [diff] [blame] | 1535 | // Return the index of the last instruction |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1536 | end = code_item->insns_size_in_code_units_ - 1; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1537 | } |
| 1538 | |
| 1539 | expandBufAdd8BE(pReply, start); |
| 1540 | expandBufAdd8BE(pReply, end); |
| 1541 | |
| 1542 | // Add numLines later |
| 1543 | size_t numLinesOffset = expandBufGetLength(pReply); |
| 1544 | expandBufAdd4BE(pReply, 0); |
| 1545 | |
| 1546 | DebugCallbackContext context; |
| 1547 | context.numItems = 0; |
| 1548 | context.pReply = pReply; |
| 1549 | |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1550 | if (code_item != nullptr) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1551 | m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1552 | DebugCallbackContext::Callback, nullptr, &context); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1553 | } |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1554 | |
| 1555 | JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1556 | } |
| 1557 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1558 | void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, |
| 1559 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1560 | struct DebugCallbackContext { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1561 | ArtMethod* method; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1562 | JDWP::ExpandBuf* pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1563 | size_t variable_count; |
| 1564 | bool with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1565 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1566 | static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, |
| 1567 | const char* name, const char* descriptor, const char* signature) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1568 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1569 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1570 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1571 | VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", |
| 1572 | pContext->variable_count, startAddress, endAddress - startAddress, |
| 1573 | name, descriptor, signature, slot, |
| 1574 | MangleSlot(slot, pContext->method)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1575 | |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1576 | slot = MangleSlot(slot, pContext->method); |
Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1577 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1578 | expandBufAdd8BE(pContext->pReply, startAddress); |
| 1579 | expandBufAddUtf8String(pContext->pReply, name); |
| 1580 | expandBufAddUtf8String(pContext->pReply, descriptor); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1581 | if (pContext->with_generic) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1582 | expandBufAddUtf8String(pContext->pReply, signature); |
| 1583 | } |
| 1584 | expandBufAdd4BE(pContext->pReply, endAddress - startAddress); |
| 1585 | expandBufAdd4BE(pContext->pReply, slot); |
| 1586 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1587 | ++pContext->variable_count; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1588 | } |
| 1589 | }; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1590 | ArtMethod* m = FromMethodId(method_id); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1591 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1592 | // arg_count considers doubles and longs to take 2 units. |
| 1593 | // variable_count considers everything to take 1 unit. |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1594 | std::string shorty(m->GetShorty()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1595 | expandBufAdd4BE(pReply, ArtMethod::NumArgRegisters(shorty)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1596 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1597 | // We don't know the total number of variables yet, so leave a blank and update it later. |
| 1598 | size_t variable_count_offset = expandBufGetLength(pReply); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1599 | expandBufAdd4BE(pReply, 0); |
| 1600 | |
| 1601 | DebugCallbackContext context; |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1602 | context.method = m; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1603 | context.pReply = pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1604 | context.variable_count = 0; |
| 1605 | context.with_generic = with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1606 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1607 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1608 | if (code_item != nullptr) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1609 | m->GetDexFile()->DecodeDebugInfo( |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1610 | code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback, |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1611 | &context); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1612 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1613 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1614 | JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1615 | } |
| 1616 | |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1617 | void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, |
| 1618 | JDWP::ExpandBuf* pReply) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1619 | ArtMethod* m = FromMethodId(method_id); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1620 | JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1621 | OutputJValue(tag, return_value, pReply); |
| 1622 | } |
| 1623 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1624 | void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, |
| 1625 | JDWP::ExpandBuf* pReply) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1626 | ArtField* f = FromFieldId(field_id); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1627 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1628 | OutputJValue(tag, field_value, pReply); |
| 1629 | } |
| 1630 | |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1631 | JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1632 | std::vector<uint8_t>* bytecodes) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1633 | ArtMethod* m = FromMethodId(method_id); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1634 | if (m == nullptr) { |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1635 | return JDWP::ERR_INVALID_METHODID; |
| 1636 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1637 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1638 | size_t byte_count = code_item->insns_size_in_code_units_ * 2; |
| 1639 | const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_); |
| 1640 | const uint8_t* end = begin + byte_count; |
| 1641 | for (const uint8_t* p = begin; p != end; ++p) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1642 | bytecodes->push_back(*p); |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1643 | } |
| 1644 | return JDWP::ERR_NONE; |
| 1645 | } |
| 1646 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1647 | JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1648 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1649 | } |
| 1650 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1651 | JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1652 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1653 | } |
| 1654 | |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1655 | static JValue GetArtFieldValue(ArtField* f, mirror::Object* o) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1656 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1657 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1658 | JValue field_value; |
| 1659 | switch (fieldType) { |
| 1660 | case Primitive::kPrimBoolean: |
| 1661 | field_value.SetZ(f->GetBoolean(o)); |
| 1662 | return field_value; |
| 1663 | |
| 1664 | case Primitive::kPrimByte: |
| 1665 | field_value.SetB(f->GetByte(o)); |
| 1666 | return field_value; |
| 1667 | |
| 1668 | case Primitive::kPrimChar: |
| 1669 | field_value.SetC(f->GetChar(o)); |
| 1670 | return field_value; |
| 1671 | |
| 1672 | case Primitive::kPrimShort: |
| 1673 | field_value.SetS(f->GetShort(o)); |
| 1674 | return field_value; |
| 1675 | |
| 1676 | case Primitive::kPrimInt: |
| 1677 | case Primitive::kPrimFloat: |
| 1678 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1679 | field_value.SetI(f->GetInt(o)); |
| 1680 | return field_value; |
| 1681 | |
| 1682 | case Primitive::kPrimLong: |
| 1683 | case Primitive::kPrimDouble: |
| 1684 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1685 | field_value.SetJ(f->GetLong(o)); |
| 1686 | return field_value; |
| 1687 | |
| 1688 | case Primitive::kPrimNot: |
| 1689 | field_value.SetL(f->GetObject(o)); |
| 1690 | return field_value; |
| 1691 | |
| 1692 | case Primitive::kPrimVoid: |
| 1693 | LOG(FATAL) << "Attempt to read from field of type 'void'"; |
| 1694 | UNREACHABLE(); |
| 1695 | } |
| 1696 | LOG(FATAL) << "Attempt to read from field of unknown type"; |
| 1697 | UNREACHABLE(); |
| 1698 | } |
| 1699 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1700 | static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id, |
| 1701 | JDWP::FieldId field_id, JDWP::ExpandBuf* pReply, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1702 | bool is_static) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1703 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1704 | JDWP::JdwpError error; |
| 1705 | mirror::Class* c = DecodeClass(ref_type_id, &error); |
| 1706 | if (ref_type_id != 0 && c == nullptr) { |
| 1707 | return error; |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1708 | } |
| 1709 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1710 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1711 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1712 | return JDWP::ERR_INVALID_OBJECT; |
| 1713 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1714 | ArtField* f = FromFieldId(field_id); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1715 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1716 | mirror::Class* receiver_class = c; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1717 | if (receiver_class == nullptr && o != nullptr) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1718 | receiver_class = o->GetClass(); |
| 1719 | } |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1720 | // TODO: should we give up now if receiver_class is null? |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1721 | if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1722 | LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1723 | return JDWP::ERR_INVALID_FIELDID; |
| 1724 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1725 | |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1726 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1727 | // TODO: should we change the tests and check both? |
| 1728 | if (is_static) { |
| 1729 | if (!f->IsStatic()) { |
| 1730 | return JDWP::ERR_INVALID_FIELDID; |
| 1731 | } |
| 1732 | } else { |
| 1733 | if (f->IsStatic()) { |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1734 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.GetValues" |
| 1735 | << " on static field " << PrettyField(f); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1736 | } |
| 1737 | } |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1738 | if (f->IsStatic()) { |
| 1739 | o = f->GetDeclaringClass(); |
| 1740 | } |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1741 | |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1742 | JValue field_value(GetArtFieldValue(f, o)); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1743 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1744 | Dbg::OutputJValue(tag, &field_value, pReply); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1745 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1746 | } |
| 1747 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1748 | JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1749 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1750 | return GetFieldValueImpl(0, object_id, field_id, pReply, false); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1751 | } |
| 1752 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1753 | JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, |
| 1754 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1755 | return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1756 | } |
| 1757 | |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1758 | static JDWP::JdwpError SetArtFieldValue(ArtField* f, mirror::Object* o, uint64_t value, int width) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1759 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1760 | Primitive::Type fieldType = f->GetTypeAsPrimitiveType(); |
| 1761 | // Debugging only happens at runtime so we know we are not running in a transaction. |
| 1762 | static constexpr bool kNoTransactionMode = false; |
| 1763 | switch (fieldType) { |
| 1764 | case Primitive::kPrimBoolean: |
| 1765 | CHECK_EQ(width, 1); |
| 1766 | f->SetBoolean<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1767 | return JDWP::ERR_NONE; |
| 1768 | |
| 1769 | case Primitive::kPrimByte: |
| 1770 | CHECK_EQ(width, 1); |
| 1771 | f->SetByte<kNoTransactionMode>(o, static_cast<uint8_t>(value)); |
| 1772 | return JDWP::ERR_NONE; |
| 1773 | |
| 1774 | case Primitive::kPrimChar: |
| 1775 | CHECK_EQ(width, 2); |
| 1776 | f->SetChar<kNoTransactionMode>(o, static_cast<uint16_t>(value)); |
| 1777 | return JDWP::ERR_NONE; |
| 1778 | |
| 1779 | case Primitive::kPrimShort: |
| 1780 | CHECK_EQ(width, 2); |
| 1781 | f->SetShort<kNoTransactionMode>(o, static_cast<int16_t>(value)); |
| 1782 | return JDWP::ERR_NONE; |
| 1783 | |
| 1784 | case Primitive::kPrimInt: |
| 1785 | case Primitive::kPrimFloat: |
| 1786 | CHECK_EQ(width, 4); |
| 1787 | // Int and Float must be treated as 32-bit values in JDWP. |
| 1788 | f->SetInt<kNoTransactionMode>(o, static_cast<int32_t>(value)); |
| 1789 | return JDWP::ERR_NONE; |
| 1790 | |
| 1791 | case Primitive::kPrimLong: |
| 1792 | case Primitive::kPrimDouble: |
| 1793 | CHECK_EQ(width, 8); |
| 1794 | // Long and Double must be treated as 64-bit values in JDWP. |
| 1795 | f->SetLong<kNoTransactionMode>(o, value); |
| 1796 | return JDWP::ERR_NONE; |
| 1797 | |
| 1798 | case Primitive::kPrimNot: { |
| 1799 | JDWP::JdwpError error; |
| 1800 | mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error); |
| 1801 | if (error != JDWP::ERR_NONE) { |
| 1802 | return JDWP::ERR_INVALID_OBJECT; |
| 1803 | } |
| 1804 | if (v != nullptr) { |
| 1805 | mirror::Class* field_type; |
| 1806 | { |
| 1807 | StackHandleScope<2> hs(Thread::Current()); |
| 1808 | HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v)); |
| 1809 | HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o)); |
| 1810 | field_type = f->GetType<true>(); |
| 1811 | } |
| 1812 | if (!field_type->IsAssignableFrom(v->GetClass())) { |
| 1813 | return JDWP::ERR_INVALID_OBJECT; |
| 1814 | } |
| 1815 | } |
| 1816 | f->SetObject<kNoTransactionMode>(o, v); |
| 1817 | return JDWP::ERR_NONE; |
| 1818 | } |
| 1819 | |
| 1820 | case Primitive::kPrimVoid: |
| 1821 | LOG(FATAL) << "Attempt to write to field of type 'void'"; |
| 1822 | UNREACHABLE(); |
| 1823 | } |
| 1824 | LOG(FATAL) << "Attempt to write to field of unknown type"; |
| 1825 | UNREACHABLE(); |
| 1826 | } |
| 1827 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1828 | static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1829 | uint64_t value, int width, bool is_static) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1830 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1831 | JDWP::JdwpError error; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1832 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1833 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1834 | return JDWP::ERR_INVALID_OBJECT; |
| 1835 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1836 | ArtField* f = FromFieldId(field_id); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1837 | |
| 1838 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1839 | // TODO: should we change the tests and check both? |
| 1840 | if (is_static) { |
| 1841 | if (!f->IsStatic()) { |
| 1842 | return JDWP::ERR_INVALID_FIELDID; |
| 1843 | } |
| 1844 | } else { |
| 1845 | if (f->IsStatic()) { |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1846 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues" |
| 1847 | << " on static field " << PrettyField(f); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1848 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1849 | } |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1850 | if (f->IsStatic()) { |
| 1851 | o = f->GetDeclaringClass(); |
| 1852 | } |
Sebastien Hertz | 05c26b3 | 2015-06-11 18:42:58 +0200 | [diff] [blame] | 1853 | return SetArtFieldValue(f, o, value, width); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1854 | } |
| 1855 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1856 | 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] | 1857 | int width) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1858 | return SetFieldValueImpl(object_id, field_id, value, width, false); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1859 | } |
| 1860 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1861 | JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { |
| 1862 | return SetFieldValueImpl(0, field_id, value, width, true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1863 | } |
| 1864 | |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1865 | JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1866 | JDWP::JdwpError error; |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1867 | mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error); |
| 1868 | if (error != JDWP::ERR_NONE) { |
| 1869 | return error; |
| 1870 | } |
| 1871 | if (obj == nullptr) { |
| 1872 | return JDWP::ERR_INVALID_OBJECT; |
| 1873 | } |
| 1874 | { |
| 1875 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1876 | mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String); |
| 1877 | if (!java_lang_String->IsAssignableFrom(obj->GetClass())) { |
| 1878 | // This isn't a string. |
| 1879 | return JDWP::ERR_INVALID_STRING; |
| 1880 | } |
| 1881 | } |
| 1882 | *str = obj->AsString()->ToModifiedUtf8(); |
| 1883 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1884 | } |
| 1885 | |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1886 | void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { |
| 1887 | if (IsPrimitiveTag(tag)) { |
| 1888 | expandBufAdd1(pReply, tag); |
| 1889 | if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) { |
| 1890 | expandBufAdd1(pReply, return_value->GetI()); |
| 1891 | } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) { |
| 1892 | expandBufAdd2BE(pReply, return_value->GetI()); |
| 1893 | } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) { |
| 1894 | expandBufAdd4BE(pReply, return_value->GetI()); |
| 1895 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 1896 | expandBufAdd8BE(pReply, return_value->GetJ()); |
| 1897 | } else { |
| 1898 | CHECK_EQ(tag, JDWP::JT_VOID); |
| 1899 | } |
| 1900 | } else { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1901 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1902 | mirror::Object* value = return_value->GetL(); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1903 | expandBufAdd1(pReply, TagFromObject(soa, value)); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1904 | expandBufAddObjectId(pReply, gRegistry->Add(value)); |
| 1905 | } |
| 1906 | } |
| 1907 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1908 | JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 1909 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1910 | JDWP::JdwpError error; |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 1911 | DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1912 | if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) { |
| 1913 | return error; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1914 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1915 | |
| 1916 | // 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] | 1917 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 1918 | CHECK(thread_object != nullptr) << error; |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1919 | ArtField* java_lang_Thread_name_field = |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1920 | soa.DecodeField(WellKnownClasses::java_lang_Thread_name); |
| 1921 | mirror::String* s = |
| 1922 | reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1923 | if (s != nullptr) { |
| 1924 | *name = s->ToModifiedUtf8(); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1925 | } |
| 1926 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1927 | } |
| 1928 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1929 | JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 1930 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1931 | JDWP::JdwpError error; |
| 1932 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 1933 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1934 | return JDWP::ERR_INVALID_OBJECT; |
| 1935 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 1936 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup"); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1937 | // Okay, so it's an object, but is it actually a thread? |
Roland Levillain | 4b8f1ec | 2015-08-26 18:34:03 +0100 | [diff] [blame] | 1938 | DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1939 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 1940 | // Zombie threads are in the null group. |
| 1941 | expandBufAddObjectId(pReply, JDWP::ObjectId(0)); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 1942 | error = JDWP::ERR_NONE; |
| 1943 | } else if (error == JDWP::ERR_NONE) { |
| 1944 | mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread); |
| 1945 | CHECK(c != nullptr); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1946 | ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1947 | CHECK(f != nullptr); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 1948 | mirror::Object* group = f->GetObject(thread_object); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1949 | CHECK(group != nullptr); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 1950 | JDWP::ObjectId thread_group_id = gRegistry->Add(group); |
| 1951 | expandBufAddObjectId(pReply, thread_group_id); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1952 | } |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 1953 | return error; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1954 | } |
| 1955 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 1956 | static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 1957 | JDWP::ObjectId thread_group_id, JDWP::JdwpError* error) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1958 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1959 | mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, |
| 1960 | error); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 1961 | if (*error != JDWP::ERR_NONE) { |
| 1962 | return nullptr; |
| 1963 | } |
| 1964 | if (thread_group == nullptr) { |
| 1965 | *error = JDWP::ERR_INVALID_OBJECT; |
| 1966 | return nullptr; |
| 1967 | } |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1968 | mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup); |
| 1969 | CHECK(c != nullptr); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 1970 | if (!c->IsAssignableFrom(thread_group->GetClass())) { |
| 1971 | // This is not a java.lang.ThreadGroup. |
| 1972 | *error = JDWP::ERR_INVALID_THREAD_GROUP; |
| 1973 | return nullptr; |
| 1974 | } |
| 1975 | *error = JDWP::ERR_NONE; |
| 1976 | return thread_group; |
| 1977 | } |
| 1978 | |
| 1979 | JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| 1980 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1981 | JDWP::JdwpError error; |
| 1982 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 1983 | if (error != JDWP::ERR_NONE) { |
| 1984 | return error; |
| 1985 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 1986 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName"); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1987 | ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1988 | CHECK(f != nullptr); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1989 | mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group)); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 1990 | |
| 1991 | std::string thread_group_name(s->ToModifiedUtf8()); |
| 1992 | expandBufAddUtf8String(pReply, thread_group_name); |
| 1993 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1994 | } |
| 1995 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 1996 | JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1997 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1998 | JDWP::JdwpError error; |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 1999 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2000 | if (error != JDWP::ERR_NONE) { |
| 2001 | return error; |
| 2002 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2003 | mirror::Object* parent; |
| 2004 | { |
| 2005 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent"); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2006 | ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent); |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2007 | CHECK(f != nullptr); |
| 2008 | parent = f->GetObject(thread_group); |
| 2009 | } |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2010 | JDWP::ObjectId parent_group_id = gRegistry->Add(parent); |
| 2011 | expandBufAddObjectId(pReply, parent_group_id); |
| 2012 | return JDWP::ERR_NONE; |
| 2013 | } |
| 2014 | |
| 2015 | static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group, |
| 2016 | std::vector<JDWP::ObjectId>* child_thread_group_ids) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2017 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2018 | CHECK(thread_group != nullptr); |
| 2019 | |
| 2020 | // Get the ArrayList<ThreadGroup> "groups" out of this thread group... |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2021 | ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2022 | mirror::Object* groups_array_list = groups_field->GetObject(thread_group); |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2023 | { |
| 2024 | // The "groups" field is declared as a java.util.List: check it really is |
| 2025 | // an instance of java.util.ArrayList. |
| 2026 | CHECK(groups_array_list != nullptr); |
| 2027 | mirror::Class* java_util_ArrayList_class = |
| 2028 | soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList); |
| 2029 | CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class)); |
| 2030 | } |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2031 | |
| 2032 | // Get the array and size out of the ArrayList<ThreadGroup>... |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2033 | ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array); |
| 2034 | ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2035 | mirror::ObjectArray<mirror::Object>* groups_array = |
| 2036 | array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>(); |
| 2037 | const int32_t size = size_field->GetInt(groups_array_list); |
| 2038 | |
| 2039 | // Copy the first 'size' elements out of the array into the result. |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2040 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2041 | for (int32_t i = 0; i < size; ++i) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2042 | child_thread_group_ids->push_back(registry->Add(groups_array->Get(i))); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2043 | } |
| 2044 | } |
| 2045 | |
| 2046 | JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id, |
| 2047 | JDWP::ExpandBuf* pReply) { |
| 2048 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2049 | JDWP::JdwpError error; |
| 2050 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2051 | if (error != JDWP::ERR_NONE) { |
| 2052 | return error; |
| 2053 | } |
| 2054 | |
| 2055 | // Add child threads. |
| 2056 | { |
| 2057 | std::vector<JDWP::ObjectId> child_thread_ids; |
| 2058 | GetThreads(thread_group, &child_thread_ids); |
| 2059 | expandBufAdd4BE(pReply, child_thread_ids.size()); |
| 2060 | for (JDWP::ObjectId child_thread_id : child_thread_ids) { |
| 2061 | expandBufAddObjectId(pReply, child_thread_id); |
| 2062 | } |
| 2063 | } |
| 2064 | |
| 2065 | // Add child thread groups. |
| 2066 | { |
| 2067 | std::vector<JDWP::ObjectId> child_thread_groups_ids; |
| 2068 | GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids); |
| 2069 | expandBufAdd4BE(pReply, child_thread_groups_ids.size()); |
| 2070 | for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) { |
| 2071 | expandBufAddObjectId(pReply, child_thread_group_id); |
| 2072 | } |
| 2073 | } |
| 2074 | |
| 2075 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2076 | } |
| 2077 | |
| 2078 | JDWP::ObjectId Dbg::GetSystemThreadGroupId() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2079 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2080 | ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2081 | mirror::Object* group = f->GetObject(f->GetDeclaringClass()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 2082 | return gRegistry->Add(group); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2083 | } |
| 2084 | |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2085 | JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) { |
| 2086 | switch (state) { |
| 2087 | case kBlocked: |
| 2088 | return JDWP::TS_MONITOR; |
| 2089 | case kNative: |
| 2090 | case kRunnable: |
| 2091 | case kSuspended: |
| 2092 | return JDWP::TS_RUNNING; |
| 2093 | case kSleeping: |
| 2094 | return JDWP::TS_SLEEPING; |
| 2095 | case kStarting: |
| 2096 | case kTerminated: |
| 2097 | return JDWP::TS_ZOMBIE; |
| 2098 | case kTimedWaiting: |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2099 | case kWaitingForCheckPointsToRun: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2100 | case kWaitingForDebuggerSend: |
| 2101 | case kWaitingForDebuggerSuspension: |
| 2102 | case kWaitingForDebuggerToAttach: |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2103 | case kWaitingForDeoptimization: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2104 | case kWaitingForGcToComplete: |
Mathieu Chartier | b43390c | 2015-05-12 10:47:11 -0700 | [diff] [blame] | 2105 | case kWaitingForGetObjectsAllocated: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2106 | case kWaitingForJniOnLoad: |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2107 | case kWaitingForMethodTracingStart: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2108 | case kWaitingForSignalCatcherOutput: |
Hiroshi Yamauchi | 0c8c303 | 2015-01-16 16:54:35 -0800 | [diff] [blame] | 2109 | case kWaitingForVisitObjects: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2110 | case kWaitingInMainDebuggerLoop: |
| 2111 | case kWaitingInMainSignalCatcherLoop: |
| 2112 | case kWaitingPerformingGc: |
Mathieu Chartier | 90ef3db | 2015-08-04 15:19:41 -0700 | [diff] [blame] | 2113 | case kWaitingWeakGcRootRead: |
Hiroshi Yamauchi | 76f55b0 | 2015-08-21 16:10:39 -0700 | [diff] [blame] | 2114 | case kWaitingForGcThreadFlip: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2115 | case kWaiting: |
| 2116 | return JDWP::TS_WAIT; |
| 2117 | // Don't add a 'default' here so the compiler can spot incompatible enum changes. |
| 2118 | } |
| 2119 | LOG(FATAL) << "Unknown thread state: " << state; |
| 2120 | return JDWP::TS_ZOMBIE; |
| 2121 | } |
| 2122 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2123 | JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, |
| 2124 | JDWP::JdwpSuspendStatus* pSuspendStatus) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2125 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2126 | |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2127 | *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED; |
| 2128 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2129 | JDWP::JdwpError error; |
| 2130 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2131 | if (error != JDWP::ERR_NONE) { |
| 2132 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2133 | *pThreadStatus = JDWP::TS_ZOMBIE; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2134 | return JDWP::ERR_NONE; |
| 2135 | } |
| 2136 | return error; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2137 | } |
| 2138 | |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2139 | if (IsSuspendedForDebugger(soa, thread)) { |
| 2140 | *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2141 | } |
| 2142 | |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2143 | *pThreadStatus = ToJdwpThreadStatus(thread->GetState()); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2144 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2145 | } |
| 2146 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2147 | JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2148 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2149 | JDWP::JdwpError error; |
| 2150 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2151 | if (error != JDWP::ERR_NONE) { |
| 2152 | return error; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2153 | } |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2154 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2155 | expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2156 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2157 | } |
| 2158 | |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2159 | JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) { |
| 2160 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2161 | JDWP::JdwpError error; |
| 2162 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2163 | if (error != JDWP::ERR_NONE) { |
| 2164 | return error; |
| 2165 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2166 | thread->Interrupt(soa.Self()); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2167 | return JDWP::ERR_NONE; |
| 2168 | } |
| 2169 | |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2170 | static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2171 | mirror::Object* desired_thread_group, mirror::Object* peer) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2172 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2173 | // Do we want threads from all thread groups? |
| 2174 | if (desired_thread_group == nullptr) { |
| 2175 | return true; |
| 2176 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2177 | ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group); |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2178 | DCHECK(thread_group_field != nullptr); |
| 2179 | mirror::Object* group = thread_group_field->GetObject(peer); |
| 2180 | return (group == desired_thread_group); |
| 2181 | } |
| 2182 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2183 | 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] | 2184 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2185 | std::list<Thread*> all_threads_list; |
| 2186 | { |
| 2187 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 2188 | all_threads_list = Runtime::Current()->GetThreadList()->GetList(); |
| 2189 | } |
| 2190 | for (Thread* t : all_threads_list) { |
| 2191 | if (t == Dbg::GetDebugThread()) { |
| 2192 | // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and |
| 2193 | // query all threads, so it's easier if we just don't tell them about this thread. |
| 2194 | continue; |
| 2195 | } |
| 2196 | if (t->IsStillStarting()) { |
| 2197 | // This thread is being started (and has been registered in the thread list). However, it is |
| 2198 | // not completely started yet so we must ignore it. |
| 2199 | continue; |
| 2200 | } |
| 2201 | mirror::Object* peer = t->GetPeer(); |
| 2202 | if (peer == nullptr) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 2203 | // 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] | 2204 | // this thread yet. |
| 2205 | // TODO: if we identified threads to the debugger by their Thread* |
| 2206 | // rather than their peer's mirror::Object*, we could fix this. |
| 2207 | // Doing so might help us report ZOMBIE threads too. |
| 2208 | continue; |
| 2209 | } |
| 2210 | if (IsInDesiredThreadGroup(soa, thread_group, peer)) { |
| 2211 | thread_ids->push_back(gRegistry->Add(peer)); |
| 2212 | } |
| 2213 | } |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2214 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2215 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2216 | static int GetStackDepth(Thread* thread) SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2217 | struct CountStackDepthVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2218 | explicit CountStackDepthVisitor(Thread* thread_in) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2219 | : StackVisitor(thread_in, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2220 | depth(0) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2221 | |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 2222 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2223 | // annotalysis. |
| 2224 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2225 | if (!GetMethod()->IsRuntimeMethod()) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 2226 | ++depth; |
| 2227 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2228 | return true; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2229 | } |
| 2230 | size_t depth; |
| 2231 | }; |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 2232 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2233 | CountStackDepthVisitor visitor(thread); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2234 | visitor.WalkStack(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2235 | return visitor.depth; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2236 | } |
| 2237 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2238 | JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2239 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2240 | JDWP::JdwpError error; |
| 2241 | *result = 0; |
| 2242 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2243 | if (error != JDWP::ERR_NONE) { |
| 2244 | return error; |
| 2245 | } |
Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2246 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2247 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2248 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2249 | *result = GetStackDepth(thread); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2250 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2251 | } |
| 2252 | |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 2253 | JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, |
| 2254 | size_t frame_count, JDWP::ExpandBuf* buf) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2255 | class GetFrameVisitor : public StackVisitor { |
| 2256 | public: |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2257 | GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in, |
| 2258 | JDWP::ExpandBuf* buf_in) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2259 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2260 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2261 | depth_(0), |
| 2262 | start_frame_(start_frame_in), |
| 2263 | frame_count_(frame_count_in), |
| 2264 | buf_(buf_in) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2265 | expandBufAdd4BE(buf_, frame_count_); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2266 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2267 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2268 | bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2269 | if (GetMethod()->IsRuntimeMethod()) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 2270 | 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] | 2271 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2272 | if (depth_ >= start_frame_ + frame_count_) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2273 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2274 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2275 | if (depth_ >= start_frame_) { |
| 2276 | JDWP::FrameId frame_id(GetFrameId()); |
| 2277 | JDWP::JdwpLocation location; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2278 | SetJdwpLocation(&location, GetMethod(), GetDexPc()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2279 | VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2280 | expandBufAdd8BE(buf_, frame_id); |
| 2281 | expandBufAddLocation(buf_, location); |
| 2282 | } |
| 2283 | ++depth_; |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2284 | return true; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2285 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2286 | |
| 2287 | private: |
| 2288 | size_t depth_; |
| 2289 | const size_t start_frame_; |
| 2290 | const size_t frame_count_; |
| 2291 | JDWP::ExpandBuf* buf_; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2292 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2293 | |
| 2294 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2295 | JDWP::JdwpError error; |
| 2296 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2297 | if (error != JDWP::ERR_NONE) { |
| 2298 | return error; |
| 2299 | } |
Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2300 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2301 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2302 | } |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2303 | GetFrameVisitor visitor(thread, start_frame, frame_count, buf); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2304 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2305 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2306 | } |
| 2307 | |
| 2308 | JDWP::ObjectId Dbg::GetThreadSelfId() { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2309 | return GetThreadId(Thread::Current()); |
| 2310 | } |
| 2311 | |
| 2312 | JDWP::ObjectId Dbg::GetThreadId(Thread* thread) { |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 2313 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2314 | return gRegistry->Add(thread->GetPeer()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2315 | } |
| 2316 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2317 | void Dbg::SuspendVM() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2318 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2319 | } |
| 2320 | |
| 2321 | void Dbg::ResumeVM() { |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 2322 | Runtime::Current()->GetThreadList()->ResumeAllForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2323 | } |
| 2324 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2325 | JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2326 | Thread* self = Thread::Current(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2327 | ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2328 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2329 | ScopedObjectAccess soa(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2330 | JDWP::JdwpError error; |
| 2331 | peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error))); |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2332 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2333 | if (peer.get() == nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2334 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2335 | } |
Ian Rogers | 4ad5cd3 | 2014-11-11 23:08:07 -0800 | [diff] [blame] | 2336 | // Suspend thread to build stack trace. |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2337 | bool timed_out; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2338 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 2339 | Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true, |
| 2340 | &timed_out); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2341 | if (thread != nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2342 | return JDWP::ERR_NONE; |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2343 | } else if (timed_out) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2344 | return JDWP::ERR_INTERNAL; |
| 2345 | } else { |
| 2346 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2347 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2348 | } |
| 2349 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2350 | void Dbg::ResumeThread(JDWP::ObjectId thread_id) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2351 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2352 | JDWP::JdwpError error; |
| 2353 | mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2354 | CHECK(peer != nullptr) << error; |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2355 | Thread* thread; |
| 2356 | { |
| 2357 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2358 | thread = Thread::FromManagedThread(soa, peer); |
| 2359 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2360 | if (thread == nullptr) { |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2361 | LOG(WARNING) << "No such thread for resume: " << peer; |
| 2362 | return; |
| 2363 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2364 | bool needs_resume; |
| 2365 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2366 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2367 | needs_resume = thread->GetSuspendCount() > 0; |
| 2368 | } |
| 2369 | if (needs_resume) { |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 2370 | Runtime::Current()->GetThreadList()->Resume(thread, true); |
| 2371 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2372 | } |
| 2373 | |
| 2374 | void Dbg::SuspendSelf() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2375 | Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2376 | } |
| 2377 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2378 | struct GetThisVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2379 | GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2380 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2381 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2382 | this_object(nullptr), |
| 2383 | frame_id(frame_id_in) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2384 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2385 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2386 | // annotalysis. |
| 2387 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2388 | if (frame_id != GetFrameId()) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2389 | return true; // continue |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2390 | } else { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2391 | this_object = GetThisObject(); |
| 2392 | return false; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2393 | } |
Elliott Hughes | 86b0010 | 2011-12-05 17:54:26 -0800 | [diff] [blame] | 2394 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2395 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2396 | mirror::Object* this_object; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2397 | JDWP::FrameId frame_id; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2398 | }; |
| 2399 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2400 | JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, |
| 2401 | JDWP::ObjectId* result) { |
| 2402 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2403 | JDWP::JdwpError error; |
| 2404 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2405 | if (error != JDWP::ERR_NONE) { |
| 2406 | return error; |
| 2407 | } |
| 2408 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2409 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2410 | } |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2411 | std::unique_ptr<Context> context(Context::Create()); |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2412 | GetThisVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2413 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2414 | *result = gRegistry->Add(visitor.this_object); |
| 2415 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2416 | } |
| 2417 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2418 | // Walks the stack until we find the frame with the given FrameId. |
| 2419 | class FindFrameVisitor FINAL : public StackVisitor { |
| 2420 | public: |
| 2421 | FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2422 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2423 | : StackVisitor(thread, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 2424 | frame_id_(frame_id), |
| 2425 | error_(JDWP::ERR_INVALID_FRAMEID) {} |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 2426 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2427 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2428 | // annotalysis. |
| 2429 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 2430 | if (GetFrameId() != frame_id_) { |
| 2431 | return true; // Not our frame, carry on. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2432 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2433 | ArtMethod* m = GetMethod(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2434 | if (m->IsNative()) { |
| 2435 | // We can't read/write local value from/into native method. |
| 2436 | error_ = JDWP::ERR_OPAQUE_FRAME; |
| 2437 | } else { |
| 2438 | // We found our frame. |
| 2439 | error_ = JDWP::ERR_NONE; |
| 2440 | } |
| 2441 | return false; |
| 2442 | } |
| 2443 | |
| 2444 | JDWP::JdwpError GetError() const { |
| 2445 | return error_; |
| 2446 | } |
| 2447 | |
| 2448 | private: |
| 2449 | const JDWP::FrameId frame_id_; |
| 2450 | JDWP::JdwpError error_; |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 2451 | |
| 2452 | DISALLOW_COPY_AND_ASSIGN(FindFrameVisitor); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2453 | }; |
| 2454 | |
| 2455 | JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { |
| 2456 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2457 | JDWP::FrameId frame_id = request->ReadFrameId(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2458 | |
| 2459 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2460 | JDWP::JdwpError error; |
| 2461 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2462 | if (error != JDWP::ERR_NONE) { |
| 2463 | return error; |
| 2464 | } |
| 2465 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2466 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2467 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2468 | // Find the frame with the given frame_id. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2469 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2470 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2471 | visitor.WalkStack(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2472 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2473 | return visitor.GetError(); |
| 2474 | } |
| 2475 | |
| 2476 | // Read the values from visitor's context. |
| 2477 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2478 | expandBufAdd4BE(pReply, slot_count); /* "int values" */ |
| 2479 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2480 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2481 | JDWP::JdwpTag reqSigByte = request->ReadTag(); |
| 2482 | |
| 2483 | VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte; |
| 2484 | |
| 2485 | size_t width = Dbg::GetTagWidth(reqSigByte); |
Sebastien Hertz | 7d95565 | 2014-10-22 10:57:10 +0200 | [diff] [blame] | 2486 | uint8_t* ptr = expandBufAddSpace(pReply, width + 1); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2487 | error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2488 | if (error != JDWP::ERR_NONE) { |
| 2489 | return error; |
| 2490 | } |
| 2491 | } |
| 2492 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2493 | } |
| 2494 | |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2495 | constexpr JDWP::JdwpError kStackFrameLocalAccessError = JDWP::ERR_ABSENT_INFORMATION; |
| 2496 | |
| 2497 | static std::string GetStackContextAsString(const StackVisitor& visitor) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2498 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2499 | return StringPrintf(" at DEX pc 0x%08x in method %s", visitor.GetDexPc(false), |
| 2500 | PrettyMethod(visitor.GetMethod()).c_str()); |
| 2501 | } |
| 2502 | |
| 2503 | static JDWP::JdwpError FailGetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2504 | JDWP::JdwpTag tag) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2505 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2506 | LOG(ERROR) << "Failed to read " << tag << " local from register v" << vreg |
| 2507 | << GetStackContextAsString(visitor); |
| 2508 | return kStackFrameLocalAccessError; |
| 2509 | } |
| 2510 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2511 | JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, |
| 2512 | int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2513 | ArtMethod* m = visitor.GetMethod(); |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2514 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2515 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2516 | if (error != JDWP::ERR_NONE) { |
| 2517 | return error; |
| 2518 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2519 | // 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] | 2520 | switch (tag) { |
| 2521 | case JDWP::JT_BOOLEAN: { |
| 2522 | CHECK_EQ(width, 1U); |
| 2523 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2524 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2525 | return FailGetLocalValue(visitor, vreg, tag); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2526 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2527 | VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; |
| 2528 | JDWP::Set1(buf + 1, intVal != 0); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2529 | break; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2530 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2531 | case JDWP::JT_BYTE: { |
| 2532 | CHECK_EQ(width, 1U); |
| 2533 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2534 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2535 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2536 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2537 | VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; |
| 2538 | JDWP::Set1(buf + 1, intVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2539 | break; |
| 2540 | } |
| 2541 | case JDWP::JT_SHORT: |
| 2542 | case JDWP::JT_CHAR: { |
| 2543 | CHECK_EQ(width, 2U); |
| 2544 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2545 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2546 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2547 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2548 | VLOG(jdwp) << "get short/char local " << vreg << " = " << intVal; |
| 2549 | JDWP::Set2BE(buf + 1, intVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2550 | break; |
| 2551 | } |
| 2552 | case JDWP::JT_INT: { |
| 2553 | CHECK_EQ(width, 4U); |
| 2554 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2555 | if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { |
| 2556 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2557 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2558 | VLOG(jdwp) << "get int local " << vreg << " = " << intVal; |
| 2559 | JDWP::Set4BE(buf + 1, intVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2560 | break; |
| 2561 | } |
| 2562 | case JDWP::JT_FLOAT: { |
| 2563 | CHECK_EQ(width, 4U); |
| 2564 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2565 | if (!visitor.GetVReg(m, vreg, kFloatVReg, &intVal)) { |
| 2566 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2567 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2568 | VLOG(jdwp) << "get float local " << vreg << " = " << intVal; |
| 2569 | JDWP::Set4BE(buf + 1, intVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2570 | break; |
| 2571 | } |
| 2572 | case JDWP::JT_ARRAY: |
| 2573 | case JDWP::JT_CLASS_LOADER: |
| 2574 | case JDWP::JT_CLASS_OBJECT: |
| 2575 | case JDWP::JT_OBJECT: |
| 2576 | case JDWP::JT_STRING: |
| 2577 | case JDWP::JT_THREAD: |
| 2578 | case JDWP::JT_THREAD_GROUP: { |
| 2579 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| 2580 | uint32_t intVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2581 | if (!visitor.GetVReg(m, vreg, kReferenceVReg, &intVal)) { |
| 2582 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2583 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2584 | mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal); |
| 2585 | VLOG(jdwp) << "get " << tag << " object local " << vreg << " = " << o; |
| 2586 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) { |
| 2587 | LOG(FATAL) << StringPrintf("Found invalid object %#" PRIxPTR " in register v%u", |
| 2588 | reinterpret_cast<uintptr_t>(o), vreg) |
| 2589 | << GetStackContextAsString(visitor); |
| 2590 | UNREACHABLE(); |
| 2591 | } |
| 2592 | tag = TagFromObject(soa, o); |
| 2593 | JDWP::SetObjectId(buf + 1, gRegistry->Add(o)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2594 | break; |
| 2595 | } |
| 2596 | case JDWP::JT_DOUBLE: { |
| 2597 | CHECK_EQ(width, 8U); |
| 2598 | uint64_t longVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2599 | if (!visitor.GetVRegPair(m, vreg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { |
| 2600 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2601 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2602 | VLOG(jdwp) << "get double local " << vreg << " = " << longVal; |
| 2603 | JDWP::Set8BE(buf + 1, longVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2604 | break; |
| 2605 | } |
| 2606 | case JDWP::JT_LONG: { |
| 2607 | CHECK_EQ(width, 8U); |
| 2608 | uint64_t longVal; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2609 | if (!visitor.GetVRegPair(m, vreg, kLongLoVReg, kLongHiVReg, &longVal)) { |
| 2610 | return FailGetLocalValue(visitor, vreg, tag); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2611 | } |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2612 | VLOG(jdwp) << "get long local " << vreg << " = " << longVal; |
| 2613 | JDWP::Set8BE(buf + 1, longVal); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2614 | break; |
| 2615 | } |
| 2616 | default: |
| 2617 | LOG(FATAL) << "Unknown tag " << tag; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2618 | UNREACHABLE(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2619 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2620 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2621 | // Prepend tag, which may have been updated. |
| 2622 | JDWP::Set1(buf, tag); |
| 2623 | return JDWP::ERR_NONE; |
| 2624 | } |
| 2625 | |
| 2626 | JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { |
| 2627 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2628 | JDWP::FrameId frame_id = request->ReadFrameId(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2629 | |
| 2630 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 2631 | JDWP::JdwpError error; |
| 2632 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2633 | if (error != JDWP::ERR_NONE) { |
| 2634 | return error; |
| 2635 | } |
| 2636 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2637 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2638 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2639 | // Find the frame with the given frame_id. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2640 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2641 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2642 | visitor.WalkStack(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2643 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2644 | return visitor.GetError(); |
| 2645 | } |
| 2646 | |
| 2647 | // Writes the values into visitor's context. |
| 2648 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2649 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2650 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2651 | JDWP::JdwpTag sigByte = request->ReadTag(); |
| 2652 | size_t width = Dbg::GetTagWidth(sigByte); |
| 2653 | uint64_t value = request->ReadValue(width); |
| 2654 | |
| 2655 | VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value; |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2656 | error = Dbg::SetLocalValue(thread, visitor, slot, sigByte, value, width); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2657 | if (error != JDWP::ERR_NONE) { |
| 2658 | return error; |
| 2659 | } |
| 2660 | } |
| 2661 | return JDWP::ERR_NONE; |
| 2662 | } |
| 2663 | |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2664 | template<typename T> |
| 2665 | static JDWP::JdwpError FailSetLocalValue(const StackVisitor& visitor, uint16_t vreg, |
| 2666 | JDWP::JdwpTag tag, T value) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2667 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2668 | LOG(ERROR) << "Failed to write " << tag << " local " << value |
| 2669 | << " (0x" << std::hex << value << ") into register v" << vreg |
| 2670 | << GetStackContextAsString(visitor); |
| 2671 | return kStackFrameLocalAccessError; |
| 2672 | } |
| 2673 | |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2674 | JDWP::JdwpError Dbg::SetLocalValue(Thread* thread, StackVisitor& visitor, int slot, |
| 2675 | JDWP::JdwpTag tag, uint64_t value, size_t width) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2676 | ArtMethod* m = visitor.GetMethod(); |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2677 | JDWP::JdwpError error = JDWP::ERR_NONE; |
| 2678 | uint16_t vreg = DemangleSlot(slot, m, &error); |
| 2679 | if (error != JDWP::ERR_NONE) { |
| 2680 | return error; |
| 2681 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2682 | // 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] | 2683 | switch (tag) { |
| 2684 | case JDWP::JT_BOOLEAN: |
| 2685 | case JDWP::JT_BYTE: |
| 2686 | CHECK_EQ(width, 1U); |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2687 | if (!visitor.SetVRegFromDebugger(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2688 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2689 | } |
| 2690 | break; |
| 2691 | case JDWP::JT_SHORT: |
| 2692 | case JDWP::JT_CHAR: |
| 2693 | CHECK_EQ(width, 2U); |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2694 | if (!visitor.SetVRegFromDebugger(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2695 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2696 | } |
| 2697 | break; |
| 2698 | case JDWP::JT_INT: |
| 2699 | CHECK_EQ(width, 4U); |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2700 | if (!visitor.SetVRegFromDebugger(m, vreg, static_cast<uint32_t>(value), kIntVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2701 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2702 | } |
| 2703 | break; |
| 2704 | case JDWP::JT_FLOAT: |
| 2705 | CHECK_EQ(width, 4U); |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2706 | if (!visitor.SetVRegFromDebugger(m, vreg, static_cast<uint32_t>(value), kFloatVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2707 | return FailSetLocalValue(visitor, vreg, tag, static_cast<uint32_t>(value)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2708 | } |
| 2709 | break; |
| 2710 | case JDWP::JT_ARRAY: |
| 2711 | case JDWP::JT_CLASS_LOADER: |
| 2712 | case JDWP::JT_CLASS_OBJECT: |
| 2713 | case JDWP::JT_OBJECT: |
| 2714 | case JDWP::JT_STRING: |
| 2715 | case JDWP::JT_THREAD: |
| 2716 | case JDWP::JT_THREAD_GROUP: { |
| 2717 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2718 | mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value), |
| 2719 | &error); |
| 2720 | if (error != JDWP::ERR_NONE) { |
| 2721 | VLOG(jdwp) << tag << " object " << o << " is an invalid object"; |
| 2722 | return JDWP::ERR_INVALID_OBJECT; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2723 | } |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2724 | if (!visitor.SetVRegFromDebugger(m, vreg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2725 | kReferenceVReg)) { |
| 2726 | return FailSetLocalValue(visitor, vreg, tag, reinterpret_cast<uintptr_t>(o)); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2727 | } |
| 2728 | break; |
| 2729 | } |
| 2730 | case JDWP::JT_DOUBLE: { |
| 2731 | CHECK_EQ(width, 8U); |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2732 | if (!visitor.SetVRegPairFromDebugger(m, vreg, value, kDoubleLoVReg, kDoubleHiVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2733 | return FailSetLocalValue(visitor, vreg, tag, value); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2734 | } |
| 2735 | break; |
| 2736 | } |
| 2737 | case JDWP::JT_LONG: { |
| 2738 | CHECK_EQ(width, 8U); |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2739 | if (!visitor.SetVRegPairFromDebugger(m, vreg, value, kLongLoVReg, kLongHiVReg)) { |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2740 | return FailSetLocalValue(visitor, vreg, tag, value); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2741 | } |
| 2742 | break; |
| 2743 | } |
| 2744 | default: |
| 2745 | LOG(FATAL) << "Unknown tag " << tag; |
Sebastien Hertz | abbabc8 | 2015-03-26 08:47:47 +0100 | [diff] [blame] | 2746 | UNREACHABLE(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2747 | } |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 2748 | |
| 2749 | // If we set the local variable in a compiled frame, we need to trigger a deoptimization of |
| 2750 | // the stack so we continue execution with the interpreter using the new value(s) of the updated |
| 2751 | // local variable(s). To achieve this, we install instrumentation exit stub on each method of the |
| 2752 | // thread's stack. The stub will cause the deoptimization to happen. |
| 2753 | if (!visitor.IsShadowFrame() && thread->HasDebuggerShadowFrames()) { |
| 2754 | Runtime::Current()->GetInstrumentation()->InstrumentThreadStack(thread); |
| 2755 | } |
| 2756 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2757 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2758 | } |
| 2759 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2760 | static void SetEventLocation(JDWP::EventLocation* location, ArtMethod* m, uint32_t dex_pc) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2761 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2762 | DCHECK(location != nullptr); |
| 2763 | if (m == nullptr) { |
| 2764 | memset(location, 0, sizeof(*location)); |
| 2765 | } else { |
| 2766 | location->method = m; |
| 2767 | 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] | 2768 | } |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2769 | } |
| 2770 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2771 | void Dbg::PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object, |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2772 | int event_flags, const JValue* return_value) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2773 | if (!IsDebuggerActive()) { |
| 2774 | return; |
| 2775 | } |
| 2776 | DCHECK(m != nullptr); |
| 2777 | DCHECK_EQ(m->IsStatic(), this_object == nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2778 | JDWP::EventLocation location; |
| 2779 | SetEventLocation(&location, m, dex_pc); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2780 | |
Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2781 | // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent. |
| 2782 | // This is required to be able to call JNI functions to create JDWP ids. To achieve this, |
| 2783 | // we temporarily clear the current thread's exception (if any) and will restore it after |
| 2784 | // the call. |
| 2785 | // Note: the only way to get a pending exception here is to suspend on a move-exception |
| 2786 | // instruction. |
| 2787 | Thread* const self = Thread::Current(); |
| 2788 | StackHandleScope<1> hs(self); |
| 2789 | Handle<mirror::Throwable> pending_exception(hs.NewHandle(self->GetException())); |
| 2790 | self->ClearException(); |
| 2791 | if (kIsDebugBuild && pending_exception.Get() != nullptr) { |
| 2792 | const DexFile::CodeItem* code_item = location.method->GetCodeItem(); |
| 2793 | const Instruction* instr = Instruction::At(&code_item->insns_[location.dex_pc]); |
| 2794 | CHECK_EQ(Instruction::MOVE_EXCEPTION, instr->Opcode()); |
| 2795 | } |
| 2796 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2797 | gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value); |
Sebastien Hertz | de48aa6 | 2015-05-26 11:53:39 +0200 | [diff] [blame] | 2798 | |
| 2799 | if (pending_exception.Get() != nullptr) { |
| 2800 | self->SetException(pending_exception.Get()); |
| 2801 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2802 | } |
| 2803 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2804 | void Dbg::PostFieldAccessEvent(ArtMethod* m, int dex_pc, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2805 | mirror::Object* this_object, ArtField* f) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2806 | if (!IsDebuggerActive()) { |
| 2807 | return; |
| 2808 | } |
| 2809 | DCHECK(m != nullptr); |
| 2810 | DCHECK(f != nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2811 | JDWP::EventLocation location; |
| 2812 | SetEventLocation(&location, m, dex_pc); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2813 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2814 | gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2815 | } |
| 2816 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2817 | void Dbg::PostFieldModificationEvent(ArtMethod* m, int dex_pc, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 2818 | mirror::Object* this_object, ArtField* f, |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2819 | const JValue* field_value) { |
| 2820 | if (!IsDebuggerActive()) { |
| 2821 | return; |
| 2822 | } |
| 2823 | DCHECK(m != nullptr); |
| 2824 | DCHECK(f != nullptr); |
| 2825 | DCHECK(field_value != nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2826 | JDWP::EventLocation location; |
| 2827 | SetEventLocation(&location, m, dex_pc); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2828 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2829 | gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2830 | } |
| 2831 | |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2832 | /** |
| 2833 | * Finds the location where this exception will be caught. We search until we reach the top |
| 2834 | * frame, in which case this exception is considered uncaught. |
| 2835 | */ |
| 2836 | class CatchLocationFinder : public StackVisitor { |
| 2837 | public: |
| 2838 | CatchLocationFinder(Thread* self, const Handle<mirror::Throwable>& exception, Context* context) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2839 | SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 2840 | : StackVisitor(self, context, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2841 | exception_(exception), |
| 2842 | handle_scope_(self), |
| 2843 | this_at_throw_(handle_scope_.NewHandle<mirror::Object>(nullptr)), |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2844 | catch_method_(nullptr), |
| 2845 | throw_method_(nullptr), |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2846 | catch_dex_pc_(DexFile::kDexNoIndex), |
| 2847 | throw_dex_pc_(DexFile::kDexNoIndex) { |
| 2848 | } |
| 2849 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2850 | bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2851 | ArtMethod* method = GetMethod(); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2852 | DCHECK(method != nullptr); |
| 2853 | if (method->IsRuntimeMethod()) { |
| 2854 | // Ignore callee save method. |
| 2855 | DCHECK(method->IsCalleeSaveMethod()); |
| 2856 | return true; |
| 2857 | } |
| 2858 | |
| 2859 | uint32_t dex_pc = GetDexPc(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2860 | if (throw_method_ == nullptr) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2861 | // First Java method found. It is either the method that threw the exception, |
| 2862 | // or the Java native method that is reporting an exception thrown by |
| 2863 | // native code. |
| 2864 | this_at_throw_.Assign(GetThisObject()); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2865 | throw_method_ = method; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2866 | throw_dex_pc_ = dex_pc; |
| 2867 | } |
| 2868 | |
| 2869 | if (dex_pc != DexFile::kDexNoIndex) { |
Sebastien Hertz | 26f7286 | 2015-09-15 09:52:07 +0200 | [diff] [blame] | 2870 | StackHandleScope<1> hs(GetThread()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2871 | uint32_t found_dex_pc; |
| 2872 | Handle<mirror::Class> exception_class(hs.NewHandle(exception_->GetClass())); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2873 | bool unused_clear_exception; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2874 | found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2875 | if (found_dex_pc != DexFile::kDexNoIndex) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2876 | catch_method_ = method; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2877 | catch_dex_pc_ = found_dex_pc; |
| 2878 | return false; // End stack walk. |
| 2879 | } |
| 2880 | } |
| 2881 | return true; // Continue stack walk. |
| 2882 | } |
| 2883 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2884 | ArtMethod* GetCatchMethod() SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2885 | return catch_method_; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2886 | } |
| 2887 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2888 | ArtMethod* GetThrowMethod() SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2889 | return throw_method_; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2890 | } |
| 2891 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 2892 | mirror::Object* GetThisAtThrow() SHARED_REQUIRES(Locks::mutator_lock_) { |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2893 | return this_at_throw_.Get(); |
| 2894 | } |
| 2895 | |
| 2896 | uint32_t GetCatchDexPc() const { |
| 2897 | return catch_dex_pc_; |
| 2898 | } |
| 2899 | |
| 2900 | uint32_t GetThrowDexPc() const { |
| 2901 | return throw_dex_pc_; |
| 2902 | } |
| 2903 | |
| 2904 | private: |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2905 | const Handle<mirror::Throwable>& exception_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2906 | StackHandleScope<1> handle_scope_; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2907 | MutableHandle<mirror::Object> this_at_throw_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2908 | ArtMethod* catch_method_; |
| 2909 | ArtMethod* throw_method_; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2910 | uint32_t catch_dex_pc_; |
| 2911 | uint32_t throw_dex_pc_; |
| 2912 | |
| 2913 | DISALLOW_COPY_AND_ASSIGN(CatchLocationFinder); |
| 2914 | }; |
| 2915 | |
| 2916 | void Dbg::PostException(mirror::Throwable* exception_object) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2917 | if (!IsDebuggerActive()) { |
Ian Rogers | 0ad5bb8 | 2011-12-07 10:16:32 -0800 | [diff] [blame] | 2918 | return; |
| 2919 | } |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 2920 | Thread* const self = Thread::Current(); |
| 2921 | StackHandleScope<1> handle_scope(self); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2922 | Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object)); |
| 2923 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 261bc04 | 2015-04-08 09:36:07 +0200 | [diff] [blame] | 2924 | CatchLocationFinder clf(self, h_exception, context.get()); |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2925 | clf.WalkStack(/* include_transitions */ false); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2926 | JDWP::EventLocation exception_throw_location; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2927 | SetEventLocation(&exception_throw_location, clf.GetThrowMethod(), clf.GetThrowDexPc()); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2928 | JDWP::EventLocation exception_catch_location; |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2929 | SetEventLocation(&exception_catch_location, clf.GetCatchMethod(), clf.GetCatchDexPc()); |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 2930 | |
Nicolas Geoffray | 14691c5 | 2015-03-05 10:40:17 +0000 | [diff] [blame] | 2931 | gJdwpState->PostException(&exception_throw_location, h_exception.Get(), &exception_catch_location, |
| 2932 | clf.GetThisAtThrow()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2933 | } |
| 2934 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2935 | void Dbg::PostClassPrepare(mirror::Class* c) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2936 | if (!IsDebuggerActive()) { |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 2937 | return; |
| 2938 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2939 | gJdwpState->PostClassPrepare(c); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2940 | } |
| 2941 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2942 | void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2943 | ArtMethod* m, uint32_t dex_pc, |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 2944 | int event_flags, const JValue* return_value) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2945 | if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) { |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 2946 | return; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2947 | } |
| 2948 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2949 | if (IsBreakpoint(m, dex_pc)) { |
| 2950 | event_flags |= kBreakpoint; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2951 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2952 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2953 | // If the debugger is single-stepping one of our threads, check to |
| 2954 | // see if we're that thread and we've reached a step point. |
| 2955 | const SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2956 | if (single_step_control != nullptr) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2957 | CHECK(!m->IsNative()); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2958 | if (single_step_control->GetStepDepth() == JDWP::SD_INTO) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2959 | // Step into method calls. We break when the line number |
| 2960 | // or method pointer changes. If we're in SS_MIN mode, we |
| 2961 | // always stop. |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2962 | if (single_step_control->GetMethod() != m) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2963 | event_flags |= kSingleStep; |
| 2964 | VLOG(jdwp) << "SS new method"; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2965 | } else if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2966 | event_flags |= kSingleStep; |
| 2967 | VLOG(jdwp) << "SS new instruction"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 2968 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2969 | event_flags |= kSingleStep; |
| 2970 | VLOG(jdwp) << "SS new line"; |
| 2971 | } |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2972 | } else if (single_step_control->GetStepDepth() == JDWP::SD_OVER) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2973 | // Step over method calls. We break when the line number is |
| 2974 | // different and the frame depth is <= the original frame |
| 2975 | // depth. (We can't just compare on the method, because we |
| 2976 | // might get unrolled past it by an exception, and it's tricky |
| 2977 | // to identify recursion.) |
| 2978 | |
| 2979 | int stack_depth = GetStackDepth(thread); |
| 2980 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2981 | if (stack_depth < single_step_control->GetStackDepth()) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2982 | // Popped up one or more frames, always trigger. |
| 2983 | event_flags |= kSingleStep; |
| 2984 | VLOG(jdwp) << "SS method pop"; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2985 | } else if (stack_depth == single_step_control->GetStackDepth()) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2986 | // Same depth, see if we moved. |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2987 | if (single_step_control->GetStepSize() == JDWP::SS_MIN) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2988 | event_flags |= kSingleStep; |
| 2989 | VLOG(jdwp) << "SS new instruction"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 2990 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2991 | event_flags |= kSingleStep; |
| 2992 | VLOG(jdwp) << "SS new line"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2993 | } |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2994 | } |
| 2995 | } else { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 2996 | CHECK_EQ(single_step_control->GetStepDepth(), JDWP::SD_OUT); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2997 | // Return from the current method. We break when the frame |
| 2998 | // depth pops up. |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2999 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3000 | // This differs from the "method exit" break in that it stops |
| 3001 | // with the PC at the next instruction in the returned-to |
| 3002 | // function, rather than the end of the returning function. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3003 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3004 | int stack_depth = GetStackDepth(thread); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3005 | if (stack_depth < single_step_control->GetStackDepth()) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3006 | event_flags |= kSingleStep; |
| 3007 | VLOG(jdwp) << "SS method pop"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3008 | } |
| 3009 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3010 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3011 | |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3012 | // If there's something interesting going on, see if it matches one |
| 3013 | // of the debugger filters. |
| 3014 | if (event_flags != 0) { |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 3015 | Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 3016 | } |
| 3017 | } |
| 3018 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3019 | size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) { |
| 3020 | switch (instrumentation_event) { |
| 3021 | case instrumentation::Instrumentation::kMethodEntered: |
| 3022 | return &method_enter_event_ref_count_; |
| 3023 | case instrumentation::Instrumentation::kMethodExited: |
| 3024 | return &method_exit_event_ref_count_; |
| 3025 | case instrumentation::Instrumentation::kDexPcMoved: |
| 3026 | return &dex_pc_change_event_ref_count_; |
| 3027 | case instrumentation::Instrumentation::kFieldRead: |
| 3028 | return &field_read_event_ref_count_; |
| 3029 | case instrumentation::Instrumentation::kFieldWritten: |
| 3030 | return &field_write_event_ref_count_; |
| 3031 | case instrumentation::Instrumentation::kExceptionCaught: |
| 3032 | return &exception_catch_event_ref_count_; |
| 3033 | default: |
| 3034 | return nullptr; |
| 3035 | } |
| 3036 | } |
| 3037 | |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3038 | // Process request while all mutator threads are suspended. |
| 3039 | void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3040 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3041 | switch (request.GetKind()) { |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3042 | case DeoptimizationRequest::kNothing: |
| 3043 | LOG(WARNING) << "Ignoring empty deoptimization request."; |
| 3044 | break; |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3045 | case DeoptimizationRequest::kRegisterForEvent: |
| 3046 | VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3047 | request.InstrumentationEvent()); |
| 3048 | instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); |
| 3049 | instrumentation_events_ |= request.InstrumentationEvent(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3050 | break; |
| 3051 | case DeoptimizationRequest::kUnregisterForEvent: |
| 3052 | VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3053 | request.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3054 | instrumentation->RemoveListener(&gDebugInstrumentationListener, |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3055 | request.InstrumentationEvent()); |
| 3056 | instrumentation_events_ &= ~request.InstrumentationEvent(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3057 | break; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3058 | case DeoptimizationRequest::kFullDeoptimization: |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3059 | VLOG(jdwp) << "Deoptimize the world ..."; |
Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3060 | instrumentation->DeoptimizeEverything(kDbgInstrumentationKey); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3061 | VLOG(jdwp) << "Deoptimize the world DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3062 | break; |
| 3063 | case DeoptimizationRequest::kFullUndeoptimization: |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3064 | VLOG(jdwp) << "Undeoptimize the world ..."; |
Sebastien Hertz | 0462c4c | 2015-04-01 16:34:17 +0200 | [diff] [blame] | 3065 | instrumentation->UndeoptimizeEverything(kDbgInstrumentationKey); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3066 | VLOG(jdwp) << "Undeoptimize the world DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3067 | break; |
| 3068 | case DeoptimizationRequest::kSelectiveDeoptimization: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3069 | VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ..."; |
| 3070 | instrumentation->Deoptimize(request.Method()); |
| 3071 | VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3072 | break; |
| 3073 | case DeoptimizationRequest::kSelectiveUndeoptimization: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3074 | VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ..."; |
| 3075 | instrumentation->Undeoptimize(request.Method()); |
| 3076 | VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3077 | break; |
| 3078 | default: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3079 | LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3080 | break; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3081 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3082 | } |
| 3083 | |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3084 | void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3085 | if (req.GetKind() == DeoptimizationRequest::kNothing) { |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3086 | // Nothing to do. |
| 3087 | return; |
| 3088 | } |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3089 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3090 | RequestDeoptimizationLocked(req); |
| 3091 | } |
| 3092 | |
| 3093 | void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3094 | switch (req.GetKind()) { |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3095 | case DeoptimizationRequest::kRegisterForEvent: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3096 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3097 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3098 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3099 | req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3100 | if (*counter == 0) { |
Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3101 | 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] | 3102 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3103 | deoptimization_requests_.push_back(req); |
| 3104 | } |
| 3105 | *counter = *counter + 1; |
| 3106 | break; |
| 3107 | } |
| 3108 | case DeoptimizationRequest::kUnregisterForEvent: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3109 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3110 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3111 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3112 | req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3113 | *counter = *counter - 1; |
| 3114 | if (*counter == 0) { |
Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3115 | 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] | 3116 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3117 | deoptimization_requests_.push_back(req); |
| 3118 | } |
| 3119 | break; |
| 3120 | } |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3121 | case DeoptimizationRequest::kFullDeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3122 | DCHECK(req.Method() == nullptr); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3123 | if (full_deoptimization_event_count_ == 0) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3124 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3125 | << " for full deoptimization"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3126 | deoptimization_requests_.push_back(req); |
| 3127 | } |
| 3128 | ++full_deoptimization_event_count_; |
| 3129 | break; |
| 3130 | } |
| 3131 | case DeoptimizationRequest::kFullUndeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3132 | DCHECK(req.Method() == nullptr); |
Sebastien Hertz | e713d93 | 2014-05-15 10:48:53 +0200 | [diff] [blame] | 3133 | DCHECK_GT(full_deoptimization_event_count_, 0U); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3134 | --full_deoptimization_event_count_; |
| 3135 | if (full_deoptimization_event_count_ == 0) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3136 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3137 | << " for full undeoptimization"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3138 | deoptimization_requests_.push_back(req); |
| 3139 | } |
| 3140 | break; |
| 3141 | } |
| 3142 | case DeoptimizationRequest::kSelectiveDeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3143 | DCHECK(req.Method() != nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3144 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3145 | << " for deoptimization of " << PrettyMethod(req.Method()); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3146 | deoptimization_requests_.push_back(req); |
| 3147 | break; |
| 3148 | } |
| 3149 | case DeoptimizationRequest::kSelectiveUndeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3150 | DCHECK(req.Method() != nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3151 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3152 | << " for undeoptimization of " << PrettyMethod(req.Method()); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3153 | deoptimization_requests_.push_back(req); |
| 3154 | break; |
| 3155 | } |
| 3156 | default: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3157 | LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3158 | break; |
| 3159 | } |
| 3160 | } |
| 3161 | } |
| 3162 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3163 | void Dbg::ManageDeoptimization() { |
| 3164 | Thread* const self = Thread::Current(); |
| 3165 | { |
| 3166 | // Avoid suspend/resume if there is no pending request. |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3167 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3168 | if (deoptimization_requests_.empty()) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3169 | return; |
| 3170 | } |
| 3171 | } |
| 3172 | CHECK_EQ(self->GetState(), kRunnable); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3173 | ScopedThreadSuspension sts(self, kWaitingForDeoptimization); |
Mathieu Chartier | aa51682 | 2015-10-02 15:53:37 -0700 | [diff] [blame] | 3174 | // Required for ProcessDeoptimizationRequest. |
| 3175 | gc::ScopedGCCriticalSection gcs(self, |
| 3176 | gc::kGcCauseInstrumentation, |
| 3177 | gc::kCollectorTypeInstrumentation); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3178 | // We need to suspend mutator threads first. |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 3179 | ScopedSuspendAll ssa(__FUNCTION__); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3180 | const ThreadState old_state = self->SetStateUnsafe(kRunnable); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3181 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3182 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3183 | size_t req_index = 0; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3184 | for (DeoptimizationRequest& request : deoptimization_requests_) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3185 | VLOG(jdwp) << "Process deoptimization request #" << req_index++; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3186 | ProcessDeoptimizationRequest(request); |
| 3187 | } |
| 3188 | deoptimization_requests_.clear(); |
| 3189 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3190 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3191 | } |
| 3192 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3193 | static bool IsMethodPossiblyInlined(Thread* self, ArtMethod* m) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3194 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3195 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3196 | if (code_item == nullptr) { |
| 3197 | // TODO We should not be asked to watch location in a native or abstract method so the code item |
| 3198 | // should never be null. We could just check we never encounter this case. |
| 3199 | return false; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3200 | } |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3201 | // Note: method verifier may cause thread suspension. |
| 3202 | self->AssertThreadSuspensionIsAllowable(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3203 | StackHandleScope<2> hs(self); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3204 | mirror::Class* declaring_class = m->GetDeclaringClass(); |
| 3205 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache())); |
| 3206 | Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader())); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 3207 | verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3208 | &m->GetClassDef(), code_item, m->GetDexMethodIndex(), m, |
Mathieu Chartier | 4306ef8 | 2014-12-19 18:41:47 -0800 | [diff] [blame] | 3209 | m->GetAccessFlags(), false, true, false, true); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3210 | // Note: we don't need to verify the method. |
| 3211 | return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr); |
| 3212 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3213 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3214 | static const Breakpoint* FindFirstBreakpointForMethod(ArtMethod* m) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3215 | SHARED_REQUIRES(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3216 | for (Breakpoint& breakpoint : gBreakpoints) { |
| 3217 | if (breakpoint.Method() == m) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3218 | return &breakpoint; |
| 3219 | } |
| 3220 | } |
| 3221 | return nullptr; |
| 3222 | } |
| 3223 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3224 | bool Dbg::MethodHasAnyBreakpoints(ArtMethod* method) { |
Mathieu Chartier | d856545 | 2015-03-26 09:41:50 -0700 | [diff] [blame] | 3225 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 3226 | return FindFirstBreakpointForMethod(method) != nullptr; |
| 3227 | } |
| 3228 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3229 | // Sanity checks all existing breakpoints on the same method. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3230 | static void SanityCheckExistingBreakpoints(ArtMethod* m, |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3231 | DeoptimizationRequest::Kind deoptimization_kind) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3232 | SHARED_REQUIRES(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3233 | for (const Breakpoint& breakpoint : gBreakpoints) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3234 | if (breakpoint.Method() == m) { |
| 3235 | CHECK_EQ(deoptimization_kind, breakpoint.GetDeoptimizationKind()); |
| 3236 | } |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3237 | } |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3238 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
| 3239 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3240 | // We should have deoptimized everything but not "selectively" deoptimized this method. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3241 | CHECK(instrumentation->AreAllMethodsDeoptimized()); |
| 3242 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3243 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3244 | // We should have "selectively" deoptimized this method. |
| 3245 | // Note: while we have not deoptimized everything for this method, we may have done it for |
| 3246 | // another event. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3247 | CHECK(instrumentation->IsDeoptimized(m)); |
| 3248 | } else { |
| 3249 | // This method does not require deoptimization. |
| 3250 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3251 | CHECK(!instrumentation->IsDeoptimized(m)); |
| 3252 | } |
| 3253 | } |
| 3254 | |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3255 | // Returns the deoptimization kind required to set a breakpoint in a method. |
| 3256 | // If a breakpoint has already been set, we also return the first breakpoint |
| 3257 | // through the given 'existing_brkpt' pointer. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3258 | static DeoptimizationRequest::Kind GetRequiredDeoptimizationKind(Thread* self, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3259 | ArtMethod* m, |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3260 | const Breakpoint** existing_brkpt) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3261 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3262 | if (!Dbg::RequiresDeoptimization()) { |
| 3263 | // We already run in interpreter-only mode so we don't need to deoptimize anything. |
| 3264 | VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method " |
| 3265 | << PrettyMethod(m); |
| 3266 | return DeoptimizationRequest::kNothing; |
| 3267 | } |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3268 | const Breakpoint* first_breakpoint; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3269 | { |
| 3270 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3271 | first_breakpoint = FindFirstBreakpointForMethod(m); |
| 3272 | *existing_brkpt = first_breakpoint; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3273 | } |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3274 | |
| 3275 | if (first_breakpoint == nullptr) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3276 | // There is no breakpoint on this method yet: we need to deoptimize. If this method may be |
| 3277 | // inlined, we deoptimize everything; otherwise we deoptimize only this method. |
| 3278 | // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension. |
| 3279 | // Therefore we must not hold any lock when we call it. |
| 3280 | bool need_full_deoptimization = IsMethodPossiblyInlined(self, m); |
| 3281 | if (need_full_deoptimization) { |
| 3282 | VLOG(jdwp) << "Need full deoptimization because of possible inlining of method " |
| 3283 | << PrettyMethod(m); |
| 3284 | return DeoptimizationRequest::kFullDeoptimization; |
| 3285 | } else { |
| 3286 | // 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] | 3287 | const bool is_compiled = m->HasAnyCompiledCode(); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3288 | if (is_compiled) { |
Nicolas Geoffray | a5891e8 | 2015-11-06 14:18:27 +0000 | [diff] [blame] | 3289 | ClassLinker* const class_linker = Runtime::Current()->GetClassLinker(); |
Sebastien Hertz | 6963e44 | 2014-11-26 22:11:27 +0100 | [diff] [blame] | 3290 | // If the method may be called through its direct code pointer (without loading |
| 3291 | // its updated entrypoint), we need full deoptimization to not miss the breakpoint. |
| 3292 | if (class_linker->MayBeCalledWithDirectCodePointer(m)) { |
| 3293 | VLOG(jdwp) << "Need full deoptimization because of possible direct code call " |
| 3294 | << "into image for compiled method " << PrettyMethod(m); |
| 3295 | return DeoptimizationRequest::kFullDeoptimization; |
| 3296 | } else { |
| 3297 | VLOG(jdwp) << "Need selective deoptimization for compiled method " << PrettyMethod(m); |
| 3298 | return DeoptimizationRequest::kSelectiveDeoptimization; |
| 3299 | } |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3300 | } else { |
| 3301 | // Method is not compiled: we don't need to deoptimize. |
| 3302 | VLOG(jdwp) << "No need for deoptimization for non-compiled method " << PrettyMethod(m); |
| 3303 | return DeoptimizationRequest::kNothing; |
| 3304 | } |
| 3305 | } |
| 3306 | } else { |
| 3307 | // There is at least one breakpoint for this method: we don't need to deoptimize. |
| 3308 | // Let's check that all breakpoints are configured the same way for deoptimization. |
| 3309 | VLOG(jdwp) << "Breakpoint already set: no deoptimization is required"; |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3310 | DeoptimizationRequest::Kind deoptimization_kind = first_breakpoint->GetDeoptimizationKind(); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3311 | if (kIsDebugBuild) { |
| 3312 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3313 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
| 3314 | } |
| 3315 | return DeoptimizationRequest::kNothing; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3316 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3317 | } |
| 3318 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3319 | // Installs a breakpoint at the specified location. Also indicates through the deoptimization |
| 3320 | // request if we need to deoptimize. |
| 3321 | void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| 3322 | Thread* const self = Thread::Current(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3323 | ArtMethod* m = FromMethodId(location->method_id); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3324 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3325 | |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3326 | const Breakpoint* existing_breakpoint = nullptr; |
| 3327 | const DeoptimizationRequest::Kind deoptimization_kind = |
| 3328 | GetRequiredDeoptimizationKind(self, m, &existing_breakpoint); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3329 | req->SetKind(deoptimization_kind); |
| 3330 | if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
| 3331 | req->SetMethod(m); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3332 | } else { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3333 | CHECK(deoptimization_kind == DeoptimizationRequest::kNothing || |
| 3334 | deoptimization_kind == DeoptimizationRequest::kFullDeoptimization); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3335 | req->SetMethod(nullptr); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3336 | } |
| 3337 | |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3338 | { |
| 3339 | WriterMutexLock mu(self, *Locks::breakpoint_lock_); |
Sebastien Hertz | abe93e0 | 2014-12-17 16:35:50 +0100 | [diff] [blame] | 3340 | // If there is at least one existing breakpoint on the same method, the new breakpoint |
| 3341 | // must have the same deoptimization kind than the existing breakpoint(s). |
| 3342 | DeoptimizationRequest::Kind breakpoint_deoptimization_kind; |
| 3343 | if (existing_breakpoint != nullptr) { |
| 3344 | breakpoint_deoptimization_kind = existing_breakpoint->GetDeoptimizationKind(); |
| 3345 | } else { |
| 3346 | breakpoint_deoptimization_kind = deoptimization_kind; |
| 3347 | } |
| 3348 | gBreakpoints.push_back(Breakpoint(m, location->dex_pc, breakpoint_deoptimization_kind)); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3349 | VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " |
| 3350 | << gBreakpoints[gBreakpoints.size() - 1]; |
| 3351 | } |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3352 | } |
| 3353 | |
| 3354 | // Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization |
| 3355 | // request if we need to undeoptimize. |
| 3356 | void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3357 | WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3358 | ArtMethod* m = FromMethodId(location->method_id); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3359 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3360 | DeoptimizationRequest::Kind deoptimization_kind = DeoptimizationRequest::kNothing; |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3361 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3362 | if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3363 | VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3364 | deoptimization_kind = gBreakpoints[i].GetDeoptimizationKind(); |
| 3365 | DCHECK_EQ(deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization, |
| 3366 | Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3367 | gBreakpoints.erase(gBreakpoints.begin() + i); |
| 3368 | break; |
| 3369 | } |
| 3370 | } |
| 3371 | const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3372 | if (existing_breakpoint == nullptr) { |
| 3373 | // There is no more breakpoint on this method: we need to undeoptimize. |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3374 | if (deoptimization_kind == DeoptimizationRequest::kFullDeoptimization) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3375 | // This method required full deoptimization: we need to undeoptimize everything. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3376 | req->SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3377 | req->SetMethod(nullptr); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3378 | } else if (deoptimization_kind == DeoptimizationRequest::kSelectiveDeoptimization) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3379 | // This method required selective deoptimization: we need to undeoptimize only that method. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3380 | req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization); |
| 3381 | req->SetMethod(m); |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3382 | } else { |
| 3383 | // This method had no need for deoptimization: do nothing. |
| 3384 | CHECK_EQ(deoptimization_kind, DeoptimizationRequest::kNothing); |
| 3385 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3386 | req->SetMethod(nullptr); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3387 | } |
| 3388 | } else { |
| 3389 | // 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] | 3390 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3391 | req->SetMethod(nullptr); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3392 | if (kIsDebugBuild) { |
Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 3393 | SanityCheckExistingBreakpoints(m, deoptimization_kind); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3394 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3395 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3396 | } |
| 3397 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3398 | bool Dbg::IsForcedInterpreterNeededForCallingImpl(Thread* thread, ArtMethod* m) { |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3399 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3400 | if (ssc == nullptr) { |
| 3401 | // If we are not single-stepping, then we don't have to force interpreter. |
| 3402 | return false; |
| 3403 | } |
| 3404 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3405 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3406 | return false; |
| 3407 | } |
| 3408 | |
| 3409 | if (!m->IsNative() && !m->IsProxyMethod()) { |
| 3410 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3411 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3412 | return true; |
| 3413 | } |
| 3414 | } |
| 3415 | return false; |
| 3416 | } |
| 3417 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3418 | bool Dbg::IsForcedInterpreterNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3419 | instrumentation::Instrumentation* const instrumentation = |
| 3420 | Runtime::Current()->GetInstrumentation(); |
| 3421 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3422 | if (instrumentation->InterpretOnly()) { |
| 3423 | return false; |
| 3424 | } |
| 3425 | // We can only interpret pure Java method. |
| 3426 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3427 | return false; |
| 3428 | } |
| 3429 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3430 | if (ssc != nullptr) { |
| 3431 | // If we want to step into a method, then we have to force interpreter on that call. |
| 3432 | if (ssc->GetStepDepth() == JDWP::SD_INTO) { |
| 3433 | return true; |
| 3434 | } |
| 3435 | // If we are stepping out from a static initializer, by issuing a step |
| 3436 | // in or step over, that was implicitly invoked by calling a static method, |
| 3437 | // then we need to step into that method. Having a lower stack depth than |
| 3438 | // the one the single step control has indicates that the step originates |
| 3439 | // from the static initializer. |
| 3440 | if (ssc->GetStepDepth() != JDWP::SD_OUT && |
| 3441 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3442 | return true; |
| 3443 | } |
| 3444 | } |
| 3445 | // There are cases where we have to force interpreter on deoptimized methods, |
| 3446 | // because in some cases the call will not be performed by invoking an entry |
| 3447 | // point that has been replaced by the deoptimization, but instead by directly |
| 3448 | // invoking the compiled code of the method, for example. |
| 3449 | return instrumentation->IsDeoptimized(m); |
| 3450 | } |
| 3451 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3452 | bool Dbg::IsForcedInstrumentationNeededForResolutionImpl(Thread* thread, ArtMethod* m) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3453 | // 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] | 3454 | if (m == nullptr) { |
| 3455 | return false; |
| 3456 | } |
| 3457 | instrumentation::Instrumentation* const instrumentation = |
| 3458 | Runtime::Current()->GetInstrumentation(); |
| 3459 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3460 | if (instrumentation->InterpretOnly()) { |
| 3461 | return false; |
| 3462 | } |
| 3463 | // We can only interpret pure Java method. |
| 3464 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3465 | return false; |
| 3466 | } |
| 3467 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3468 | if (ssc != nullptr) { |
| 3469 | // If we are stepping out from a static initializer, by issuing a step |
| 3470 | // out, that was implicitly invoked by calling a static method, then we |
| 3471 | // need to step into the caller of that method. Having a lower stack |
| 3472 | // depth than the one the single step control has indicates that the |
| 3473 | // step originates from the static initializer. |
| 3474 | if (ssc->GetStepDepth() == JDWP::SD_OUT && |
| 3475 | ssc->GetStackDepth() > GetStackDepth(thread)) { |
| 3476 | return true; |
| 3477 | } |
| 3478 | } |
| 3479 | // If we are returning from a static intializer, that was implicitly |
| 3480 | // invoked by calling a static method and the caller is deoptimized, |
| 3481 | // then we have to deoptimize the stack without forcing interpreter |
| 3482 | // on the static method that was called originally. This problem can |
| 3483 | // be solved easily by forcing instrumentation on the called method, |
| 3484 | // because the instrumentation exit hook will recognise the need of |
| 3485 | // stack deoptimization by calling IsForcedInterpreterNeededForUpcall. |
| 3486 | return instrumentation->IsDeoptimized(m); |
| 3487 | } |
| 3488 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3489 | bool Dbg::IsForcedInterpreterNeededForUpcallImpl(Thread* thread, ArtMethod* m) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 3490 | // 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] | 3491 | if (m == nullptr) { |
| 3492 | return false; |
| 3493 | } |
| 3494 | instrumentation::Instrumentation* const instrumentation = |
| 3495 | Runtime::Current()->GetInstrumentation(); |
| 3496 | // If we are in interpreter only mode, then we don't have to force interpreter. |
| 3497 | if (instrumentation->InterpretOnly()) { |
| 3498 | return false; |
| 3499 | } |
| 3500 | // We can only interpret pure Java method. |
| 3501 | if (m->IsNative() || m->IsProxyMethod()) { |
| 3502 | return false; |
| 3503 | } |
| 3504 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3505 | if (ssc != nullptr) { |
| 3506 | // The debugger is not interested in what is happening under the level |
| 3507 | // of the step, thus we only force interpreter when we are not below of |
| 3508 | // the step. |
| 3509 | if (ssc->GetStackDepth() >= GetStackDepth(thread)) { |
| 3510 | return true; |
| 3511 | } |
| 3512 | } |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3513 | if (thread->HasDebuggerShadowFrames()) { |
| 3514 | // We need to deoptimize the stack for the exception handling flow so that |
| 3515 | // we don't miss any deoptimization that should be done when there are |
| 3516 | // debugger shadow frames. |
| 3517 | return true; |
| 3518 | } |
Daniel Mihalyi | eb07669 | 2014-08-22 17:33:31 +0200 | [diff] [blame] | 3519 | // We have to require stack deoptimization if the upcall is deoptimized. |
| 3520 | return instrumentation->IsDeoptimized(m); |
| 3521 | } |
| 3522 | |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3523 | class NeedsDeoptimizationVisitor : public StackVisitor { |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3524 | public: |
| 3525 | explicit NeedsDeoptimizationVisitor(Thread* self) |
| 3526 | SHARED_REQUIRES(Locks::mutator_lock_) |
| 3527 | : StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3528 | needs_deoptimization_(false) {} |
| 3529 | |
| 3530 | bool VisitFrame() OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
| 3531 | // The visitor is meant to be used when handling exception from compiled code only. |
| 3532 | CHECK(!IsShadowFrame()) << "We only expect to visit compiled frame: " << PrettyMethod(GetMethod()); |
| 3533 | ArtMethod* method = GetMethod(); |
| 3534 | if (method == nullptr) { |
| 3535 | // We reach an upcall and don't need to deoptimize this part of the stack (ManagedFragment) |
| 3536 | // so we can stop the visit. |
| 3537 | DCHECK(!needs_deoptimization_); |
| 3538 | return false; |
| 3539 | } |
| 3540 | if (Runtime::Current()->GetInstrumentation()->InterpretOnly()) { |
| 3541 | // We found a compiled frame in the stack but instrumentation is set to interpret |
| 3542 | // everything: we need to deoptimize. |
| 3543 | needs_deoptimization_ = true; |
| 3544 | return false; |
| 3545 | } |
| 3546 | if (Runtime::Current()->GetInstrumentation()->IsDeoptimized(method)) { |
| 3547 | // We found a deoptimized method in the stack. |
| 3548 | needs_deoptimization_ = true; |
| 3549 | return false; |
| 3550 | } |
Mingyao Yang | 99170c6 | 2015-07-06 11:10:37 -0700 | [diff] [blame] | 3551 | ShadowFrame* frame = GetThread()->FindDebuggerShadowFrame(GetFrameId()); |
| 3552 | if (frame != nullptr) { |
| 3553 | // The debugger allocated a ShadowFrame to update a variable in the stack: we need to |
| 3554 | // deoptimize the stack to execute (and deallocate) this frame. |
| 3555 | needs_deoptimization_ = true; |
| 3556 | return false; |
| 3557 | } |
Sebastien Hertz | 520633b | 2015-09-08 17:03:36 +0200 | [diff] [blame] | 3558 | return true; |
| 3559 | } |
| 3560 | |
| 3561 | bool NeedsDeoptimization() const { |
| 3562 | return needs_deoptimization_; |
| 3563 | } |
| 3564 | |
| 3565 | private: |
| 3566 | // Do we need to deoptimize the stack? |
| 3567 | bool needs_deoptimization_; |
| 3568 | |
| 3569 | DISALLOW_COPY_AND_ASSIGN(NeedsDeoptimizationVisitor); |
| 3570 | }; |
| 3571 | |
| 3572 | // Do we need to deoptimize the stack to handle an exception? |
| 3573 | bool Dbg::IsForcedInterpreterNeededForExceptionImpl(Thread* thread) { |
| 3574 | const SingleStepControl* const ssc = thread->GetSingleStepControl(); |
| 3575 | if (ssc != nullptr) { |
| 3576 | // We deopt to step into the catch handler. |
| 3577 | return true; |
| 3578 | } |
| 3579 | // Deoptimization is required if at least one method in the stack needs it. However we |
| 3580 | // skip frames that will be unwound (thus not executed). |
| 3581 | NeedsDeoptimizationVisitor visitor(thread); |
| 3582 | visitor.WalkStack(true); // includes upcall. |
| 3583 | return visitor.NeedsDeoptimization(); |
| 3584 | } |
| 3585 | |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3586 | // Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't |
| 3587 | // cause suspension if the thread is the current thread. |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3588 | class ScopedDebuggerThreadSuspension { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3589 | public: |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3590 | ScopedDebuggerThreadSuspension(Thread* self, JDWP::ObjectId thread_id) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3591 | REQUIRES(!Locks::thread_list_lock_) |
| 3592 | SHARED_REQUIRES(Locks::mutator_lock_) : |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3593 | thread_(nullptr), |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3594 | error_(JDWP::ERR_NONE), |
| 3595 | self_suspend_(false), |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3596 | other_suspend_(false) { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3597 | ScopedObjectAccessUnchecked soa(self); |
Sebastien Hertz | 6920639 | 2015-04-07 15:54:25 +0200 | [diff] [blame] | 3598 | thread_ = DecodeThread(soa, thread_id, &error_); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3599 | if (error_ == JDWP::ERR_NONE) { |
| 3600 | if (thread_ == soa.Self()) { |
| 3601 | self_suspend_ = true; |
| 3602 | } else { |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3603 | Thread* suspended_thread; |
| 3604 | { |
| 3605 | ScopedThreadSuspension sts(self, kWaitingForDebuggerSuspension); |
| 3606 | jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); |
| 3607 | bool timed_out; |
| 3608 | ThreadList* const thread_list = Runtime::Current()->GetThreadList(); |
| 3609 | suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out); |
| 3610 | } |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3611 | if (suspended_thread == nullptr) { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3612 | // Thread terminated from under us while suspending. |
| 3613 | error_ = JDWP::ERR_INVALID_THREAD; |
| 3614 | } else { |
| 3615 | CHECK_EQ(suspended_thread, thread_); |
| 3616 | other_suspend_ = true; |
| 3617 | } |
| 3618 | } |
| 3619 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3620 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3621 | |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3622 | Thread* GetThread() const { |
| 3623 | return thread_; |
| 3624 | } |
| 3625 | |
| 3626 | JDWP::JdwpError GetError() const { |
| 3627 | return error_; |
| 3628 | } |
| 3629 | |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3630 | ~ScopedDebuggerThreadSuspension() { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3631 | if (other_suspend_) { |
| 3632 | Runtime::Current()->GetThreadList()->Resume(thread_, true); |
| 3633 | } |
| 3634 | } |
| 3635 | |
| 3636 | private: |
| 3637 | Thread* thread_; |
| 3638 | JDWP::JdwpError error_; |
| 3639 | bool self_suspend_; |
| 3640 | bool other_suspend_; |
| 3641 | }; |
| 3642 | |
| 3643 | JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, |
| 3644 | JDWP::JdwpStepDepth step_depth) { |
| 3645 | Thread* self = Thread::Current(); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 3646 | ScopedDebuggerThreadSuspension sts(self, thread_id); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3647 | if (sts.GetError() != JDWP::ERR_NONE) { |
| 3648 | return sts.GetError(); |
| 3649 | } |
| 3650 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3651 | // 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] | 3652 | // is for step-out. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3653 | struct SingleStepStackVisitor : public StackVisitor { |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 3654 | explicit SingleStepStackVisitor(Thread* thread) SHARED_REQUIRES(Locks::mutator_lock_) |
Nicolas Geoffray | 8e5bd18 | 2015-05-06 11:34:34 +0100 | [diff] [blame] | 3655 | : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames), |
| 3656 | stack_depth(0), |
| 3657 | method(nullptr), |
| 3658 | line_number(-1) {} |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 3659 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3660 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 3661 | // annotalysis. |
| 3662 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3663 | ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3664 | if (!m->IsRuntimeMethod()) { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3665 | ++stack_depth; |
| 3666 | if (method == nullptr) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 3667 | mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3668 | method = m; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3669 | if (dex_cache != nullptr) { |
Ian Rogers | 4445a7e | 2012-10-05 17:19:13 -0700 | [diff] [blame] | 3670 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3671 | line_number = dex_file.GetLineNumFromPC(m, GetDexPc()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3672 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3673 | } |
| 3674 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3675 | return true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3676 | } |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3677 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3678 | int stack_depth; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3679 | ArtMethod* method; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3680 | int32_t line_number; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3681 | }; |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3682 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3683 | Thread* const thread = sts.GetThread(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3684 | SingleStepStackVisitor visitor(thread); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3685 | visitor.WalkStack(); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3686 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3687 | // 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] | 3688 | struct DebugCallbackContext { |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 3689 | DebugCallbackContext(SingleStepControl* single_step_control_cb, |
| 3690 | int32_t line_number_cb, const DexFile::CodeItem* code_item) |
| 3691 | : single_step_control_(single_step_control_cb), line_number_(line_number_cb), |
| 3692 | code_item_(code_item), last_pc_valid(false), last_pc(0) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3693 | } |
| 3694 | |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 3695 | static bool Callback(void* raw_context, uint32_t address, uint32_t line_number_cb) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3696 | DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 3697 | if (static_cast<int32_t>(line_number_cb) == context->line_number_) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3698 | if (!context->last_pc_valid) { |
| 3699 | // Everything from this address until the next line change is ours. |
| 3700 | context->last_pc = address; |
| 3701 | context->last_pc_valid = true; |
| 3702 | } |
| 3703 | // Otherwise, if we're already in a valid range for this line, |
| 3704 | // just keep going (shouldn't really happen)... |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3705 | } else if (context->last_pc_valid) { // and the line number is new |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3706 | // Add everything from the last entry up until here to the set |
| 3707 | for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3708 | context->single_step_control_->AddDexPc(dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3709 | } |
| 3710 | context->last_pc_valid = false; |
| 3711 | } |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3712 | return false; // There may be multiple entries for any given line. |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3713 | } |
| 3714 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3715 | ~DebugCallbackContext() { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3716 | // If the line number was the last in the position table... |
| 3717 | if (last_pc_valid) { |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3718 | size_t end = code_item_->insns_size_in_code_units_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3719 | for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3720 | single_step_control_->AddDexPc(dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3721 | } |
| 3722 | } |
| 3723 | } |
| 3724 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3725 | SingleStepControl* const single_step_control_; |
| 3726 | const int32_t line_number_; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3727 | const DexFile::CodeItem* const code_item_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3728 | bool last_pc_valid; |
| 3729 | uint32_t last_pc; |
| 3730 | }; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3731 | |
| 3732 | // Allocate single step. |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3733 | SingleStepControl* single_step_control = |
| 3734 | new (std::nothrow) SingleStepControl(step_size, step_depth, |
| 3735 | visitor.stack_depth, visitor.method); |
| 3736 | if (single_step_control == nullptr) { |
| 3737 | LOG(ERROR) << "Failed to allocate SingleStepControl"; |
| 3738 | return JDWP::ERR_OUT_OF_MEMORY; |
| 3739 | } |
| 3740 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3741 | ArtMethod* m = single_step_control->GetMethod(); |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3742 | const int32_t line_number = visitor.line_number; |
Sebastien Hertz | 52f5f93 | 2015-05-28 11:00:57 +0200 | [diff] [blame] | 3743 | // Note: if the thread is not running Java code (pure native thread), there is no "current" |
| 3744 | // method on the stack (and no line number either). |
| 3745 | if (m != nullptr && !m->IsNative()) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3746 | const DexFile::CodeItem* const code_item = m->GetCodeItem(); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3747 | DebugCallbackContext context(single_step_control, line_number, code_item); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3748 | m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3749 | DebugCallbackContext::Callback, nullptr, &context); |
Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 3750 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3751 | |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3752 | // Activate single-step in the thread. |
| 3753 | thread->ActivateSingleStepControl(single_step_control); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3754 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3755 | if (VLOG_IS_ON(jdwp)) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3756 | VLOG(jdwp) << "Single-step thread: " << *thread; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3757 | VLOG(jdwp) << "Single-step step size: " << single_step_control->GetStepSize(); |
| 3758 | VLOG(jdwp) << "Single-step step depth: " << single_step_control->GetStepDepth(); |
| 3759 | VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->GetMethod()); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3760 | VLOG(jdwp) << "Single-step current line: " << line_number; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3761 | VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->GetStackDepth(); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3762 | VLOG(jdwp) << "Single-step dex_pc values:"; |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3763 | for (uint32_t dex_pc : single_step_control->GetDexPcs()) { |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3764 | VLOG(jdwp) << StringPrintf(" %#x", dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3765 | } |
| 3766 | } |
| 3767 | |
| 3768 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3769 | } |
| 3770 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3771 | void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) { |
| 3772 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3773 | JDWP::JdwpError error; |
| 3774 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Sebastien Hertz | 87118ed | 2013-11-26 17:57:18 +0100 | [diff] [blame] | 3775 | if (error == JDWP::ERR_NONE) { |
Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 3776 | thread->DeactivateSingleStepControl(); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3777 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3778 | } |
| 3779 | |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3780 | static char JdwpTagToShortyChar(JDWP::JdwpTag tag) { |
| 3781 | switch (tag) { |
| 3782 | default: |
| 3783 | LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3784 | UNREACHABLE(); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3785 | |
| 3786 | // Primitives. |
| 3787 | case JDWP::JT_BYTE: return 'B'; |
| 3788 | case JDWP::JT_CHAR: return 'C'; |
| 3789 | case JDWP::JT_FLOAT: return 'F'; |
| 3790 | case JDWP::JT_DOUBLE: return 'D'; |
| 3791 | case JDWP::JT_INT: return 'I'; |
| 3792 | case JDWP::JT_LONG: return 'J'; |
| 3793 | case JDWP::JT_SHORT: return 'S'; |
| 3794 | case JDWP::JT_VOID: return 'V'; |
| 3795 | case JDWP::JT_BOOLEAN: return 'Z'; |
| 3796 | |
| 3797 | // Reference types. |
| 3798 | case JDWP::JT_ARRAY: |
| 3799 | case JDWP::JT_OBJECT: |
| 3800 | case JDWP::JT_STRING: |
| 3801 | case JDWP::JT_THREAD: |
| 3802 | case JDWP::JT_THREAD_GROUP: |
| 3803 | case JDWP::JT_CLASS_LOADER: |
| 3804 | case JDWP::JT_CLASS_OBJECT: |
| 3805 | return 'L'; |
| 3806 | } |
| 3807 | } |
| 3808 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3809 | JDWP::JdwpError Dbg::PrepareInvokeMethod(uint32_t request_id, JDWP::ObjectId thread_id, |
| 3810 | JDWP::ObjectId object_id, JDWP::RefTypeId class_id, |
| 3811 | JDWP::MethodId method_id, uint32_t arg_count, |
| 3812 | uint64_t arg_values[], JDWP::JdwpTag* arg_types, |
| 3813 | uint32_t options) { |
| 3814 | Thread* const self = Thread::Current(); |
| 3815 | CHECK_EQ(self, GetDebugThread()) << "This must be called by the JDWP thread"; |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3816 | const bool resume_all_threads = ((options & JDWP::INVOKE_SINGLE_THREADED) == 0); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3817 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3818 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3819 | Thread* targetThread = nullptr; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3820 | { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3821 | ScopedObjectAccessUnchecked soa(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3822 | JDWP::JdwpError error; |
| 3823 | targetThread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 3824 | if (error != JDWP::ERR_NONE) { |
| 3825 | LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id; |
| 3826 | return error; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3827 | } |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3828 | if (targetThread->GetInvokeReq() != nullptr) { |
| 3829 | // Thread is already invoking a method on behalf of the debugger. |
| 3830 | LOG(ERROR) << "InvokeMethod request for thread already invoking a method: " << *targetThread; |
| 3831 | return JDWP::ERR_ALREADY_INVOKING; |
| 3832 | } |
| 3833 | if (!targetThread->IsReadyForDebugInvoke()) { |
| 3834 | // 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] | 3835 | LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread; |
| 3836 | return JDWP::ERR_INVALID_THREAD; |
| 3837 | } |
| 3838 | |
| 3839 | /* |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3840 | * According to the JDWP specs, we are expected to resume all threads (or only the |
| 3841 | * target thread) once. So if a thread has been suspended more than once (either by |
| 3842 | * the debugger for an event or by the runtime for GC), it will remain suspended before |
| 3843 | * the invoke is executed. This means the debugger is responsible to properly resume all |
| 3844 | * 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] | 3845 | * |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3846 | * However, for compatibility reason with older versions of debuggers (like Eclipse), we |
| 3847 | * fully resume all threads (by canceling *all* debugger suspensions) when the debugger |
| 3848 | * wants us to resume all threads. This is to avoid ending up in deadlock situation. |
| 3849 | * |
| 3850 | * On the other hand, if we are asked to only resume the target thread, then we follow the |
| 3851 | * JDWP specs by resuming that thread only once. This means the thread will remain suspended |
| 3852 | * if it has been suspended more than once before the invoke (and again, this is the |
| 3853 | * 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] | 3854 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3855 | int suspend_count; |
| 3856 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3857 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3858 | suspend_count = targetThread->GetSuspendCount(); |
| 3859 | } |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3860 | if (suspend_count > 1 && resume_all_threads) { |
| 3861 | // The target thread will remain suspended even after we resume it. Let's emit a warning |
| 3862 | // to indicate the invoke won't be executed until the thread is resumed. |
| 3863 | LOG(WARNING) << *targetThread << " suspended more than once (suspend count == " |
| 3864 | << suspend_count << "). This thread will invoke the method only once " |
| 3865 | << "it is fully resumed."; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3866 | } |
| 3867 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3868 | mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 3869 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3870 | return JDWP::ERR_INVALID_OBJECT; |
| 3871 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3872 | |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3873 | gRegistry->Get<mirror::Object*>(thread_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3874 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3875 | return JDWP::ERR_INVALID_OBJECT; |
| 3876 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3877 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3878 | mirror::Class* c = DecodeClass(class_id, &error); |
| 3879 | if (c == nullptr) { |
| 3880 | return error; |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3881 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3882 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3883 | ArtMethod* m = FromMethodId(method_id); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3884 | if (m->IsStatic() != (receiver == nullptr)) { |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3885 | return JDWP::ERR_INVALID_METHODID; |
| 3886 | } |
| 3887 | if (m->IsStatic()) { |
| 3888 | if (m->GetDeclaringClass() != c) { |
| 3889 | return JDWP::ERR_INVALID_METHODID; |
| 3890 | } |
| 3891 | } else { |
| 3892 | if (!m->GetDeclaringClass()->IsAssignableFrom(c)) { |
| 3893 | return JDWP::ERR_INVALID_METHODID; |
| 3894 | } |
| 3895 | } |
| 3896 | |
| 3897 | // Check the argument list matches the method. |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3898 | uint32_t shorty_len = 0; |
| 3899 | const char* shorty = m->GetShorty(&shorty_len); |
| 3900 | if (shorty_len - 1 != arg_count) { |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3901 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3902 | } |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3903 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3904 | { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 3905 | StackHandleScope<2> hs(soa.Self()); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3906 | HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver)); |
| 3907 | HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c)); |
| 3908 | const DexFile::TypeList* types = m->GetParameterTypeList(); |
| 3909 | for (size_t i = 0; i < arg_count; ++i) { |
| 3910 | if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) { |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3911 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3912 | } |
| 3913 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3914 | if (shorty[i + 1] == 'L') { |
| 3915 | // Did we really get an argument of an appropriate reference type? |
Ian Rogers | a048560 | 2014-12-02 15:48:04 -0800 | [diff] [blame] | 3916 | mirror::Class* parameter_type = |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 3917 | m->GetClassFromTypeIndex(types->GetTypeItem(i).type_idx_, |
| 3918 | true /* resolve */, |
| 3919 | sizeof(void*)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3920 | mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error); |
| 3921 | if (error != JDWP::ERR_NONE) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3922 | return JDWP::ERR_INVALID_OBJECT; |
| 3923 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3924 | if (argument != nullptr && !argument->InstanceOf(parameter_type)) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3925 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3926 | } |
| 3927 | |
| 3928 | // Turn the on-the-wire ObjectId into a jobject. |
| 3929 | jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]); |
| 3930 | v.l = gRegistry->GetJObject(arg_values[i]); |
| 3931 | } |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3932 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3933 | } |
| 3934 | |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3935 | // Allocates a DebugInvokeReq. |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3936 | DebugInvokeReq* req = new (std::nothrow) DebugInvokeReq(request_id, thread_id, receiver, c, m, |
| 3937 | options, arg_values, arg_count); |
| 3938 | if (req == nullptr) { |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3939 | LOG(ERROR) << "Failed to allocate DebugInvokeReq"; |
| 3940 | return JDWP::ERR_OUT_OF_MEMORY; |
| 3941 | } |
| 3942 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3943 | // Attaches the DebugInvokeReq to the target thread so it executes the method when |
| 3944 | // it is resumed. Once the invocation completes, the target thread will delete it before |
| 3945 | // suspending itself (see ThreadList::SuspendSelfForDebugger). |
| 3946 | targetThread->SetDebugInvokeReq(req); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3947 | } |
| 3948 | |
| 3949 | // 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] | 3950 | // away we're sitting high and dry -- but we must release this before the UndoDebuggerSuspensions |
| 3951 | // call. |
Sebastien Hertz | d4032e4 | 2015-06-12 15:47:34 +0200 | [diff] [blame] | 3952 | if (resume_all_threads) { |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3953 | VLOG(jdwp) << " Resuming all threads"; |
| 3954 | thread_list->UndoDebuggerSuspensions(); |
| 3955 | } else { |
| 3956 | VLOG(jdwp) << " Resuming event thread only"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3957 | thread_list->Resume(targetThread, true); |
| 3958 | } |
| 3959 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3960 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3961 | } |
| 3962 | |
| 3963 | void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3964 | Thread* const self = Thread::Current(); |
| 3965 | CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread"; |
| 3966 | |
| 3967 | ScopedObjectAccess soa(self); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3968 | |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 3969 | // We can be called while an exception is pending. We need |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3970 | // to preserve that across the method invocation. |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3971 | StackHandleScope<1> hs(soa.Self()); |
| 3972 | Handle<mirror::Throwable> old_exception = hs.NewHandle(soa.Self()->GetException()); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 3973 | soa.Self()->ClearException(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3974 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 3975 | // Execute the method then sends reply to the debugger. |
| 3976 | ExecuteMethodWithoutPendingException(soa, pReq); |
| 3977 | |
| 3978 | // If an exception was pending before the invoke, restore it now. |
| 3979 | if (old_exception.Get() != nullptr) { |
| 3980 | soa.Self()->SetException(old_exception.Get()); |
| 3981 | } |
| 3982 | } |
| 3983 | |
| 3984 | // Helper function: write a variable-width value into the output input buffer. |
| 3985 | static void WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) { |
| 3986 | switch (width) { |
| 3987 | case 1: |
| 3988 | expandBufAdd1(pReply, value); |
| 3989 | break; |
| 3990 | case 2: |
| 3991 | expandBufAdd2BE(pReply, value); |
| 3992 | break; |
| 3993 | case 4: |
| 3994 | expandBufAdd4BE(pReply, value); |
| 3995 | break; |
| 3996 | case 8: |
| 3997 | expandBufAdd8BE(pReply, value); |
| 3998 | break; |
| 3999 | default: |
| 4000 | LOG(FATAL) << width; |
| 4001 | UNREACHABLE(); |
| 4002 | } |
| 4003 | } |
| 4004 | |
| 4005 | void Dbg::ExecuteMethodWithoutPendingException(ScopedObjectAccess& soa, DebugInvokeReq* pReq) { |
| 4006 | soa.Self()->AssertNoPendingException(); |
| 4007 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4008 | // 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] | 4009 | ArtMethod* m = pReq->method; |
| 4010 | size_t image_pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize(); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4011 | if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver.Read() != nullptr) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4012 | ArtMethod* actual_method = |
| 4013 | pReq->klass.Read()->FindVirtualMethodForVirtualOrInterface(m, image_pointer_size); |
| 4014 | if (actual_method != m) { |
| 4015 | VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m) |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4016 | << " to " << PrettyMethod(actual_method); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4017 | m = actual_method; |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 4018 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4019 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4020 | VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m) |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4021 | << " receiver=" << pReq->receiver.Read() |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 4022 | << " arg_count=" << pReq->arg_count; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4023 | CHECK(m != nullptr); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4024 | |
Roland Levillain | 33d6903 | 2015-06-18 18:20:59 +0100 | [diff] [blame] | 4025 | 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] | 4026 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4027 | // Invoke the method. |
Jeff Hao | 39b6c24 | 2015-05-19 20:30:23 -0700 | [diff] [blame] | 4028 | ScopedLocalRef<jobject> ref(soa.Env(), soa.AddLocalReference<jobject>(pReq->receiver.Read())); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4029 | JValue result = InvokeWithJValues(soa, ref.get(), soa.EncodeMethod(m), |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4030 | reinterpret_cast<jvalue*>(pReq->arg_values.get())); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4031 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4032 | // Prepare JDWP ids for the reply. |
| 4033 | JDWP::JdwpTag result_tag = BasicTagFromDescriptor(m->GetShorty()); |
| 4034 | const bool is_object_result = (result_tag == JDWP::JT_OBJECT); |
| 4035 | StackHandleScope<2> hs(soa.Self()); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4036 | Handle<mirror::Object> object_result = hs.NewHandle(is_object_result ? result.GetL() : nullptr); |
| 4037 | Handle<mirror::Throwable> exception = hs.NewHandle(soa.Self()->GetException()); |
| 4038 | soa.Self()->ClearException(); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4039 | |
| 4040 | if (!IsDebuggerActive()) { |
| 4041 | // The debugger detached: we must not re-suspend threads. We also don't need to fill the reply |
| 4042 | // because it won't be sent either. |
| 4043 | return; |
| 4044 | } |
| 4045 | |
| 4046 | JDWP::ObjectId exceptionObjectId = gRegistry->Add(exception); |
| 4047 | uint64_t result_value = 0; |
| 4048 | if (exceptionObjectId != 0) { |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4049 | VLOG(jdwp) << " JDWP invocation returning with exception=" << exception.Get() |
| 4050 | << " " << exception->Dump(); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4051 | result_value = 0; |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4052 | } else if (is_object_result) { |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4053 | /* if no exception was thrown, examine object result more closely */ |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4054 | JDWP::JdwpTag new_tag = TagFromObject(soa, object_result.Get()); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4055 | if (new_tag != result_tag) { |
| 4056 | VLOG(jdwp) << " JDWP promoted result from " << result_tag << " to " << new_tag; |
| 4057 | result_tag = new_tag; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4058 | } |
| 4059 | |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4060 | // Register the object in the registry and reference its ObjectId. This ensures |
| 4061 | // 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] | 4062 | result_value = gRegistry->Add(object_result.Get()); |
Sebastien Hertz | 1558b57 | 2015-02-25 15:05:59 +0100 | [diff] [blame] | 4063 | } else { |
| 4064 | // Primitive result. |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4065 | DCHECK(IsPrimitiveTag(result_tag)); |
| 4066 | result_value = result.GetJ(); |
| 4067 | } |
| 4068 | const bool is_constructor = m->IsConstructor() && !m->IsStatic(); |
| 4069 | if (is_constructor) { |
| 4070 | // If we invoked a constructor (which actually returns void), return the receiver, |
| 4071 | // unless we threw, in which case we return null. |
Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4072 | DCHECK_EQ(JDWP::JT_VOID, result_tag); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4073 | if (exceptionObjectId == 0) { |
| 4074 | // TODO we could keep the receiver ObjectId in the DebugInvokeReq to avoid looking into the |
| 4075 | // object registry. |
| 4076 | result_value = GetObjectRegistry()->Add(pReq->receiver.Read()); |
Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4077 | result_tag = TagFromObject(soa, pReq->receiver.Read()); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4078 | } else { |
| 4079 | result_value = 0; |
Sebastien Hertz | a3e1377 | 2015-11-05 12:09:44 +0100 | [diff] [blame] | 4080 | result_tag = JDWP::JT_OBJECT; |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4081 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4082 | } |
| 4083 | |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4084 | // Suspend other threads if the invoke is not single-threaded. |
| 4085 | if ((pReq->options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4086 | ScopedThreadSuspension sts(soa.Self(), kWaitingForDebuggerSuspension); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4087 | VLOG(jdwp) << " Suspending all threads"; |
| 4088 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
Sebastien Hertz | cbc5064 | 2015-06-01 17:33:12 +0200 | [diff] [blame] | 4089 | } |
| 4090 | |
| 4091 | VLOG(jdwp) << " --> returned " << result_tag |
| 4092 | << StringPrintf(" %#" PRIx64 " (except=%#" PRIx64 ")", result_value, |
| 4093 | exceptionObjectId); |
| 4094 | |
| 4095 | // Show detailed debug output. |
| 4096 | if (result_tag == JDWP::JT_STRING && exceptionObjectId == 0) { |
| 4097 | if (result_value != 0) { |
| 4098 | if (VLOG_IS_ON(jdwp)) { |
| 4099 | std::string result_string; |
| 4100 | JDWP::JdwpError error = Dbg::StringToUtf8(result_value, &result_string); |
| 4101 | CHECK_EQ(error, JDWP::ERR_NONE); |
| 4102 | VLOG(jdwp) << " string '" << result_string << "'"; |
| 4103 | } |
| 4104 | } else { |
| 4105 | VLOG(jdwp) << " string (null)"; |
| 4106 | } |
| 4107 | } |
| 4108 | |
| 4109 | // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread |
| 4110 | // is ready to suspend. |
| 4111 | BuildInvokeReply(pReq->reply, pReq->request_id, result_tag, result_value, exceptionObjectId); |
| 4112 | } |
| 4113 | |
| 4114 | void Dbg::BuildInvokeReply(JDWP::ExpandBuf* pReply, uint32_t request_id, JDWP::JdwpTag result_tag, |
| 4115 | uint64_t result_value, JDWP::ObjectId exception) { |
| 4116 | // Make room for the JDWP header since we do not know the size of the reply yet. |
| 4117 | JDWP::expandBufAddSpace(pReply, kJDWPHeaderLen); |
| 4118 | |
| 4119 | size_t width = GetTagWidth(result_tag); |
| 4120 | JDWP::expandBufAdd1(pReply, result_tag); |
| 4121 | if (width != 0) { |
| 4122 | WriteValue(pReply, width, result_value); |
| 4123 | } |
| 4124 | JDWP::expandBufAdd1(pReply, JDWP::JT_OBJECT); |
| 4125 | JDWP::expandBufAddObjectId(pReply, exception); |
| 4126 | |
| 4127 | // Now we know the size, we can complete the JDWP header. |
| 4128 | uint8_t* buf = expandBufGetBuffer(pReply); |
| 4129 | JDWP::Set4BE(buf + kJDWPHeaderSizeOffset, expandBufGetLength(pReply)); |
| 4130 | JDWP::Set4BE(buf + kJDWPHeaderIdOffset, request_id); |
| 4131 | JDWP::Set1(buf + kJDWPHeaderFlagsOffset, kJDWPFlagReply); // flags |
| 4132 | JDWP::Set2BE(buf + kJDWPHeaderErrorCodeOffset, JDWP::ERR_NONE); |
| 4133 | } |
| 4134 | |
| 4135 | void Dbg::FinishInvokeMethod(DebugInvokeReq* pReq) { |
| 4136 | CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread"; |
| 4137 | |
| 4138 | JDWP::ExpandBuf* const pReply = pReq->reply; |
| 4139 | CHECK(pReply != nullptr) << "No reply attached to DebugInvokeReq"; |
| 4140 | |
| 4141 | // We need to prevent other threads (including JDWP thread) from interacting with the debugger |
| 4142 | // while we send the reply but are not yet suspended. The JDWP token will be released just before |
| 4143 | // we suspend ourself again (see ThreadList::SuspendSelfForDebugger). |
| 4144 | gJdwpState->AcquireJdwpTokenForEvent(pReq->thread_id); |
| 4145 | |
| 4146 | // Send the reply unless the debugger detached before the completion of the method. |
| 4147 | if (IsDebuggerActive()) { |
| 4148 | const size_t replyDataLength = expandBufGetLength(pReply) - kJDWPHeaderLen; |
| 4149 | VLOG(jdwp) << StringPrintf("REPLY INVOKE id=0x%06x (length=%zu)", |
| 4150 | pReq->request_id, replyDataLength); |
| 4151 | |
| 4152 | gJdwpState->SendRequest(pReply); |
| 4153 | } else { |
| 4154 | VLOG(jdwp) << "Not sending invoke reply because debugger detached"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4155 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4156 | } |
| 4157 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 4158 | /* |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4159 | * "request" contains a full JDWP packet, possibly with multiple chunks. We |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4160 | * need to process each, accumulate the replies, and ship the whole thing |
| 4161 | * back. |
| 4162 | * |
| 4163 | * Returns "true" if we have a reply. The reply buffer is newly allocated, |
| 4164 | * and includes the chunk type/length, followed by the data. |
| 4165 | * |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 4166 | * 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] | 4167 | * chunk. If this becomes inconvenient we will need to adapt. |
| 4168 | */ |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4169 | bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4170 | Thread* self = Thread::Current(); |
| 4171 | JNIEnv* env = self->GetJniEnv(); |
| 4172 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4173 | uint32_t type = request->ReadUnsigned32("type"); |
| 4174 | uint32_t length = request->ReadUnsigned32("length"); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4175 | |
| 4176 | // Create a byte[] corresponding to 'request'. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4177 | size_t request_length = request->size(); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4178 | ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4179 | if (dataArray.get() == nullptr) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4180 | LOG(WARNING) << "byte[] allocation failed: " << request_length; |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4181 | env->ExceptionClear(); |
| 4182 | return false; |
| 4183 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4184 | env->SetByteArrayRegion(dataArray.get(), 0, request_length, |
| 4185 | reinterpret_cast<const jbyte*>(request->data())); |
| 4186 | request->Skip(request_length); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4187 | |
| 4188 | // Run through and find all chunks. [Currently just find the first.] |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4189 | ScopedByteArrayRO contents(env, dataArray.get()); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4190 | if (length != request_length) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 4191 | 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] | 4192 | return false; |
| 4193 | } |
| 4194 | |
| 4195 | // 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] | 4196 | ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4197 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch, |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4198 | type, dataArray.get(), 0, length)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4199 | if (env->ExceptionCheck()) { |
| 4200 | LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type); |
| 4201 | env->ExceptionDescribe(); |
| 4202 | env->ExceptionClear(); |
| 4203 | return false; |
| 4204 | } |
| 4205 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4206 | if (chunk.get() == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4207 | return false; |
| 4208 | } |
| 4209 | |
| 4210 | /* |
| 4211 | * Pull the pieces out of the chunk. We copy the results into a |
| 4212 | * newly-allocated buffer that the caller can free. We don't want to |
| 4213 | * continue using the Chunk object because nothing has a reference to it. |
| 4214 | * |
| 4215 | * We could avoid this by returning type/data/offset/length and having |
| 4216 | * the caller be aware of the object lifetime issues, but that |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 4217 | * 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] | 4218 | * if we have responses for multiple chunks. |
| 4219 | * |
| 4220 | * So we're pretty much stuck with copying data around multiple times. |
| 4221 | */ |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4222 | 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] | 4223 | 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] | 4224 | 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] | 4225 | 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] | 4226 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4227 | 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] | 4228 | if (length == 0 || replyData.get() == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4229 | return false; |
| 4230 | } |
| 4231 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4232 | const int kChunkHdrLen = 8; |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4233 | uint8_t* reply = new uint8_t[length + kChunkHdrLen]; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4234 | if (reply == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4235 | LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen); |
| 4236 | return false; |
| 4237 | } |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 4238 | JDWP::Set4BE(reply + 0, type); |
| 4239 | JDWP::Set4BE(reply + 4, length); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4240 | env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 4241 | |
| 4242 | *pReplyBuf = reply; |
| 4243 | *pReplyLen = length + kChunkHdrLen; |
| 4244 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 4245 | 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] | 4246 | return true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4247 | } |
| 4248 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4249 | void Dbg::DdmBroadcast(bool connect) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4250 | VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4251 | |
| 4252 | Thread* self = Thread::Current(); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4253 | if (self->GetState() != kRunnable) { |
| 4254 | LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); |
| 4255 | /* try anyway? */ |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4256 | } |
| 4257 | |
| 4258 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4259 | jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 4260 | env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 4261 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast, |
| 4262 | event); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4263 | if (env->ExceptionCheck()) { |
| 4264 | LOG(ERROR) << "DdmServer.broadcast " << event << " failed"; |
| 4265 | env->ExceptionDescribe(); |
| 4266 | env->ExceptionClear(); |
| 4267 | } |
| 4268 | } |
| 4269 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4270 | void Dbg::DdmConnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4271 | Dbg::DdmBroadcast(true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4272 | } |
| 4273 | |
| 4274 | void Dbg::DdmDisconnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4275 | Dbg::DdmBroadcast(false); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4276 | gDdmThreadNotification = false; |
| 4277 | } |
| 4278 | |
| 4279 | /* |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4280 | * Send a notification when a thread starts, stops, or changes its name. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4281 | * |
| 4282 | * Because we broadcast the full set of threads when the notifications are |
| 4283 | * first enabled, it's possible for "thread" to be actively executing. |
| 4284 | */ |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4285 | void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4286 | if (!gDdmThreadNotification) { |
| 4287 | return; |
| 4288 | } |
| 4289 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4290 | if (type == CHUNK_TYPE("THDE")) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4291 | uint8_t buf[4]; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4292 | JDWP::Set4BE(&buf[0], t->GetThreadId()); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4293 | Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf); |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4294 | } else { |
| 4295 | CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4296 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 4297 | StackHandleScope<1> hs(soa.Self()); |
| 4298 | Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa))); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4299 | size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0; |
Jeff Hao | 848f70a | 2014-01-15 13:49:50 -0800 | [diff] [blame] | 4300 | const jchar* chars = (name.Get() != nullptr) ? name->GetValue() : nullptr; |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4301 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4302 | std::vector<uint8_t> bytes; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 4303 | JDWP::Append4BE(bytes, t->GetThreadId()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4304 | JDWP::AppendUtf16BE(bytes, chars, char_count); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4305 | CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2); |
| 4306 | Dbg::DdmSendChunk(type, bytes); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4307 | } |
| 4308 | } |
| 4309 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4310 | void Dbg::DdmSetThreadNotification(bool enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4311 | // Enable/disable thread notifications. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4312 | gDdmThreadNotification = enable; |
| 4313 | if (enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4314 | // Suspend the VM then post thread start notifications for all threads. Threads attaching will |
| 4315 | // see a suspension in progress and block until that ends. They then post their own start |
| 4316 | // notification. |
| 4317 | SuspendVM(); |
| 4318 | std::list<Thread*> threads; |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4319 | Thread* self = Thread::Current(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4320 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4321 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4322 | threads = Runtime::Current()->GetThreadList()->GetList(); |
| 4323 | } |
| 4324 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4325 | ScopedObjectAccess soa(self); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4326 | for (Thread* thread : threads) { |
| 4327 | Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR")); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4328 | } |
| 4329 | } |
| 4330 | ResumeVM(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4331 | } |
| 4332 | } |
| 4333 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4334 | void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 4335 | if (IsDebuggerActive()) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 4336 | gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4337 | } |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4338 | Dbg::DdmSendThreadNotification(t, type); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4339 | } |
| 4340 | |
| 4341 | void Dbg::PostThreadStart(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4342 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 4343 | } |
| 4344 | |
| 4345 | void Dbg::PostThreadDeath(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4346 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE")); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4347 | } |
| 4348 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4349 | 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] | 4350 | CHECK(buf != nullptr); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4351 | iovec vec[1]; |
| 4352 | vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf)); |
| 4353 | vec[0].iov_len = byte_count; |
| 4354 | Dbg::DdmSendChunkV(type, vec, 1); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4355 | } |
| 4356 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4357 | void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) { |
| 4358 | DdmSendChunk(type, bytes.size(), &bytes[0]); |
| 4359 | } |
| 4360 | |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 4361 | void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4362 | if (gJdwpState == nullptr) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4363 | VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4364 | } else { |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 4365 | gJdwpState->DdmSendChunkV(type, iov, iov_count); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4366 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4367 | } |
| 4368 | |
Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 4369 | JDWP::JdwpState* Dbg::GetJdwpState() { |
| 4370 | return gJdwpState; |
| 4371 | } |
| 4372 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4373 | int Dbg::DdmHandleHpifChunk(HpifWhen when) { |
| 4374 | if (when == HPIF_WHEN_NOW) { |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4375 | DdmSendHeapInfo(when); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4376 | return true; |
| 4377 | } |
| 4378 | |
| 4379 | if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) { |
| 4380 | LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when); |
| 4381 | return false; |
| 4382 | } |
| 4383 | |
| 4384 | gDdmHpifWhen = when; |
| 4385 | return true; |
| 4386 | } |
| 4387 | |
| 4388 | bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { |
| 4389 | if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) { |
| 4390 | LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when); |
| 4391 | return false; |
| 4392 | } |
| 4393 | |
| 4394 | if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { |
| 4395 | LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); |
| 4396 | return false; |
| 4397 | } |
| 4398 | |
| 4399 | if (native) { |
| 4400 | gDdmNhsgWhen = when; |
| 4401 | gDdmNhsgWhat = what; |
| 4402 | } else { |
| 4403 | gDdmHpsgWhen = when; |
| 4404 | gDdmHpsgWhat = what; |
| 4405 | } |
| 4406 | return true; |
| 4407 | } |
| 4408 | |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4409 | void Dbg::DdmSendHeapInfo(HpifWhen reason) { |
| 4410 | // If there's a one-shot 'when', reset it. |
| 4411 | if (reason == gDdmHpifWhen) { |
| 4412 | if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) { |
| 4413 | gDdmHpifWhen = HPIF_WHEN_NEVER; |
| 4414 | } |
| 4415 | } |
| 4416 | |
| 4417 | /* |
| 4418 | * Chunk HPIF (client --> server) |
| 4419 | * |
| 4420 | * Heap Info. General information about the heap, |
| 4421 | * suitable for a summary display. |
| 4422 | * |
| 4423 | * [u4]: number of heaps |
| 4424 | * |
| 4425 | * For each heap: |
| 4426 | * [u4]: heap ID |
| 4427 | * [u8]: timestamp in ms since Unix epoch |
| 4428 | * [u1]: capture reason (same as 'when' value from server) |
| 4429 | * [u4]: max heap size in bytes (-Xmx) |
| 4430 | * [u4]: current heap size in bytes |
| 4431 | * [u4]: current number of bytes allocated |
| 4432 | * [u4]: current number of objects allocated |
| 4433 | */ |
| 4434 | uint8_t heap_count = 1; |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4435 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4436 | std::vector<uint8_t> bytes; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4437 | JDWP::Append4BE(bytes, heap_count); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4438 | JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap). |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4439 | JDWP::Append8BE(bytes, MilliTime()); |
| 4440 | JDWP::Append1BE(bytes, reason); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4441 | JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes. |
| 4442 | JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 4443 | JDWP::Append4BE(bytes, heap->GetBytesAllocated()); |
| 4444 | JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4445 | CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4))); |
| 4446 | Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4447 | } |
| 4448 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4449 | enum HpsgSolidity { |
| 4450 | SOLIDITY_FREE = 0, |
| 4451 | SOLIDITY_HARD = 1, |
| 4452 | SOLIDITY_SOFT = 2, |
| 4453 | SOLIDITY_WEAK = 3, |
| 4454 | SOLIDITY_PHANTOM = 4, |
| 4455 | SOLIDITY_FINALIZABLE = 5, |
| 4456 | SOLIDITY_SWEEP = 6, |
| 4457 | }; |
| 4458 | |
| 4459 | enum HpsgKind { |
| 4460 | KIND_OBJECT = 0, |
| 4461 | KIND_CLASS_OBJECT = 1, |
| 4462 | KIND_ARRAY_1 = 2, |
| 4463 | KIND_ARRAY_2 = 3, |
| 4464 | KIND_ARRAY_4 = 4, |
| 4465 | KIND_ARRAY_8 = 5, |
| 4466 | KIND_UNKNOWN = 6, |
| 4467 | KIND_NATIVE = 7, |
| 4468 | }; |
| 4469 | |
| 4470 | #define HPSG_PARTIAL (1<<7) |
| 4471 | #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7))) |
| 4472 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4473 | class HeapChunkContext { |
| 4474 | public: |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4475 | // Maximum chunk size. Obtain this from the formula: |
| 4476 | // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2 |
| 4477 | HeapChunkContext(bool merge, bool native) |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4478 | : buf_(16384 - 16), |
| 4479 | type_(0), |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4480 | chunk_overhead_(0) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4481 | Reset(); |
| 4482 | if (native) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4483 | type_ = CHUNK_TYPE("NHSG"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4484 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4485 | type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4486 | } |
| 4487 | } |
| 4488 | |
| 4489 | ~HeapChunkContext() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4490 | if (p_ > &buf_[0]) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4491 | Flush(); |
| 4492 | } |
| 4493 | } |
| 4494 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4495 | void SetChunkOverhead(size_t chunk_overhead) { |
| 4496 | chunk_overhead_ = chunk_overhead; |
| 4497 | } |
| 4498 | |
| 4499 | void ResetStartOfNextChunk() { |
| 4500 | startOfNextMemoryChunk_ = nullptr; |
| 4501 | } |
| 4502 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4503 | void EnsureHeader(const void* chunk_ptr) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4504 | if (!needHeader_) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4505 | return; |
| 4506 | } |
| 4507 | |
| 4508 | // Start a new HPSx chunk. |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4509 | JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). |
| 4510 | JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4511 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4512 | JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. |
| 4513 | 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] | 4514 | // [u4]: length of piece, in allocation units |
| 4515 | // 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] | 4516 | pieceLenField_ = p_; |
| 4517 | JDWP::Write4BE(&p_, 0x55555555); |
| 4518 | needHeader_ = false; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4519 | } |
| 4520 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4521 | void Flush() SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4522 | if (pieceLenField_ == nullptr) { |
Ian Rogers | d636b06 | 2013-01-18 17:51:18 -0800 | [diff] [blame] | 4523 | // Flush immediately post Reset (maybe back-to-back Flush). Ignore. |
| 4524 | CHECK(needHeader_); |
| 4525 | return; |
| 4526 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4527 | // Patch the "length of piece" field. |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4528 | CHECK_LE(&buf_[0], pieceLenField_); |
| 4529 | CHECK_LE(pieceLenField_, p_); |
| 4530 | JDWP::Set4BE(pieceLenField_, totalAllocationUnits_); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4531 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4532 | Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4533 | Reset(); |
| 4534 | } |
| 4535 | |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4536 | static void HeapChunkJavaCallback(void* start, void* end, size_t used_bytes, void* arg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4537 | SHARED_REQUIRES(Locks::heap_bitmap_lock_, |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4538 | Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4539 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkJavaCallback(start, end, used_bytes); |
| 4540 | } |
| 4541 | |
| 4542 | static void HeapChunkNativeCallback(void* start, void* end, size_t used_bytes, void* arg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4543 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4544 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkNativeCallback(start, end, used_bytes); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4545 | } |
| 4546 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4547 | private: |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4548 | enum { ALLOCATION_UNIT_SIZE = 8 }; |
| 4549 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4550 | void Reset() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4551 | p_ = &buf_[0]; |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4552 | ResetStartOfNextChunk(); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4553 | totalAllocationUnits_ = 0; |
| 4554 | needHeader_ = true; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4555 | pieceLenField_ = nullptr; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4556 | } |
| 4557 | |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4558 | bool IsNative() const { |
| 4559 | return type_ == CHUNK_TYPE("NHSG"); |
| 4560 | } |
| 4561 | |
| 4562 | // Returns true if the object is not an empty chunk. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4563 | bool ProcessRecord(void* start, size_t used_bytes) SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4564 | // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken |
| 4565 | // 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] | 4566 | if (used_bytes == 0) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4567 | if (start == nullptr) { |
| 4568 | // Reset for start of new heap. |
| 4569 | startOfNextMemoryChunk_ = nullptr; |
| 4570 | Flush(); |
| 4571 | } |
| 4572 | // Only process in use memory so that free region information |
| 4573 | // also includes dlmalloc book keeping. |
| 4574 | return false; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4575 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4576 | if (startOfNextMemoryChunk_ != nullptr) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4577 | // Transmit any pending free memory. Native free memory of over kMaxFreeLen could be because |
| 4578 | // of the use of mmaps, so don't report. If not free memory then start a new segment. |
| 4579 | bool flush = true; |
| 4580 | if (start > startOfNextMemoryChunk_) { |
| 4581 | const size_t kMaxFreeLen = 2 * kPageSize; |
| 4582 | void* free_start = startOfNextMemoryChunk_; |
| 4583 | void* free_end = start; |
| 4584 | const size_t free_len = |
| 4585 | reinterpret_cast<uintptr_t>(free_end) - reinterpret_cast<uintptr_t>(free_start); |
| 4586 | if (!IsNative() || free_len < kMaxFreeLen) { |
| 4587 | AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), free_start, free_len, IsNative()); |
| 4588 | flush = false; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4589 | } |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4590 | } |
| 4591 | if (flush) { |
| 4592 | startOfNextMemoryChunk_ = nullptr; |
| 4593 | Flush(); |
| 4594 | } |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4595 | } |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4596 | return true; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4597 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4598 | |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4599 | void HeapChunkNativeCallback(void* start, void* /*end*/, size_t used_bytes) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4600 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4601 | if (ProcessRecord(start, used_bytes)) { |
| 4602 | uint8_t state = ExamineNativeObject(start); |
| 4603 | AppendChunk(state, start, used_bytes + chunk_overhead_, true /*is_native*/); |
| 4604 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4605 | } |
| 4606 | } |
| 4607 | |
| 4608 | void HeapChunkJavaCallback(void* start, void* /*end*/, size_t used_bytes) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4609 | SHARED_REQUIRES(Locks::heap_bitmap_lock_, Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4610 | if (ProcessRecord(start, used_bytes)) { |
| 4611 | // Determine the type of this chunk. |
| 4612 | // OLD-TODO: if context.merge, see if this chunk is different from the last chunk. |
| 4613 | // If it's the same, we should combine them. |
| 4614 | uint8_t state = ExamineJavaObject(reinterpret_cast<mirror::Object*>(start)); |
| 4615 | AppendChunk(state, start, used_bytes + chunk_overhead_, false /*is_native*/); |
| 4616 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
| 4617 | } |
| 4618 | } |
| 4619 | |
| 4620 | void AppendChunk(uint8_t state, void* ptr, size_t length, bool is_native) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4621 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4622 | // Make sure there's enough room left in the buffer. |
| 4623 | // We need to use two bytes for every fractional 256 allocation units used by the chunk plus |
| 4624 | // 17 bytes for any header. |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4625 | const size_t needed = ((RoundUp(length / ALLOCATION_UNIT_SIZE, 256) / 256) * 2) + 17; |
| 4626 | size_t byte_left = &buf_.back() - p_; |
| 4627 | if (byte_left < needed) { |
| 4628 | if (is_native) { |
Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4629 | // Cannot trigger memory allocation while walking native heap. |
Pavel Vyssotski | 7522c74 | 2014-12-08 13:38:26 +0600 | [diff] [blame] | 4630 | return; |
| 4631 | } |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4632 | Flush(); |
| 4633 | } |
| 4634 | |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4635 | byte_left = &buf_.back() - p_; |
| 4636 | if (byte_left < needed) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4637 | LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", " |
| 4638 | << needed << " bytes)"; |
| 4639 | return; |
| 4640 | } |
| 4641 | EnsureHeader(ptr); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4642 | // Write out the chunk description. |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4643 | length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units. |
| 4644 | totalAllocationUnits_ += length; |
| 4645 | while (length > 256) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4646 | *p_++ = state | HPSG_PARTIAL; |
| 4647 | *p_++ = 255; // length - 1 |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4648 | length -= 256; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4649 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4650 | *p_++ = state; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4651 | *p_++ = length - 1; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4652 | } |
| 4653 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4654 | uint8_t ExamineNativeObject(const void* p) SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4655 | return p == nullptr ? HPSG_STATE(SOLIDITY_FREE, 0) : HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4656 | } |
| 4657 | |
| 4658 | uint8_t ExamineJavaObject(mirror::Object* o) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4659 | SHARED_REQUIRES(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4660 | if (o == nullptr) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4661 | return HPSG_STATE(SOLIDITY_FREE, 0); |
| 4662 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4663 | // It's an allocated chunk. Figure out what it is. |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4664 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 4665 | if (!heap->IsLiveObjectLocked(o)) { |
| 4666 | LOG(ERROR) << "Invalid object in managed heap: " << o; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4667 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4668 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 4669 | mirror::Class* c = o->GetClass(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4670 | if (c == nullptr) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4671 | // The object was probably just created but hasn't been initialized yet. |
| 4672 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4673 | } |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4674 | if (!heap->IsValidObjectAddress(c)) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4675 | LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4676 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4677 | } |
Mathieu Chartier | f26e1b3 | 2015-01-29 10:47:10 -0800 | [diff] [blame] | 4678 | if (c->GetClass() == nullptr) { |
| 4679 | LOG(ERROR) << "Null class of class " << c << " for object " << o; |
| 4680 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4681 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4682 | if (c->IsClassClass()) { |
| 4683 | return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT); |
| 4684 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4685 | if (c->IsArrayClass()) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4686 | switch (c->GetComponentSize()) { |
| 4687 | case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1); |
| 4688 | case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2); |
| 4689 | case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4690 | case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8); |
| 4691 | } |
| 4692 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4693 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4694 | } |
| 4695 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4696 | std::vector<uint8_t> buf_; |
| 4697 | uint8_t* p_; |
| 4698 | uint8_t* pieceLenField_; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4699 | void* startOfNextMemoryChunk_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4700 | size_t totalAllocationUnits_; |
| 4701 | uint32_t type_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4702 | bool needHeader_; |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4703 | size_t chunk_overhead_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4704 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4705 | DISALLOW_COPY_AND_ASSIGN(HeapChunkContext); |
| 4706 | }; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4707 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4708 | static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4709 | SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) { |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4710 | const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment); |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4711 | HeapChunkContext::HeapChunkJavaCallback( |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4712 | obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg); |
| 4713 | } |
| 4714 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4715 | void Dbg::DdmSendHeapSegments(bool native) { |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4716 | Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen; |
| 4717 | Dbg::HpsgWhat what = native ? gDdmNhsgWhat : gDdmHpsgWhat; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4718 | if (when == HPSG_WHEN_NEVER) { |
| 4719 | return; |
| 4720 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4721 | // Figure out what kind of chunks we'll be sending. |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4722 | CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) |
| 4723 | << static_cast<int>(what); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4724 | |
| 4725 | // First, send a heap start chunk. |
| 4726 | uint8_t heap_id[4]; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4727 | 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] | 4728 | 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] | 4729 | Thread* self = Thread::Current(); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4730 | Locks::mutator_lock_->AssertSharedHeld(self); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4731 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4732 | // Send a series of heap segment chunks. |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4733 | HeapChunkContext context(what == HPSG_WHAT_MERGED_OBJECTS, native); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4734 | if (native) { |
Andreas Gampe | c60e1b7 | 2015-07-30 08:57:50 -0700 | [diff] [blame] | 4735 | #if defined(__ANDROID__) && defined(USE_DLMALLOC) |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4736 | dlmalloc_inspect_all(HeapChunkContext::HeapChunkNativeCallback, &context); |
| 4737 | HeapChunkContext::HeapChunkNativeCallback(nullptr, nullptr, 0, &context); // Indicate end of a space. |
Christopher Ferris | c4ddc04 | 2014-05-13 14:47:50 -0700 | [diff] [blame] | 4738 | #else |
| 4739 | UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc"; |
| 4740 | #endif |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4741 | } else { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4742 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4743 | for (const auto& space : heap->GetContinuousSpaces()) { |
| 4744 | if (space->IsDlMallocSpace()) { |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4745 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4746 | // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an |
| 4747 | // allocation then the first sizeof(size_t) may belong to it. |
| 4748 | context.SetChunkOverhead(sizeof(size_t)); |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4749 | space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4750 | } else if (space->IsRosAllocSpace()) { |
| 4751 | context.SetChunkOverhead(0); |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4752 | // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since |
| 4753 | // 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] | 4754 | ScopedThreadSuspension sts(self, kSuspended); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4755 | ScopedSuspendAll ssa(__FUNCTION__); |
| 4756 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4757 | space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4758 | } else if (space->IsBumpPointerSpace()) { |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4759 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4760 | context.SetChunkOverhead(0); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4761 | space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context); |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4762 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4763 | } else if (space->IsRegionSpace()) { |
| 4764 | heap->IncrementDisableMovingGC(self); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4765 | { |
| 4766 | ScopedThreadSuspension sts(self, kSuspended); |
Mathieu Chartier | 4f55e22 | 2015-09-04 13:26:21 -0700 | [diff] [blame] | 4767 | ScopedSuspendAll ssa(__FUNCTION__); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4768 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4769 | context.SetChunkOverhead(0); |
| 4770 | space->AsRegionSpace()->Walk(BumpPointerSpaceCallback, &context); |
| 4771 | HeapChunkContext::HeapChunkJavaCallback(nullptr, nullptr, 0, &context); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 4772 | } |
Hiroshi Yamauchi | 2cd334a | 2015-01-09 14:03:35 -0800 | [diff] [blame] | 4773 | heap->DecrementDisableMovingGC(self); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4774 | } else { |
| 4775 | UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space; |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4776 | } |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4777 | context.ResetStartOfNextChunk(); |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4778 | } |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4779 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4780 | // Walk the large objects, these are not in the AllocSpace. |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4781 | context.SetChunkOverhead(0); |
Mathieu Chartier | bc689b7 | 2014-12-14 17:01:31 -0800 | [diff] [blame] | 4782 | heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkJavaCallback, &context); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4783 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4784 | |
| 4785 | // Finally, send a heap end chunk. |
| 4786 | 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] | 4787 | } |
| 4788 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4789 | void Dbg::SetAllocTrackingEnabled(bool enable) { |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4790 | gc::AllocRecordObjectMap::SetAllocTrackingEnabled(enable); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4791 | } |
| 4792 | |
| 4793 | void Dbg::DumpRecentAllocations() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4794 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4795 | MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4796 | if (!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4797 | LOG(INFO) << "Not recording tracked allocations"; |
| 4798 | return; |
| 4799 | } |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4800 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 4801 | CHECK(records != nullptr); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4802 | |
Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 4803 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4804 | uint16_t count = capped_count; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4805 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4806 | LOG(INFO) << "Tracked allocations, (count=" << count << ")"; |
| 4807 | for (auto it = records->RBegin(), end = records->REnd(); |
| 4808 | count > 0 && it != end; count--, it++) { |
| 4809 | const gc::AllocRecord* record = it->second; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4810 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4811 | LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) |
Man Cao | 42c3c33 | 2015-06-23 16:38:25 -0700 | [diff] [blame] | 4812 | << PrettyClass(record->GetClass()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4813 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4814 | for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { |
| 4815 | const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); |
| 4816 | ArtMethod* m = stack_element.GetMethod(); |
| 4817 | LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element.ComputeLineNumber(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4818 | } |
| 4819 | |
| 4820 | // pause periodically to help logcat catch up |
| 4821 | if ((count % 5) == 0) { |
| 4822 | usleep(40000); |
| 4823 | } |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4824 | } |
| 4825 | } |
| 4826 | |
| 4827 | class StringTable { |
| 4828 | public: |
| 4829 | StringTable() { |
| 4830 | } |
| 4831 | |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4832 | void Add(const std::string& str) { |
| 4833 | table_.insert(str); |
| 4834 | } |
| 4835 | |
| 4836 | void Add(const char* str) { |
| 4837 | table_.insert(str); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4838 | } |
| 4839 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4840 | size_t IndexOf(const char* s) const { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4841 | auto it = table_.find(s); |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4842 | if (it == table_.end()) { |
| 4843 | LOG(FATAL) << "IndexOf(\"" << s << "\") failed"; |
| 4844 | } |
| 4845 | return std::distance(table_.begin(), it); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4846 | } |
| 4847 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4848 | size_t Size() const { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4849 | return table_.size(); |
| 4850 | } |
| 4851 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4852 | void WriteTo(std::vector<uint8_t>& bytes) const { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4853 | for (const std::string& str : table_) { |
| 4854 | const char* s = str.c_str(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 4855 | size_t s_len = CountModifiedUtf8Chars(s); |
Christopher Ferris | 8a35405 | 2015-04-24 17:23:53 -0700 | [diff] [blame] | 4856 | std::unique_ptr<uint16_t[]> s_utf16(new uint16_t[s_len]); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 4857 | ConvertModifiedUtf8ToUtf16(s_utf16.get(), s); |
| 4858 | JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4859 | } |
| 4860 | } |
| 4861 | |
| 4862 | private: |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4863 | std::set<std::string> table_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4864 | DISALLOW_COPY_AND_ASSIGN(StringTable); |
| 4865 | }; |
| 4866 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 4867 | static const char* GetMethodSourceFile(ArtMethod* method) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 4868 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4869 | DCHECK(method != nullptr); |
| 4870 | const char* source_file = method->GetDeclaringClassSourceFile(); |
Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 4871 | return (source_file != nullptr) ? source_file : ""; |
| 4872 | } |
| 4873 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4874 | /* |
| 4875 | * The data we send to DDMS contains everything we have recorded. |
| 4876 | * |
| 4877 | * Message header (all values big-endian): |
| 4878 | * (1b) message header len (to allow future expansion); includes itself |
| 4879 | * (1b) entry header len |
| 4880 | * (1b) stack frame len |
| 4881 | * (2b) number of entries |
| 4882 | * (4b) offset to string table from start of message |
| 4883 | * (2b) number of class name strings |
| 4884 | * (2b) number of method name strings |
| 4885 | * (2b) number of source file name strings |
| 4886 | * For each entry: |
| 4887 | * (4b) total allocation size |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 4888 | * (2b) thread id |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4889 | * (2b) allocated object's class name index |
| 4890 | * (1b) stack depth |
| 4891 | * For each stack frame: |
| 4892 | * (2b) method's class name |
| 4893 | * (2b) method name |
| 4894 | * (2b) method source file |
| 4895 | * (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| 4896 | * (xb) class name strings |
| 4897 | * (xb) method name strings |
| 4898 | * (xb) source file strings |
| 4899 | * |
| 4900 | * As with other DDM traffic, strings are sent as a 4-byte length |
| 4901 | * followed by UTF-16 data. |
| 4902 | * |
| 4903 | * 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] | 4904 | * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4905 | * each table, but in practice there should be far fewer. |
| 4906 | * |
| 4907 | * The chief reason for using a string table here is to keep the size of |
| 4908 | * the DDMS message to a minimum. This is partly to make the protocol |
| 4909 | * efficient, but also because we have to form the whole thing up all at |
| 4910 | * once in a memory buffer. |
| 4911 | * |
| 4912 | * We use separate string tables for class names, method names, and source |
| 4913 | * files to keep the indexes small. There will generally be no overlap |
| 4914 | * between the contents of these tables. |
| 4915 | */ |
| 4916 | jbyteArray Dbg::GetRecentAllocations() { |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 4917 | if ((false)) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4918 | DumpRecentAllocations(); |
| 4919 | } |
| 4920 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4921 | Thread* self = Thread::Current(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4922 | std::vector<uint8_t> bytes; |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4923 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4924 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4925 | gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); |
| 4926 | // In case this method is called when allocation tracker is disabled, |
| 4927 | // we should still send some data back. |
| 4928 | gc::AllocRecordObjectMap dummy; |
| 4929 | if (records == nullptr) { |
| 4930 | CHECK(!Runtime::Current()->GetHeap()->IsAllocTrackingEnabled()); |
| 4931 | records = &dummy; |
| 4932 | } |
Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 4933 | // We don't need to wait on the condition variable records->new_record_condition_, because this |
| 4934 | // function only reads the class objects, which are already marked so it doesn't change their |
| 4935 | // reachability. |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4936 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4937 | // |
| 4938 | // Part 1: generate string tables. |
| 4939 | // |
| 4940 | StringTable class_names; |
| 4941 | StringTable method_names; |
| 4942 | StringTable filenames; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4943 | |
Man Cao | 1ed11b9 | 2015-06-11 22:47:35 -0700 | [diff] [blame] | 4944 | const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4945 | uint16_t count = capped_count; |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4946 | for (auto it = records->RBegin(), end = records->REnd(); |
| 4947 | count > 0 && it != end; count--, it++) { |
| 4948 | const gc::AllocRecord* record = it->second; |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 4949 | std::string temp; |
Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 4950 | class_names.Add(record->GetClassDescriptor(&temp)); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4951 | for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { |
| 4952 | ArtMethod* m = record->StackElement(i).GetMethod(); |
| 4953 | class_names.Add(m->GetDeclaringClassDescriptor()); |
| 4954 | method_names.Add(m->GetName()); |
| 4955 | filenames.Add(GetMethodSourceFile(m)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4956 | } |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4957 | } |
| 4958 | |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4959 | LOG(INFO) << "recent allocation records: " << capped_count; |
| 4960 | LOG(INFO) << "allocation records all objects: " << records->Size(); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4961 | |
| 4962 | // |
| 4963 | // Part 2: Generate the output and store it in the buffer. |
| 4964 | // |
| 4965 | |
| 4966 | // (1b) message header len (to allow future expansion); includes itself |
| 4967 | // (1b) entry header len |
| 4968 | // (1b) stack frame len |
| 4969 | const int kMessageHeaderLen = 15; |
| 4970 | const int kEntryHeaderLen = 9; |
| 4971 | const int kStackFrameLen = 8; |
| 4972 | JDWP::Append1BE(bytes, kMessageHeaderLen); |
| 4973 | JDWP::Append1BE(bytes, kEntryHeaderLen); |
| 4974 | JDWP::Append1BE(bytes, kStackFrameLen); |
| 4975 | |
| 4976 | // (2b) number of entries |
| 4977 | // (4b) offset to string table from start of message |
| 4978 | // (2b) number of class name strings |
| 4979 | // (2b) number of method name strings |
| 4980 | // (2b) number of source file name strings |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4981 | JDWP::Append2BE(bytes, capped_count); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4982 | size_t string_table_offset = bytes.size(); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4983 | JDWP::Append4BE(bytes, 0); // We'll patch this later... |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4984 | JDWP::Append2BE(bytes, class_names.Size()); |
| 4985 | JDWP::Append2BE(bytes, method_names.Size()); |
| 4986 | JDWP::Append2BE(bytes, filenames.Size()); |
| 4987 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 4988 | std::string temp; |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4989 | count = capped_count; |
| 4990 | // The last "count" number of allocation records in "records" are the most recent "count" number |
| 4991 | // of allocations. Reverse iterate to get them. The most recent allocation is sent first. |
| 4992 | for (auto it = records->RBegin(), end = records->REnd(); |
| 4993 | count > 0 && it != end; count--, it++) { |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4994 | // For each entry: |
| 4995 | // (4b) total allocation size |
| 4996 | // (2b) thread id |
| 4997 | // (2b) allocated object's class name index |
| 4998 | // (1b) stack depth |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 4999 | const gc::AllocRecord* record = it->second; |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5000 | size_t stack_depth = record->GetDepth(); |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 5001 | size_t allocated_object_class_name_index = |
Man Cao | 41656de | 2015-07-06 18:53:15 -0700 | [diff] [blame] | 5002 | class_names.IndexOf(record->GetClassDescriptor(&temp)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 5003 | JDWP::Append4BE(bytes, record->ByteCount()); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5004 | JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid())); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5005 | JDWP::Append2BE(bytes, allocated_object_class_name_index); |
| 5006 | JDWP::Append1BE(bytes, stack_depth); |
| 5007 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5008 | for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { |
| 5009 | // For each stack frame: |
| 5010 | // (2b) method's class name |
| 5011 | // (2b) method name |
| 5012 | // (2b) method source file |
| 5013 | // (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] | 5014 | ArtMethod* m = record->StackElement(stack_frame).GetMethod(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 5015 | size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); |
| 5016 | size_t method_name_index = method_names.IndexOf(m->GetName()); |
| 5017 | size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5018 | JDWP::Append2BE(bytes, class_name_index); |
| 5019 | JDWP::Append2BE(bytes, method_name_index); |
| 5020 | JDWP::Append2BE(bytes, file_name_index); |
Man Cao | 8c2ff64 | 2015-05-27 17:25:30 -0700 | [diff] [blame] | 5021 | JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber()); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5022 | } |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 5023 | } |
| 5024 | |
| 5025 | // (xb) class name strings |
| 5026 | // (xb) method name strings |
| 5027 | // (xb) source file strings |
| 5028 | JDWP::Set4BE(&bytes[string_table_offset], bytes.size()); |
| 5029 | class_names.WriteTo(bytes); |
| 5030 | method_names.WriteTo(bytes); |
| 5031 | filenames.WriteTo(bytes); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5032 | } |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 5033 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5034 | jbyteArray result = env->NewByteArray(bytes.size()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 5035 | if (result != nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 5036 | env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); |
| 5037 | } |
| 5038 | return result; |
| 5039 | } |
| 5040 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5041 | ArtMethod* DeoptimizationRequest::Method() const { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5042 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 5043 | return soa.DecodeMethod(method_); |
| 5044 | } |
| 5045 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 5046 | void DeoptimizationRequest::SetMethod(ArtMethod* m) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 5047 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 5048 | method_ = soa.EncodeMethod(m); |
| 5049 | } |
| 5050 | |
Mathieu Chartier | a6b1ead | 2015-10-06 10:32:38 -0700 | [diff] [blame] | 5051 | void Dbg::VisitRoots(RootVisitor* visitor) { |
| 5052 | // Visit breakpoint roots, used to prevent unloading of methods with breakpoints. |
| 5053 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
| 5054 | BufferedRootVisitor<128> root_visitor(visitor, RootInfo(kRootVMInternal)); |
| 5055 | for (Breakpoint& breakpoint : gBreakpoints) { |
| 5056 | breakpoint.Method()->VisitRoots(root_visitor, sizeof(void*)); |
| 5057 | } |
| 5058 | } |
| 5059 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 5060 | } // namespace art |