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" |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 24 | #include "class_linker.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 25 | #include "class_linker-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 26 | #include "dex_file-inl.h" |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 27 | #include "dex_instruction.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 28 | #include "field_helper.h" |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 29 | #include "gc/accounting/card_table-inl.h" |
| 30 | #include "gc/space/large_object_space.h" |
| 31 | #include "gc/space/space-inl.h" |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 32 | #include "handle_scope.h" |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 33 | #include "jdwp/object_registry.h" |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 34 | #include "method_helper.h" |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 35 | #include "mirror/art_field-inl.h" |
| 36 | #include "mirror/art_method-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 37 | #include "mirror/class.h" |
| 38 | #include "mirror/class-inl.h" |
| 39 | #include "mirror/class_loader.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 40 | #include "mirror/object-inl.h" |
| 41 | #include "mirror/object_array-inl.h" |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 42 | #include "mirror/string-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 43 | #include "mirror/throwable.h" |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 44 | #include "quick/inline_method_analyser.h" |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 45 | #include "reflection.h" |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 46 | #include "safe_map.h" |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 47 | #include "scoped_thread_state_change.h" |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 48 | #include "ScopedLocalRef.h" |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 49 | #include "ScopedPrimitiveArray.h" |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 50 | #include "handle_scope-inl.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 51 | #include "thread_list.h" |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 52 | #include "throw_location.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 53 | #include "utf.h" |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 54 | #include "verifier/method_verifier-inl.h" |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 55 | #include "well_known_classes.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 56 | |
Brian Carlstrom | 3d92d52 | 2013-07-12 09:03:08 -0700 | [diff] [blame] | 57 | #ifdef HAVE_ANDROID_OS |
| 58 | #include "cutils/properties.h" |
| 59 | #endif |
| 60 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 61 | namespace art { |
| 62 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 63 | static const size_t kMaxAllocRecordStackDepth = 16; // Max 255. |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 64 | static const size_t kDefaultNumAllocRecords = 64*1024; // Must be a power of 2. 2BE can hold 64k-1. |
| 65 | |
| 66 | // Limit alloc_record_count to the 2BE value that is the limit of the current protocol. |
| 67 | static uint16_t CappedAllocRecordCount(size_t alloc_record_count) { |
| 68 | if (alloc_record_count > 0xffff) { |
| 69 | return 0xffff; |
| 70 | } |
| 71 | return alloc_record_count; |
| 72 | } |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 73 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 74 | class AllocRecordStackTraceElement { |
| 75 | public: |
| 76 | AllocRecordStackTraceElement() : method_(nullptr), dex_pc_(0) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 77 | } |
| 78 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 79 | int32_t LineNumber() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 80 | mirror::ArtMethod* method = Method(); |
| 81 | DCHECK(method != nullptr); |
| 82 | return method->GetLineNumFromDexPC(DexPc()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 83 | } |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 84 | |
| 85 | mirror::ArtMethod* Method() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 86 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 87 | return soa.DecodeMethod(method_); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 91 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 92 | method_ = soa.EncodeMethod(m); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | uint32_t DexPc() const { |
| 96 | return dex_pc_; |
| 97 | } |
| 98 | |
| 99 | void SetDexPc(uint32_t pc) { |
| 100 | dex_pc_ = pc; |
| 101 | } |
| 102 | |
| 103 | private: |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 104 | jmethodID method_; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 105 | uint32_t dex_pc_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 106 | }; |
| 107 | |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 108 | jobject Dbg::TypeCache::Add(mirror::Class* t) { |
| 109 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 110 | int32_t hash_code = t->IdentityHashCode(); |
| 111 | auto range = objects_.equal_range(hash_code); |
| 112 | for (auto it = range.first; it != range.second; ++it) { |
| 113 | if (soa.Decode<mirror::Class*>(it->second) == t) { |
| 114 | // Found a matching weak global, return it. |
| 115 | return it->second; |
| 116 | } |
| 117 | } |
| 118 | JNIEnv* env = soa.Env(); |
| 119 | const jobject local_ref = soa.AddLocalReference<jobject>(t); |
| 120 | const jobject weak_global = env->NewWeakGlobalRef(local_ref); |
| 121 | env->DeleteLocalRef(local_ref); |
| 122 | objects_.insert(std::make_pair(hash_code, weak_global)); |
| 123 | return weak_global; |
| 124 | } |
| 125 | |
| 126 | void Dbg::TypeCache::Clear() { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 127 | JavaVMExt* vm = Runtime::Current()->GetJavaVM(); |
| 128 | Thread* self = Thread::Current(); |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 129 | for (const auto& p : objects_) { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 130 | vm->DeleteWeakGlobalRef(self, p.second); |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 131 | } |
| 132 | objects_.clear(); |
| 133 | } |
| 134 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 135 | class AllocRecord { |
| 136 | public: |
| 137 | AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {} |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 138 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 139 | mirror::Class* Type() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 140 | return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 141 | } |
| 142 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 143 | void SetType(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, |
| 144 | Locks::alloc_tracker_lock_) { |
| 145 | type_ = Dbg::type_cache_.Add(t); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | size_t GetDepth() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 149 | size_t depth = 0; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 150 | while (depth < kMaxAllocRecordStackDepth && stack_[depth].Method() != nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 151 | ++depth; |
| 152 | } |
| 153 | return depth; |
| 154 | } |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 155 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 156 | size_t ByteCount() const { |
| 157 | return byte_count_; |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 158 | } |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 159 | |
| 160 | void SetByteCount(size_t count) { |
| 161 | byte_count_ = count; |
| 162 | } |
| 163 | |
| 164 | uint16_t ThinLockId() const { |
| 165 | return thin_lock_id_; |
| 166 | } |
| 167 | |
| 168 | void SetThinLockId(uint16_t id) { |
| 169 | thin_lock_id_ = id; |
| 170 | } |
| 171 | |
| 172 | AllocRecordStackTraceElement* StackElement(size_t index) { |
| 173 | DCHECK_LT(index, kMaxAllocRecordStackDepth); |
| 174 | return &stack_[index]; |
| 175 | } |
| 176 | |
| 177 | private: |
| 178 | jobject type_; // This is a weak global. |
| 179 | size_t byte_count_; |
| 180 | uint16_t thin_lock_id_; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 181 | AllocRecordStackTraceElement stack_[kMaxAllocRecordStackDepth]; // Unused entries have nullptr method. |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 182 | }; |
| 183 | |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 184 | class Breakpoint { |
| 185 | public: |
| 186 | Breakpoint(mirror::ArtMethod* method, uint32_t dex_pc, bool need_full_deoptimization) |
| 187 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
| 188 | : method_(nullptr), dex_pc_(dex_pc), need_full_deoptimization_(need_full_deoptimization) { |
| 189 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 190 | method_ = soa.EncodeMethod(method); |
| 191 | } |
| 192 | |
| 193 | Breakpoint(const Breakpoint& other) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
| 194 | : method_(nullptr), dex_pc_(other.dex_pc_), |
| 195 | need_full_deoptimization_(other.need_full_deoptimization_) { |
| 196 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 197 | method_ = soa.EncodeMethod(other.Method()); |
| 198 | } |
| 199 | |
| 200 | mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 201 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 202 | return soa.DecodeMethod(method_); |
| 203 | } |
| 204 | |
| 205 | uint32_t DexPc() const { |
| 206 | return dex_pc_; |
| 207 | } |
| 208 | |
| 209 | bool NeedFullDeoptimization() const { |
| 210 | return need_full_deoptimization_; |
| 211 | } |
| 212 | |
| 213 | private: |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 214 | // The location of this breakpoint. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 215 | jmethodID method_; |
| 216 | uint32_t dex_pc_; |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 217 | |
| 218 | // Indicates whether breakpoint needs full deoptimization or selective deoptimization. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 219 | bool need_full_deoptimization_; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 220 | }; |
| 221 | |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 222 | static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 223 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 224 | os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.Method()).c_str(), rhs.DexPc()); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 225 | return os; |
| 226 | } |
| 227 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 228 | class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 229 | public: |
| 230 | DebugInstrumentationListener() {} |
| 231 | virtual ~DebugInstrumentationListener() {} |
| 232 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 233 | void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 234 | uint32_t dex_pc ATTRIBUTE_UNUSED) |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 235 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 236 | if (method->IsNative()) { |
| 237 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 238 | return; |
| 239 | } |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 240 | Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 241 | } |
| 242 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 243 | void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, |
| 244 | uint32_t dex_pc, const JValue& return_value) |
| 245 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 246 | if (method->IsNative()) { |
| 247 | // TODO: post location events is a suspension point and native method entry stubs aren't. |
| 248 | return; |
| 249 | } |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 250 | Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 251 | } |
| 252 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 253 | void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, |
| 254 | uint32_t dex_pc) |
| 255 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 256 | // We're not recorded to listen to this kind of event, so complain. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 257 | UNUSED(thread, this_object, method, dex_pc); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 258 | LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method) |
Sebastien Hertz | 51db44a | 2013-11-19 10:00:29 +0100 | [diff] [blame] | 259 | << " " << dex_pc; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 260 | } |
| 261 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 262 | void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, |
| 263 | uint32_t new_dex_pc) |
| 264 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 265 | Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 266 | } |
| 267 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 268 | void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, |
| 269 | uint32_t dex_pc, mirror::ArtField* field) |
| 270 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 271 | UNUSED(thread); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 272 | Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 273 | } |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 274 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 275 | void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object, |
| 276 | mirror::ArtMethod* method, uint32_t dex_pc, mirror::ArtField* field, |
| 277 | const JValue& field_value) |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 278 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 279 | Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value); |
| 280 | } |
| 281 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 282 | void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, const ThrowLocation& throw_location, |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 283 | mirror::ArtMethod* catch_method, uint32_t catch_dex_pc, |
| 284 | mirror::Throwable* exception_object) |
| 285 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 286 | Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object); |
| 287 | } |
| 288 | |
| 289 | private: |
| 290 | DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 291 | } gDebugInstrumentationListener; |
| 292 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 293 | // JDWP is allowed unless the Zygote forbids it. |
| 294 | static bool gJdwpAllowed = true; |
| 295 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 296 | // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line? |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 297 | static bool gJdwpConfigured = false; |
| 298 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 299 | // Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.) |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 300 | static JDWP::JdwpOptions gJdwpOptions; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 301 | |
| 302 | // Runtime JDWP state. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 303 | static JDWP::JdwpState* gJdwpState = nullptr; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 304 | static bool gDebuggerConnected; // debugger or DDMS is connected. |
| 305 | static bool gDebuggerActive; // debugger is making requests. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 306 | static bool gDisposed; // debugger called VirtualMachine.Dispose, so we should drop the connection. |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 307 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 308 | static bool gDdmThreadNotification = false; |
| 309 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 310 | // DDMS GC-related settings. |
| 311 | static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER; |
| 312 | static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 313 | static Dbg::HpsgWhat gDdmHpsgWhat; |
| 314 | static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 315 | static Dbg::HpsgWhat gDdmNhsgWhat; |
| 316 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 317 | ObjectRegistry* Dbg::gRegistry = nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 318 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 319 | // Recent allocation tracking. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 320 | AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord> |
| 321 | size_t Dbg::alloc_record_max_ = 0; |
| 322 | size_t Dbg::alloc_record_head_ = 0; |
| 323 | size_t Dbg::alloc_record_count_ = 0; |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 324 | Dbg::TypeCache Dbg::type_cache_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 325 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 326 | // Deoptimization support. |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 327 | std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_; |
| 328 | size_t Dbg::full_deoptimization_event_count_ = 0; |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 329 | size_t Dbg::delayed_full_undeoptimization_count_ = 0; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 330 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 331 | // Instrumentation event reference counters. |
| 332 | size_t Dbg::dex_pc_change_event_ref_count_ = 0; |
| 333 | size_t Dbg::method_enter_event_ref_count_ = 0; |
| 334 | size_t Dbg::method_exit_event_ref_count_ = 0; |
| 335 | size_t Dbg::field_read_event_ref_count_ = 0; |
| 336 | size_t Dbg::field_write_event_ref_count_ = 0; |
| 337 | size_t Dbg::exception_catch_event_ref_count_ = 0; |
| 338 | uint32_t Dbg::instrumentation_events_ = 0; |
| 339 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 340 | // Breakpoints. |
jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 341 | static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 342 | |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 343 | void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid, |
| 344 | RootType root_type) { |
| 345 | if (receiver != nullptr) { |
| 346 | callback(&receiver, arg, tid, root_type); |
| 347 | } |
| 348 | if (thread != nullptr) { |
| 349 | callback(&thread, arg, tid, root_type); |
| 350 | } |
| 351 | if (klass != nullptr) { |
| 352 | callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type); |
| 353 | } |
| 354 | if (method != nullptr) { |
| 355 | callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type); |
| 356 | } |
| 357 | } |
| 358 | |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 359 | void DebugInvokeReq::Clear() { |
| 360 | invoke_needed = false; |
| 361 | receiver = nullptr; |
| 362 | thread = nullptr; |
| 363 | klass = nullptr; |
| 364 | method = nullptr; |
| 365 | } |
| 366 | |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 367 | void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid, |
| 368 | RootType root_type) { |
| 369 | if (method != nullptr) { |
| 370 | callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type); |
| 371 | } |
| 372 | } |
| 373 | |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 374 | bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const { |
| 375 | return dex_pcs.find(dex_pc) == dex_pcs.end(); |
| 376 | } |
| 377 | |
| 378 | void SingleStepControl::Clear() { |
| 379 | is_active = false; |
| 380 | method = nullptr; |
| 381 | dex_pcs.clear(); |
| 382 | } |
| 383 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 384 | static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc) |
jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 385 | LOCKS_EXCLUDED(Locks::breakpoint_lock_) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 386 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 387 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 388 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 389 | if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 390 | VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; |
| 391 | return true; |
| 392 | } |
| 393 | } |
| 394 | return false; |
| 395 | } |
| 396 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 397 | static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) |
| 398 | LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) { |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 399 | MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_); |
| 400 | // A thread may be suspended for GC; in this code, we really want to know whether |
| 401 | // there's a debugger suspension active. |
| 402 | return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; |
| 403 | } |
| 404 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 405 | static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 406 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 407 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 408 | if (o == nullptr) { |
| 409 | *error = JDWP::ERR_INVALID_OBJECT; |
| 410 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 411 | } |
| 412 | if (!o->IsArrayInstance()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 413 | *error = JDWP::ERR_INVALID_ARRAY; |
| 414 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 415 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 416 | *error = JDWP::ERR_NONE; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 417 | return o->AsArray(); |
| 418 | } |
| 419 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 420 | static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 421 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 422 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 423 | if (o == nullptr) { |
| 424 | *error = JDWP::ERR_INVALID_OBJECT; |
| 425 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 426 | } |
| 427 | if (!o->IsClass()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 428 | *error = JDWP::ERR_INVALID_CLASS; |
| 429 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 430 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 431 | *error = JDWP::ERR_NONE; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 432 | return o->AsClass(); |
| 433 | } |
| 434 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 435 | static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, |
| 436 | JDWP::JdwpError* error) |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 437 | EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 438 | LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) |
| 439 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 440 | mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 441 | if (thread_peer == nullptr) { |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 442 | // This isn't even an object. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 443 | *error = JDWP::ERR_INVALID_OBJECT; |
| 444 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 445 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 446 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 447 | 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] | 448 | if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) { |
| 449 | // This isn't a thread. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 450 | *error = JDWP::ERR_INVALID_THREAD; |
| 451 | return nullptr; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 452 | } |
| 453 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 454 | Thread* thread = Thread::FromManagedThread(soa, thread_peer); |
| 455 | // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a |
| 456 | // zombie. |
| 457 | *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE; |
| 458 | return thread; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 459 | } |
| 460 | |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 461 | static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { |
| 462 | // JDWP deliberately uses the descriptor characters' ASCII values for its enum. |
| 463 | // Note that by "basic" we mean that we don't get more specific than JT_OBJECT. |
| 464 | return static_cast<JDWP::JdwpTag>(descriptor[0]); |
| 465 | } |
| 466 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 467 | static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass) |
| 468 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 469 | std::string temp; |
| 470 | const char* descriptor = klass->GetDescriptor(&temp); |
| 471 | return BasicTagFromDescriptor(descriptor); |
| 472 | } |
| 473 | |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 474 | static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 475 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 476 | CHECK(c != nullptr); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 477 | if (c->IsArrayClass()) { |
| 478 | return JDWP::JT_ARRAY; |
| 479 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 480 | if (c->IsStringClass()) { |
| 481 | return JDWP::JT_STRING; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 482 | } |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 483 | if (c->IsClassClass()) { |
| 484 | return JDWP::JT_CLASS_OBJECT; |
| 485 | } |
| 486 | { |
| 487 | mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread); |
| 488 | if (thread_class->IsAssignableFrom(c)) { |
| 489 | return JDWP::JT_THREAD; |
| 490 | } |
| 491 | } |
| 492 | { |
| 493 | mirror::Class* thread_group_class = |
| 494 | soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup); |
| 495 | if (thread_group_class->IsAssignableFrom(c)) { |
| 496 | return JDWP::JT_THREAD_GROUP; |
| 497 | } |
| 498 | } |
| 499 | { |
| 500 | mirror::Class* class_loader_class = |
| 501 | soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader); |
| 502 | if (class_loader_class->IsAssignableFrom(c)) { |
| 503 | return JDWP::JT_CLASS_LOADER; |
| 504 | } |
| 505 | } |
| 506 | return JDWP::JT_OBJECT; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 507 | } |
| 508 | |
| 509 | /* |
| 510 | * Objects declared to hold Object might actually hold a more specific |
| 511 | * type. The debugger may take a special interest in these (e.g. it |
| 512 | * wants to display the contents of Strings), so we want to return an |
| 513 | * appropriate tag. |
| 514 | * |
| 515 | * Null objects are tagged JT_OBJECT. |
| 516 | */ |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 517 | JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 518 | return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass()); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 519 | } |
| 520 | |
| 521 | static bool IsPrimitiveTag(JDWP::JdwpTag tag) { |
| 522 | switch (tag) { |
| 523 | case JDWP::JT_BOOLEAN: |
| 524 | case JDWP::JT_BYTE: |
| 525 | case JDWP::JT_CHAR: |
| 526 | case JDWP::JT_FLOAT: |
| 527 | case JDWP::JT_DOUBLE: |
| 528 | case JDWP::JT_INT: |
| 529 | case JDWP::JT_LONG: |
| 530 | case JDWP::JT_SHORT: |
| 531 | case JDWP::JT_VOID: |
| 532 | return true; |
| 533 | default: |
| 534 | return false; |
| 535 | } |
| 536 | } |
| 537 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 538 | /* |
| 539 | * Handle one of the JDWP name/value pairs. |
| 540 | * |
| 541 | * JDWP options are: |
| 542 | * help: if specified, show help message and bail |
| 543 | * transport: may be dt_socket or dt_shmem |
| 544 | * address: for dt_socket, "host:port", or just "port" when listening |
| 545 | * server: if "y", wait for debugger to attach; if "n", attach to debugger |
| 546 | * timeout: how long to wait for debugger to connect / listen |
| 547 | * |
| 548 | * Useful with server=n (these aren't supported yet): |
| 549 | * onthrow=<exception-name>: connect to debugger when exception thrown |
| 550 | * onuncaught=y|n: connect to debugger when uncaught exception thrown |
| 551 | * launch=<command-line>: launch the debugger itself |
| 552 | * |
| 553 | * The "transport" option is required, as is "address" if server=n. |
| 554 | */ |
| 555 | static bool ParseJdwpOption(const std::string& name, const std::string& value) { |
| 556 | if (name == "transport") { |
| 557 | if (value == "dt_socket") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 558 | gJdwpOptions.transport = JDWP::kJdwpTransportSocket; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 559 | } else if (value == "dt_android_adb") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 560 | gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 561 | } else { |
| 562 | LOG(ERROR) << "JDWP transport not supported: " << value; |
| 563 | return false; |
| 564 | } |
| 565 | } else if (name == "server") { |
| 566 | if (value == "n") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 567 | gJdwpOptions.server = false; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 568 | } else if (value == "y") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 569 | gJdwpOptions.server = true; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 570 | } else { |
| 571 | LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'"; |
| 572 | return false; |
| 573 | } |
| 574 | } else if (name == "suspend") { |
| 575 | if (value == "n") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 576 | gJdwpOptions.suspend = false; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 577 | } else if (value == "y") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 578 | gJdwpOptions.suspend = true; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 579 | } else { |
| 580 | LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'"; |
| 581 | return false; |
| 582 | } |
| 583 | } else if (name == "address") { |
| 584 | /* this is either <port> or <host>:<port> */ |
| 585 | std::string port_string; |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 586 | gJdwpOptions.host.clear(); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 587 | std::string::size_type colon = value.find(':'); |
| 588 | if (colon != std::string::npos) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 589 | gJdwpOptions.host = value.substr(0, colon); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 590 | port_string = value.substr(colon + 1); |
| 591 | } else { |
| 592 | port_string = value; |
| 593 | } |
| 594 | if (port_string.empty()) { |
| 595 | LOG(ERROR) << "JDWP address missing port: " << value; |
| 596 | return false; |
| 597 | } |
| 598 | char* end; |
Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 599 | uint64_t port = strtoul(port_string.c_str(), &end, 10); |
| 600 | if (*end != '\0' || port > 0xffff) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 601 | LOG(ERROR) << "JDWP address has junk in port field: " << value; |
| 602 | return false; |
| 603 | } |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 604 | gJdwpOptions.port = port; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 605 | } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") { |
| 606 | /* valid but unsupported */ |
| 607 | LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'"; |
| 608 | } else { |
| 609 | LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'"; |
| 610 | } |
| 611 | |
| 612 | return true; |
| 613 | } |
| 614 | |
| 615 | /* |
| 616 | * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.: |
| 617 | * "transport=dt_socket,address=8000,server=y,suspend=n" |
| 618 | */ |
| 619 | bool Dbg::ParseJdwpOptions(const std::string& options) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 620 | VLOG(jdwp) << "ParseJdwpOptions: " << options; |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 621 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 622 | std::vector<std::string> pairs; |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 623 | Split(options, ',', &pairs); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 624 | |
| 625 | for (size_t i = 0; i < pairs.size(); ++i) { |
| 626 | std::string::size_type equals = pairs[i].find('='); |
| 627 | if (equals == std::string::npos) { |
| 628 | LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'"; |
| 629 | return false; |
| 630 | } |
| 631 | ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1)); |
| 632 | } |
| 633 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 634 | if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 635 | LOG(ERROR) << "Must specify JDWP transport: " << options; |
| 636 | } |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 637 | if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 638 | LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options; |
| 639 | return false; |
| 640 | } |
| 641 | |
| 642 | gJdwpConfigured = true; |
| 643 | return true; |
| 644 | } |
| 645 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 646 | void Dbg::StartJdwp() { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 647 | if (!gJdwpAllowed || !IsJdwpConfigured()) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 648 | // No JDWP for you! |
| 649 | return; |
| 650 | } |
| 651 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 652 | CHECK(gRegistry == nullptr); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 653 | gRegistry = new ObjectRegistry; |
| 654 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 655 | // Init JDWP if the debugger is enabled. This may connect out to a |
| 656 | // debugger, passively listen for a debugger, or block waiting for a |
| 657 | // debugger. |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 658 | gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 659 | if (gJdwpState == nullptr) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 660 | // We probably failed because some other process has the port already, which means that |
| 661 | // if we don't abort the user is likely to think they're talking to us when they're actually |
| 662 | // talking to that other process. |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 663 | LOG(FATAL) << "Debugger thread failed to initialize"; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | // If a debugger has already attached, send the "welcome" message. |
| 667 | // This may cause us to suspend all threads. |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 668 | if (gJdwpState->IsActive()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 669 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 670 | if (!gJdwpState->PostVMStart()) { |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 671 | LOG(WARNING) << "Failed to post 'start' message to debugger"; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 672 | } |
| 673 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 674 | } |
| 675 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 676 | void Dbg::StopJdwp() { |
Sebastien Hertz | c6345ef | 2014-08-18 19:26:39 +0200 | [diff] [blame] | 677 | // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the |
| 678 | // destruction of gJdwpState). |
| 679 | if (gJdwpState != nullptr && gJdwpState->IsActive()) { |
| 680 | gJdwpState->PostVMDeath(); |
| 681 | } |
Sebastien Hertz | 0376e6b | 2014-02-06 18:12:59 +0100 | [diff] [blame] | 682 | // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection. |
| 683 | Disposed(); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 684 | delete gJdwpState; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 685 | gJdwpState = nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 686 | delete gRegistry; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 687 | gRegistry = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 688 | } |
| 689 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 690 | void Dbg::GcDidFinish() { |
| 691 | if (gDdmHpifWhen != HPIF_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 692 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 693 | VLOG(jdwp) << "Sending heap info to DDM"; |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 694 | DdmSendHeapInfo(gDdmHpifWhen); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 695 | } |
| 696 | if (gDdmHpsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 697 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 698 | VLOG(jdwp) << "Dumping heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 699 | DdmSendHeapSegments(false); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 700 | } |
| 701 | if (gDdmNhsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 702 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 703 | VLOG(jdwp) << "Dumping native heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 704 | DdmSendHeapSegments(true); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 705 | } |
| 706 | } |
| 707 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 708 | void Dbg::SetJdwpAllowed(bool allowed) { |
| 709 | gJdwpAllowed = allowed; |
| 710 | } |
| 711 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 712 | DebugInvokeReq* Dbg::GetInvokeReq() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 713 | return Thread::Current()->GetInvokeReq(); |
| 714 | } |
| 715 | |
| 716 | Thread* Dbg::GetDebugThread() { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 717 | return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | void Dbg::ClearWaitForEventThread() { |
| 721 | gJdwpState->ClearWaitForEventThread(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | void Dbg::Connected() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 725 | CHECK(!gDebuggerConnected); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 726 | VLOG(jdwp) << "JDWP has attached"; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 727 | gDebuggerConnected = true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 728 | gDisposed = false; |
| 729 | } |
| 730 | |
| 731 | void Dbg::Disposed() { |
| 732 | gDisposed = true; |
| 733 | } |
| 734 | |
| 735 | bool Dbg::IsDisposed() { |
| 736 | return gDisposed; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 737 | } |
| 738 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 739 | void Dbg::GoActive() { |
| 740 | // Enable all debugging features, including scans for breakpoints. |
| 741 | // This is a no-op if we're already active. |
| 742 | // Only called from the JDWP handler thread. |
| 743 | if (gDebuggerActive) { |
| 744 | return; |
| 745 | } |
| 746 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 747 | { |
| 748 | // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected? |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 749 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 750 | CHECK_EQ(gBreakpoints.size(), 0U); |
| 751 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 752 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 753 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 754 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 755 | CHECK_EQ(deoptimization_requests_.size(), 0U); |
| 756 | CHECK_EQ(full_deoptimization_event_count_, 0U); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 757 | CHECK_EQ(delayed_full_undeoptimization_count_, 0U); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 758 | CHECK_EQ(dex_pc_change_event_ref_count_, 0U); |
| 759 | CHECK_EQ(method_enter_event_ref_count_, 0U); |
| 760 | CHECK_EQ(method_exit_event_ref_count_, 0U); |
| 761 | CHECK_EQ(field_read_event_ref_count_, 0U); |
| 762 | CHECK_EQ(field_write_event_ref_count_, 0U); |
| 763 | CHECK_EQ(exception_catch_event_ref_count_, 0U); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 764 | } |
| 765 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 766 | Runtime* runtime = Runtime::Current(); |
| 767 | runtime->GetThreadList()->SuspendAll(); |
| 768 | Thread* self = Thread::Current(); |
| 769 | ThreadState old_state = self->SetStateUnsafe(kRunnable); |
| 770 | CHECK_NE(old_state, kRunnable); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 771 | runtime->GetInstrumentation()->EnableDeoptimization(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 772 | instrumentation_events_ = 0; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 773 | gDebuggerActive = true; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 774 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| 775 | runtime->GetThreadList()->ResumeAll(); |
| 776 | |
| 777 | LOG(INFO) << "Debugger is active"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | void Dbg::Disconnected() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 781 | CHECK(gDebuggerConnected); |
| 782 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 783 | LOG(INFO) << "Debugger is no longer active"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 784 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 785 | // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread |
| 786 | // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener |
| 787 | // and clear the object registry. |
| 788 | Runtime* runtime = Runtime::Current(); |
| 789 | runtime->GetThreadList()->SuspendAll(); |
| 790 | Thread* self = Thread::Current(); |
| 791 | ThreadState old_state = self->SetStateUnsafe(kRunnable); |
Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 792 | |
| 793 | // Debugger may not be active at this point. |
| 794 | if (gDebuggerActive) { |
| 795 | { |
| 796 | // Since we're going to disable deoptimization, we clear the deoptimization requests queue. |
| 797 | // This prevents us from having any pending deoptimization request when the debugger attaches |
| 798 | // to us again while no event has been requested yet. |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 799 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 800 | deoptimization_requests_.clear(); |
| 801 | full_deoptimization_event_count_ = 0U; |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 802 | delayed_full_undeoptimization_count_ = 0U; |
Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 803 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 804 | if (instrumentation_events_ != 0) { |
| 805 | runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener, |
| 806 | instrumentation_events_); |
| 807 | instrumentation_events_ = 0; |
| 808 | } |
Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 809 | runtime->GetInstrumentation()->DisableDeoptimization(); |
| 810 | gDebuggerActive = false; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 811 | } |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 812 | gRegistry->Clear(); |
| 813 | gDebuggerConnected = false; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 814 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| 815 | runtime->GetThreadList()->ResumeAll(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 816 | } |
| 817 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 818 | bool Dbg::IsDebuggerActive() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 819 | return gDebuggerActive; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 820 | } |
| 821 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 822 | bool Dbg::IsJdwpConfigured() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 823 | return gJdwpConfigured; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 824 | } |
| 825 | |
| 826 | int64_t Dbg::LastDebuggerActivity() { |
Elliott Hughes | ca95152 | 2011-12-05 12:01:32 -0800 | [diff] [blame] | 827 | return gJdwpState->LastDebuggerActivity(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 828 | } |
| 829 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 830 | void Dbg::UndoDebuggerSuspensions() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 831 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 832 | } |
| 833 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 834 | std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 835 | JDWP::JdwpError error; |
| 836 | mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error); |
| 837 | if (o == nullptr) { |
| 838 | if (error == JDWP::ERR_NONE) { |
| 839 | return "NULL"; |
| 840 | } else { |
| 841 | return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); |
| 842 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 843 | } |
| 844 | if (!o->IsClass()) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 845 | 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] | 846 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 847 | return GetClassName(o->AsClass()); |
| 848 | } |
| 849 | |
| 850 | std::string Dbg::GetClassName(mirror::Class* klass) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 851 | if (klass == nullptr) { |
| 852 | return "NULL"; |
| 853 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 854 | std::string temp; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 855 | return DescriptorToName(klass->GetDescriptor(&temp)); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 856 | } |
| 857 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 858 | JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 859 | JDWP::JdwpError status; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 860 | mirror::Class* c = DecodeClass(id, &status); |
| 861 | if (c == nullptr) { |
| 862 | *class_object_id = 0; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 863 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 864 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 865 | *class_object_id = gRegistry->Add(c); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 866 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 867 | } |
| 868 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 869 | JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 870 | JDWP::JdwpError status; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 871 | mirror::Class* c = DecodeClass(id, &status); |
| 872 | if (c == nullptr) { |
| 873 | *superclass_id = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 874 | return status; |
| 875 | } |
| 876 | if (c->IsInterface()) { |
| 877 | // http://code.google.com/p/android/issues/detail?id=20856 |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 878 | *superclass_id = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 879 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 880 | *superclass_id = gRegistry->Add(c->GetSuperClass()); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 881 | } |
| 882 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 883 | } |
| 884 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 885 | JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 886 | JDWP::JdwpError error; |
| 887 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 888 | if (o == nullptr) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 889 | return JDWP::ERR_INVALID_OBJECT; |
| 890 | } |
| 891 | expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader())); |
| 892 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 893 | } |
| 894 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 895 | JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 896 | JDWP::JdwpError error; |
| 897 | mirror::Class* c = DecodeClass(id, &error); |
| 898 | if (c == nullptr) { |
| 899 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 900 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 901 | |
| 902 | uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask; |
| 903 | |
Yevgeny Rouban | de34eea | 2014-02-15 01:06:03 +0700 | [diff] [blame] | 904 | // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set, |
| 905 | // not interfaces. |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 906 | // 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] | 907 | if ((access_flags & kAccInterface) == 0) { |
| 908 | access_flags |= kAccSuper; |
| 909 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 910 | |
| 911 | expandBufAdd4BE(pReply, access_flags); |
| 912 | |
| 913 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 914 | } |
| 915 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 916 | JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { |
| 917 | JDWP::JdwpError error; |
| 918 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 919 | if (o == nullptr) { |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 920 | return JDWP::ERR_INVALID_OBJECT; |
| 921 | } |
| 922 | |
| 923 | // Ensure all threads are suspended while we read objects' lock words. |
| 924 | Thread* self = Thread::Current(); |
Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 925 | CHECK_EQ(self->GetState(), kRunnable); |
| 926 | self->TransitionFromRunnableToSuspended(kSuspended); |
| 927 | Runtime::Current()->GetThreadList()->SuspendAll(); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 928 | |
| 929 | MonitorInfo monitor_info(o); |
| 930 | |
Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 931 | Runtime::Current()->GetThreadList()->ResumeAll(); |
| 932 | self->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 933 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 934 | if (monitor_info.owner_ != nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 935 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer())); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 936 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 937 | expandBufAddObjectId(reply, gRegistry->Add(nullptr)); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 938 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 939 | expandBufAdd4BE(reply, monitor_info.entry_count_); |
| 940 | expandBufAdd4BE(reply, monitor_info.waiters_.size()); |
| 941 | for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) { |
| 942 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer())); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 943 | } |
| 944 | return JDWP::ERR_NONE; |
| 945 | } |
| 946 | |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 947 | JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 948 | std::vector<JDWP::ObjectId>* monitors, |
| 949 | std::vector<uint32_t>* stack_depths) { |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 950 | struct OwnedMonitorVisitor : public StackVisitor { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 951 | OwnedMonitorVisitor(Thread* thread, Context* context, |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 952 | std::vector<JDWP::ObjectId>* monitor_vector, |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 953 | std::vector<uint32_t>* stack_depth_vector) |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 954 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 955 | : StackVisitor(thread, context), current_stack_depth(0), |
| 956 | monitors(monitor_vector), stack_depths(stack_depth_vector) {} |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 957 | |
| 958 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 959 | // annotalysis. |
| 960 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 961 | if (!GetMethod()->IsRuntimeMethod()) { |
| 962 | Monitor::VisitLocks(this, AppendOwnedMonitors, this); |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 963 | ++current_stack_depth; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 964 | } |
| 965 | return true; |
| 966 | } |
| 967 | |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 968 | static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) |
| 969 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 970 | OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 971 | visitor->monitors->push_back(gRegistry->Add(owned_monitor)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 972 | visitor->stack_depths->push_back(visitor->current_stack_depth); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 973 | } |
| 974 | |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 975 | size_t current_stack_depth; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 976 | std::vector<JDWP::ObjectId>* const monitors; |
| 977 | std::vector<uint32_t>* const stack_depths; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 978 | }; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 979 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 980 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 981 | Thread* thread; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 982 | { |
| 983 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 984 | JDWP::JdwpError error; |
| 985 | thread = DecodeThread(soa, thread_id, &error); |
| 986 | if (thread == nullptr) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 987 | return error; |
| 988 | } |
| 989 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 990 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 991 | } |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 992 | } |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 993 | std::unique_ptr<Context> context(Context::Create()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 994 | OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 995 | visitor.WalkStack(); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 996 | return JDWP::ERR_NONE; |
| 997 | } |
| 998 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 999 | JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1000 | JDWP::ObjectId* contended_monitor) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1001 | mirror::Object* contended_monitor_obj; |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 1002 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1003 | *contended_monitor = 0; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1004 | { |
| 1005 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1006 | JDWP::JdwpError error; |
| 1007 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 1008 | if (thread == nullptr) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1009 | return error; |
| 1010 | } |
| 1011 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 1012 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 1013 | } |
| 1014 | contended_monitor_obj = Monitor::GetContendedMonitor(thread); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 1015 | } |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1016 | // Add() requires the thread_list_lock_ not held to avoid the lock |
| 1017 | // level violation. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1018 | *contended_monitor = gRegistry->Add(contended_monitor_obj); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 1019 | return JDWP::ERR_NONE; |
| 1020 | } |
| 1021 | |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1022 | JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1023 | std::vector<uint64_t>* counts) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1024 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1025 | heap->CollectGarbage(false); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1026 | std::vector<mirror::Class*> classes; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1027 | counts->clear(); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1028 | for (size_t i = 0; i < class_ids.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1029 | JDWP::JdwpError error; |
| 1030 | mirror::Class* c = DecodeClass(class_ids[i], &error); |
| 1031 | if (c == nullptr) { |
| 1032 | return error; |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1033 | } |
| 1034 | classes.push_back(c); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1035 | counts->push_back(0); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1036 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1037 | heap->CountInstances(classes, false, &(*counts)[0]); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1038 | return JDWP::ERR_NONE; |
| 1039 | } |
| 1040 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1041 | JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, |
| 1042 | std::vector<JDWP::ObjectId>* instances) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1043 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1044 | // We only want reachable instances, so do a GC. |
| 1045 | heap->CollectGarbage(false); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1046 | JDWP::JdwpError error; |
| 1047 | mirror::Class* c = DecodeClass(class_id, &error); |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1048 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1049 | return error; |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 1050 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1051 | std::vector<mirror::Object*> raw_instances; |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 1052 | Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances); |
| 1053 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1054 | instances->push_back(gRegistry->Add(raw_instances[i])); |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 1055 | } |
| 1056 | return JDWP::ERR_NONE; |
| 1057 | } |
| 1058 | |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1059 | JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1060 | std::vector<JDWP::ObjectId>* referring_objects) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1061 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1062 | heap->CollectGarbage(false); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1063 | JDWP::JdwpError error; |
| 1064 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1065 | if (o == nullptr) { |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1066 | return JDWP::ERR_INVALID_OBJECT; |
| 1067 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1068 | std::vector<mirror::Object*> raw_instances; |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1069 | heap->GetReferringObjects(o, max_count, raw_instances); |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1070 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1071 | referring_objects->push_back(gRegistry->Add(raw_instances[i])); |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1072 | } |
| 1073 | return JDWP::ERR_NONE; |
| 1074 | } |
| 1075 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1076 | JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { |
| 1077 | JDWP::JdwpError error; |
| 1078 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1079 | if (o == nullptr) { |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1080 | return JDWP::ERR_INVALID_OBJECT; |
| 1081 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1082 | gRegistry->DisableCollection(object_id); |
| 1083 | return JDWP::ERR_NONE; |
| 1084 | } |
| 1085 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1086 | JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { |
| 1087 | JDWP::JdwpError error; |
| 1088 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1089 | // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI |
| 1090 | // also ignores these cases and never return an error. However it's not obvious why this command |
| 1091 | // should behave differently from DisableCollection and IsCollected commands. So let's be more |
| 1092 | // strict and return an error if this happens. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1093 | if (o == nullptr) { |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1094 | return JDWP::ERR_INVALID_OBJECT; |
| 1095 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1096 | gRegistry->EnableCollection(object_id); |
| 1097 | return JDWP::ERR_NONE; |
| 1098 | } |
| 1099 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1100 | JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) { |
| 1101 | *is_collected = true; |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1102 | if (object_id == 0) { |
| 1103 | // Null object id is invalid. |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1104 | return JDWP::ERR_INVALID_OBJECT; |
| 1105 | } |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1106 | // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However |
| 1107 | // the RI seems to ignore this and assume object has been collected. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1108 | JDWP::JdwpError error; |
| 1109 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1110 | if (o != nullptr) { |
| 1111 | *is_collected = gRegistry->IsCollected(object_id); |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1112 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1113 | return JDWP::ERR_NONE; |
| 1114 | } |
| 1115 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1116 | void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) { |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1117 | gRegistry->DisposeObject(object_id, reference_count); |
| 1118 | } |
| 1119 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1120 | JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) { |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1121 | DCHECK(klass != nullptr); |
| 1122 | if (klass->IsArrayClass()) { |
| 1123 | return JDWP::TT_ARRAY; |
| 1124 | } else if (klass->IsInterface()) { |
| 1125 | return JDWP::TT_INTERFACE; |
| 1126 | } else { |
| 1127 | return JDWP::TT_CLASS; |
| 1128 | } |
| 1129 | } |
| 1130 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1131 | JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1132 | JDWP::JdwpError error; |
| 1133 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1134 | if (c == nullptr) { |
| 1135 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1136 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1137 | |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1138 | JDWP::JdwpTypeTag type_tag = GetTypeTag(c); |
| 1139 | expandBufAdd1(pReply, type_tag); |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1140 | expandBufAddRefTypeId(pReply, class_id); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1141 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1142 | } |
| 1143 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1144 | void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1145 | // Get the complete list of reference classes (i.e. all classes except |
| 1146 | // the primitive types). |
| 1147 | // Returns a newly-allocated buffer full of RefTypeId values. |
| 1148 | struct ClassListCreator { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 1149 | explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes_in) : classes(classes_in) { |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1150 | } |
| 1151 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1152 | static bool Visit(mirror::Class* c, void* arg) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1153 | return reinterpret_cast<ClassListCreator*>(arg)->Visit(c); |
| 1154 | } |
| 1155 | |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1156 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 1157 | // annotalysis. |
| 1158 | bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1159 | if (!c->IsPrimitive()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1160 | classes->push_back(gRegistry->AddRefType(c)); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1161 | } |
| 1162 | return true; |
| 1163 | } |
| 1164 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1165 | std::vector<JDWP::RefTypeId>* const classes; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1166 | }; |
| 1167 | |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1168 | ClassListCreator clc(classes); |
Sebastien Hertz | 4537c41 | 2014-08-28 14:41:50 +0200 | [diff] [blame] | 1169 | Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit, |
| 1170 | &clc); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1171 | } |
| 1172 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1173 | JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, |
| 1174 | uint32_t* pStatus, std::string* pDescriptor) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1175 | JDWP::JdwpError error; |
| 1176 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1177 | if (c == nullptr) { |
| 1178 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1179 | } |
| 1180 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1181 | if (c->IsArrayClass()) { |
| 1182 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 1183 | *pTypeTag = JDWP::TT_ARRAY; |
| 1184 | } else { |
| 1185 | if (c->IsErroneous()) { |
| 1186 | *pStatus = JDWP::CS_ERROR; |
| 1187 | } else { |
| 1188 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED; |
| 1189 | } |
| 1190 | *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 1191 | } |
| 1192 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1193 | if (pDescriptor != nullptr) { |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1194 | std::string temp; |
| 1195 | *pDescriptor = c->GetDescriptor(&temp); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1196 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1197 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1200 | void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1201 | std::vector<mirror::Class*> classes; |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1202 | Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1203 | ids->clear(); |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1204 | for (size_t i = 0; i < classes.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1205 | ids->push_back(gRegistry->Add(classes[i])); |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1206 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1207 | } |
| 1208 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1209 | JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { |
| 1210 | JDWP::JdwpError error; |
| 1211 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1212 | if (o == nullptr) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1213 | return JDWP::ERR_INVALID_OBJECT; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1214 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1215 | |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1216 | JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass()); |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1217 | JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1218 | |
| 1219 | expandBufAdd1(pReply, type_tag); |
| 1220 | expandBufAddRefTypeId(pReply, type_id); |
| 1221 | |
| 1222 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1223 | } |
| 1224 | |
Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 1225 | JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1226 | JDWP::JdwpError error; |
| 1227 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1228 | if (c == nullptr) { |
| 1229 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1230 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1231 | std::string temp; |
| 1232 | *signature = c->GetDescriptor(&temp); |
Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 1233 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1234 | } |
| 1235 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1236 | JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) { |
| 1237 | JDWP::JdwpError error; |
| 1238 | mirror::Class* c = DecodeClass(class_id, &error); |
Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1239 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1240 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1241 | } |
Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1242 | const char* source_file = c->GetSourceFile(); |
| 1243 | if (source_file == nullptr) { |
Sebastien Hertz | b7054ba | 2014-03-13 11:52:31 +0100 | [diff] [blame] | 1244 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1245 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1246 | *result = source_file; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1247 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1248 | } |
| 1249 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1250 | JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1251 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1252 | JDWP::JdwpError error; |
| 1253 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1254 | if (error != JDWP::ERR_NONE) { |
| 1255 | *tag = JDWP::JT_VOID; |
| 1256 | return error; |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1257 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1258 | *tag = TagFromObject(soa, o); |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1259 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1260 | } |
| 1261 | |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1262 | size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1263 | switch (tag) { |
| 1264 | case JDWP::JT_VOID: |
| 1265 | return 0; |
| 1266 | case JDWP::JT_BYTE: |
| 1267 | case JDWP::JT_BOOLEAN: |
| 1268 | return 1; |
| 1269 | case JDWP::JT_CHAR: |
| 1270 | case JDWP::JT_SHORT: |
| 1271 | return 2; |
| 1272 | case JDWP::JT_FLOAT: |
| 1273 | case JDWP::JT_INT: |
| 1274 | return 4; |
| 1275 | case JDWP::JT_ARRAY: |
| 1276 | case JDWP::JT_OBJECT: |
| 1277 | case JDWP::JT_STRING: |
| 1278 | case JDWP::JT_THREAD: |
| 1279 | case JDWP::JT_THREAD_GROUP: |
| 1280 | case JDWP::JT_CLASS_LOADER: |
| 1281 | case JDWP::JT_CLASS_OBJECT: |
| 1282 | return sizeof(JDWP::ObjectId); |
| 1283 | case JDWP::JT_DOUBLE: |
| 1284 | case JDWP::JT_LONG: |
| 1285 | return 8; |
| 1286 | default: |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1287 | LOG(FATAL) << "Unknown tag " << tag; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1288 | return -1; |
| 1289 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1290 | } |
| 1291 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1292 | JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { |
| 1293 | JDWP::JdwpError error; |
| 1294 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
| 1295 | if (a == nullptr) { |
| 1296 | return error; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1297 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1298 | *length = a->GetLength(); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1299 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1300 | } |
| 1301 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1302 | 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] | 1303 | JDWP::JdwpError error; |
| 1304 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1305 | if (a == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1306 | return error; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1307 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1308 | |
| 1309 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 1310 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1311 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1312 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1313 | JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType()); |
| 1314 | expandBufAdd1(pReply, element_tag); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1315 | expandBufAdd4BE(pReply, count); |
| 1316 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1317 | if (IsPrimitiveTag(element_tag)) { |
| 1318 | size_t width = GetTagWidth(element_tag); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1319 | uint8_t* dst = expandBufAddSpace(pReply, count * width); |
| 1320 | if (width == 8) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1321 | 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] | 1322 | for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]); |
| 1323 | } else if (width == 4) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1324 | 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] | 1325 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]); |
| 1326 | } else if (width == 2) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1327 | 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] | 1328 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]); |
| 1329 | } else { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1330 | 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] | 1331 | memcpy(dst, &src[offset * width], count * width); |
| 1332 | } |
| 1333 | } else { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1334 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1335 | mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>(); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1336 | for (int i = 0; i < count; ++i) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1337 | mirror::Object* element = oa->Get(offset + i); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1338 | JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element) |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1339 | : element_tag; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1340 | expandBufAdd1(pReply, specific_tag); |
| 1341 | expandBufAddObjectId(pReply, gRegistry->Add(element)); |
| 1342 | } |
| 1343 | } |
| 1344 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1345 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1346 | } |
| 1347 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1348 | template <typename T> |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1349 | 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] | 1350 | NO_THREAD_SAFETY_ANALYSIS { |
| 1351 | // TODO: fix when annotalysis correctly handles non-member functions. |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1352 | DCHECK(a->GetClass()->IsPrimitiveArray()); |
| 1353 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1354 | T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1355 | for (int i = 0; i < count; ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1356 | *dst++ = src->ReadValue(sizeof(T)); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1357 | } |
| 1358 | } |
| 1359 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1360 | JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1361 | JDWP::Request* request) { |
| 1362 | JDWP::JdwpError error; |
| 1363 | mirror::Array* dst = DecodeNonNullArray(array_id, &error); |
| 1364 | if (dst == nullptr) { |
| 1365 | return error; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1366 | } |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1367 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1368 | if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) { |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1369 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1370 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1371 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1372 | JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType()); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1373 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1374 | if (IsPrimitiveTag(element_tag)) { |
| 1375 | size_t width = GetTagWidth(element_tag); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1376 | if (width == 8) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1377 | CopyArrayData<uint64_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1378 | } else if (width == 4) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1379 | CopyArrayData<uint32_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1380 | } else if (width == 2) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1381 | CopyArrayData<uint16_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1382 | } else { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1383 | CopyArrayData<uint8_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1384 | } |
| 1385 | } else { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1386 | mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>(); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1387 | for (int i = 0; i < count; ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1388 | JDWP::ObjectId id = request->ReadObjectId(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1389 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 1390 | if (error != JDWP::ERR_NONE) { |
| 1391 | return error; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1392 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1393 | oa->Set<false>(offset + i, o); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1394 | } |
| 1395 | } |
| 1396 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1397 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1398 | } |
| 1399 | |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1400 | JDWP::ObjectId Dbg::CreateString(const std::string& str) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1401 | return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str())); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1402 | } |
| 1403 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1404 | JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) { |
| 1405 | JDWP::JdwpError error; |
| 1406 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1407 | if (c == nullptr) { |
| 1408 | *new_object = 0; |
| 1409 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1410 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1411 | *new_object = gRegistry->Add(c->AllocObject(Thread::Current())); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1412 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1413 | } |
| 1414 | |
Elliott Hughes | bf13d36 | 2011-12-08 15:51:37 -0800 | [diff] [blame] | 1415 | /* |
| 1416 | * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]". |
| 1417 | */ |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1418 | JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1419 | JDWP::ObjectId* new_array) { |
| 1420 | JDWP::JdwpError error; |
| 1421 | mirror::Class* c = DecodeClass(array_class_id, &error); |
| 1422 | if (c == nullptr) { |
| 1423 | *new_array = 0; |
| 1424 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1425 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1426 | *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length, |
Hiroshi Yamauchi | f0edfc3 | 2014-09-25 11:46:46 -0700 | [diff] [blame] | 1427 | c->GetComponentSizeShift(), |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1428 | Runtime::Current()->GetHeap()->GetCurrentAllocator())); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1429 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1430 | } |
| 1431 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1432 | JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1433 | CHECK(!kMovingFields); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1434 | return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1435 | } |
| 1436 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1437 | static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1438 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1439 | CHECK(!kMovingMethods); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1440 | return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1441 | } |
| 1442 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1443 | static mirror::ArtField* FromFieldId(JDWP::FieldId fid) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1444 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1445 | CHECK(!kMovingFields); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1446 | return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid)); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1447 | } |
| 1448 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1449 | static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1450 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1451 | CHECK(!kMovingMethods); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1452 | return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1453 | } |
| 1454 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1455 | bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) { |
| 1456 | CHECK(event_thread != nullptr); |
| 1457 | JDWP::JdwpError error; |
| 1458 | mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id, |
| 1459 | &error); |
| 1460 | return expected_thread_peer == event_thread->GetPeer(); |
| 1461 | } |
| 1462 | |
| 1463 | bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location, |
| 1464 | const JDWP::EventLocation& event_location) { |
| 1465 | if (expected_location.dex_pc != event_location.dex_pc) { |
| 1466 | return false; |
| 1467 | } |
| 1468 | mirror::ArtMethod* m = FromMethodId(expected_location.method_id); |
| 1469 | return m == event_location.method; |
| 1470 | } |
| 1471 | |
| 1472 | bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1473 | if (event_class == nullptr) { |
| 1474 | return false; |
| 1475 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1476 | JDWP::JdwpError error; |
| 1477 | mirror::Class* expected_class = DecodeClass(class_id, &error); |
| 1478 | CHECK(expected_class != nullptr); |
| 1479 | return expected_class->IsAssignableFrom(event_class); |
| 1480 | } |
| 1481 | |
| 1482 | bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id, |
| 1483 | mirror::ArtField* event_field) { |
| 1484 | mirror::ArtField* expected_field = FromFieldId(expected_field_id); |
| 1485 | if (expected_field != event_field) { |
| 1486 | return false; |
| 1487 | } |
| 1488 | return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id); |
| 1489 | } |
| 1490 | |
| 1491 | bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) { |
| 1492 | JDWP::JdwpError error; |
| 1493 | mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error); |
| 1494 | return modifier_instance == event_instance; |
| 1495 | } |
| 1496 | |
| 1497 | void Dbg::SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1498 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1499 | if (m == nullptr) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1500 | memset(location, 0, sizeof(*location)); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1501 | } else { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1502 | mirror::Class* c = m->GetDeclaringClass(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1503 | location->type_tag = GetTypeTag(c); |
| 1504 | location->class_id = gRegistry->AddRefType(c); |
| 1505 | location->method_id = ToMethodId(m); |
| 1506 | 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] | 1507 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1508 | } |
| 1509 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1510 | std::string Dbg::GetMethodName(JDWP::MethodId method_id) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1511 | mirror::ArtMethod* m = FromMethodId(method_id); |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1512 | if (m == nullptr) { |
| 1513 | return "NULL"; |
| 1514 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1515 | return m->GetName(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1516 | } |
| 1517 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1518 | std::string Dbg::GetFieldName(JDWP::FieldId field_id) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1519 | mirror::ArtField* f = FromFieldId(field_id); |
| 1520 | if (f == nullptr) { |
| 1521 | return "NULL"; |
| 1522 | } |
| 1523 | return f->GetName(); |
Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 1524 | } |
| 1525 | |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1526 | /* |
| 1527 | * Augment the access flags for synthetic methods and fields by setting |
| 1528 | * the (as described by the spec) "0xf0000000 bit". Also, strip out any |
| 1529 | * flags not specified by the Java programming language. |
| 1530 | */ |
| 1531 | static uint32_t MangleAccessFlags(uint32_t accessFlags) { |
| 1532 | accessFlags &= kAccJavaFlagsMask; |
| 1533 | if ((accessFlags & kAccSynthetic) != 0) { |
| 1534 | accessFlags |= 0xf0000000; |
| 1535 | } |
| 1536 | return accessFlags; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1537 | } |
| 1538 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1539 | /* |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1540 | * Circularly shifts registers so that arguments come first. Debuggers |
| 1541 | * expect slots to begin with arguments, but dex code places them at |
| 1542 | * the end. |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1543 | */ |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1544 | static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m) |
| 1545 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1546 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1547 | if (code_item == nullptr) { |
| 1548 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1549 | // return the slot as is since all registers are arguments. |
| 1550 | LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m); |
| 1551 | return slot; |
| 1552 | } |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1553 | uint16_t ins_size = code_item->ins_size_; |
| 1554 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1555 | if (slot >= locals_size) { |
| 1556 | return slot - locals_size; |
| 1557 | } else { |
| 1558 | return slot + ins_size; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1559 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1560 | } |
| 1561 | |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1562 | /* |
| 1563 | * Circularly shifts registers so that arguments come last. Reverts |
| 1564 | * slots to dex style argument placement. |
| 1565 | */ |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1566 | static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1567 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1568 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1569 | if (code_item == nullptr) { |
| 1570 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1571 | // return the slot as is since all registers are arguments. |
| 1572 | LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m); |
| 1573 | return slot; |
| 1574 | } |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1575 | uint16_t ins_size = code_item->ins_size_; |
| 1576 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1577 | if (slot < ins_size) { |
| 1578 | return slot + locals_size; |
| 1579 | } else { |
| 1580 | return slot - ins_size; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1581 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1582 | } |
| 1583 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1584 | JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId class_id, bool with_generic, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1585 | JDWP::JdwpError error; |
| 1586 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1587 | if (c == nullptr) { |
| 1588 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1589 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1590 | |
| 1591 | size_t instance_field_count = c->NumInstanceFields(); |
| 1592 | size_t static_field_count = c->NumStaticFields(); |
| 1593 | |
| 1594 | expandBufAdd4BE(pReply, instance_field_count + static_field_count); |
| 1595 | |
| 1596 | for (size_t i = 0; i < instance_field_count + static_field_count; ++i) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1597 | mirror::ArtField* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1598 | expandBufAddFieldId(pReply, ToFieldId(f)); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1599 | expandBufAddUtf8String(pReply, f->GetName()); |
| 1600 | expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1601 | if (with_generic) { |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1602 | static const char genericSignature[1] = ""; |
| 1603 | expandBufAddUtf8String(pReply, genericSignature); |
| 1604 | } |
| 1605 | expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); |
| 1606 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1607 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1608 | } |
| 1609 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1610 | JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1611 | JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1612 | JDWP::JdwpError error; |
| 1613 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1614 | if (c == nullptr) { |
| 1615 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1616 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1617 | |
| 1618 | size_t direct_method_count = c->NumDirectMethods(); |
| 1619 | size_t virtual_method_count = c->NumVirtualMethods(); |
| 1620 | |
| 1621 | expandBufAdd4BE(pReply, direct_method_count + virtual_method_count); |
| 1622 | |
| 1623 | for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1624 | mirror::ArtMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1625 | expandBufAddMethodId(pReply, ToMethodId(m)); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1626 | expandBufAddUtf8String(pReply, m->GetName()); |
| 1627 | expandBufAddUtf8String(pReply, m->GetSignature().ToString()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1628 | if (with_generic) { |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1629 | static const char genericSignature[1] = ""; |
| 1630 | expandBufAddUtf8String(pReply, genericSignature); |
| 1631 | } |
| 1632 | expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags())); |
| 1633 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1634 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1635 | } |
| 1636 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1637 | JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1638 | JDWP::JdwpError error; |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1639 | Thread* self = Thread::Current(); |
| 1640 | StackHandleScope<1> hs(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1641 | Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error))); |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1642 | if (c.Get() == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1643 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1644 | } |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1645 | size_t interface_count = c->NumDirectInterfaces(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1646 | expandBufAdd4BE(pReply, interface_count); |
| 1647 | for (size_t i = 0; i < interface_count; ++i) { |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1648 | expandBufAddRefTypeId(pReply, |
| 1649 | gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i))); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1650 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1651 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1652 | } |
| 1653 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1654 | void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1655 | struct DebugCallbackContext { |
| 1656 | int numItems; |
| 1657 | JDWP::ExpandBuf* pReply; |
| 1658 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1659 | static bool Callback(void* context, uint32_t address, uint32_t line_number) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1660 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1661 | expandBufAdd8BE(pContext->pReply, address); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1662 | expandBufAdd4BE(pContext->pReply, line_number); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1663 | pContext->numItems++; |
Sebastien Hertz | f2910ee | 2013-10-19 16:39:24 +0200 | [diff] [blame] | 1664 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1665 | } |
| 1666 | }; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1667 | mirror::ArtMethod* m = FromMethodId(method_id); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1668 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1669 | uint64_t start, end; |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1670 | if (code_item == nullptr) { |
| 1671 | DCHECK(m->IsNative() || m->IsProxyMethod()); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1672 | start = -1; |
| 1673 | end = -1; |
| 1674 | } else { |
| 1675 | start = 0; |
jeffhao | 14f0db9 | 2012-12-14 17:50:42 -0800 | [diff] [blame] | 1676 | // Return the index of the last instruction |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1677 | end = code_item->insns_size_in_code_units_ - 1; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1678 | } |
| 1679 | |
| 1680 | expandBufAdd8BE(pReply, start); |
| 1681 | expandBufAdd8BE(pReply, end); |
| 1682 | |
| 1683 | // Add numLines later |
| 1684 | size_t numLinesOffset = expandBufGetLength(pReply); |
| 1685 | expandBufAdd4BE(pReply, 0); |
| 1686 | |
| 1687 | DebugCallbackContext context; |
| 1688 | context.numItems = 0; |
| 1689 | context.pReply = pReply; |
| 1690 | |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1691 | if (code_item != nullptr) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1692 | m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1693 | DebugCallbackContext::Callback, nullptr, &context); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1694 | } |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1695 | |
| 1696 | JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1697 | } |
| 1698 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1699 | void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, |
| 1700 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1701 | struct DebugCallbackContext { |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1702 | mirror::ArtMethod* method; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1703 | JDWP::ExpandBuf* pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1704 | size_t variable_count; |
| 1705 | bool with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1706 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1707 | static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, |
| 1708 | const char* name, const char* descriptor, const char* signature) |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1709 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1710 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1711 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1712 | VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", |
| 1713 | pContext->variable_count, startAddress, endAddress - startAddress, |
| 1714 | name, descriptor, signature, slot, |
| 1715 | MangleSlot(slot, pContext->method)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1716 | |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1717 | slot = MangleSlot(slot, pContext->method); |
Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1718 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1719 | expandBufAdd8BE(pContext->pReply, startAddress); |
| 1720 | expandBufAddUtf8String(pContext->pReply, name); |
| 1721 | expandBufAddUtf8String(pContext->pReply, descriptor); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1722 | if (pContext->with_generic) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1723 | expandBufAddUtf8String(pContext->pReply, signature); |
| 1724 | } |
| 1725 | expandBufAdd4BE(pContext->pReply, endAddress - startAddress); |
| 1726 | expandBufAdd4BE(pContext->pReply, slot); |
| 1727 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1728 | ++pContext->variable_count; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1729 | } |
| 1730 | }; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1731 | mirror::ArtMethod* m = FromMethodId(method_id); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1732 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1733 | // arg_count considers doubles and longs to take 2 units. |
| 1734 | // variable_count considers everything to take 1 unit. |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1735 | std::string shorty(m->GetShorty()); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1736 | expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1737 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1738 | // We don't know the total number of variables yet, so leave a blank and update it later. |
| 1739 | size_t variable_count_offset = expandBufGetLength(pReply); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1740 | expandBufAdd4BE(pReply, 0); |
| 1741 | |
| 1742 | DebugCallbackContext context; |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1743 | context.method = m; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1744 | context.pReply = pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1745 | context.variable_count = 0; |
| 1746 | context.with_generic = with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1747 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1748 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1749 | if (code_item != nullptr) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1750 | m->GetDexFile()->DecodeDebugInfo( |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1751 | code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback, |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1752 | &context); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1753 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1754 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1755 | JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1756 | } |
| 1757 | |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1758 | void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, |
| 1759 | JDWP::ExpandBuf* pReply) { |
| 1760 | mirror::ArtMethod* m = FromMethodId(method_id); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1761 | JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1762 | OutputJValue(tag, return_value, pReply); |
| 1763 | } |
| 1764 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1765 | void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, |
| 1766 | JDWP::ExpandBuf* pReply) { |
| 1767 | mirror::ArtField* f = FromFieldId(field_id); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1768 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1769 | OutputJValue(tag, field_value, pReply); |
| 1770 | } |
| 1771 | |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1772 | JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1773 | std::vector<uint8_t>* bytecodes) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1774 | mirror::ArtMethod* m = FromMethodId(method_id); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1775 | if (m == nullptr) { |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1776 | return JDWP::ERR_INVALID_METHODID; |
| 1777 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1778 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1779 | size_t byte_count = code_item->insns_size_in_code_units_ * 2; |
| 1780 | const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_); |
| 1781 | const uint8_t* end = begin + byte_count; |
| 1782 | for (const uint8_t* p = begin; p != end; ++p) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1783 | bytecodes->push_back(*p); |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1784 | } |
| 1785 | return JDWP::ERR_NONE; |
| 1786 | } |
| 1787 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1788 | JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1789 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1790 | } |
| 1791 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1792 | JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1793 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1794 | } |
| 1795 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1796 | static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id, |
| 1797 | JDWP::FieldId field_id, JDWP::ExpandBuf* pReply, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1798 | bool is_static) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1799 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1800 | JDWP::JdwpError error; |
| 1801 | mirror::Class* c = DecodeClass(ref_type_id, &error); |
| 1802 | if (ref_type_id != 0 && c == nullptr) { |
| 1803 | return error; |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1804 | } |
| 1805 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1806 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1807 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1808 | return JDWP::ERR_INVALID_OBJECT; |
| 1809 | } |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1810 | mirror::ArtField* f = FromFieldId(field_id); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1811 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1812 | mirror::Class* receiver_class = c; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1813 | if (receiver_class == nullptr && o != nullptr) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1814 | receiver_class = o->GetClass(); |
| 1815 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1816 | // TODO: should we give up now if receiver_class is nullptr? |
| 1817 | if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1818 | LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1819 | return JDWP::ERR_INVALID_FIELDID; |
| 1820 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1821 | |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1822 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1823 | // TODO: should we change the tests and check both? |
| 1824 | if (is_static) { |
| 1825 | if (!f->IsStatic()) { |
| 1826 | return JDWP::ERR_INVALID_FIELDID; |
| 1827 | } |
| 1828 | } else { |
| 1829 | if (f->IsStatic()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1830 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " |
| 1831 | << PrettyField(f); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1832 | } |
| 1833 | } |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1834 | if (f->IsStatic()) { |
| 1835 | o = f->GetDeclaringClass(); |
| 1836 | } |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1837 | |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1838 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1839 | JValue field_value; |
| 1840 | if (tag == JDWP::JT_VOID) { |
| 1841 | LOG(FATAL) << "Unknown tag: " << tag; |
| 1842 | } else if (!IsPrimitiveTag(tag)) { |
| 1843 | field_value.SetL(f->GetObject(o)); |
| 1844 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 1845 | field_value.SetJ(f->Get64(o)); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1846 | } else { |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1847 | field_value.SetI(f->Get32(o)); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1848 | } |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1849 | Dbg::OutputJValue(tag, &field_value, pReply); |
| 1850 | |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1851 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1852 | } |
| 1853 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1854 | JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1855 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1856 | return GetFieldValueImpl(0, object_id, field_id, pReply, false); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1857 | } |
| 1858 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1859 | JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, |
| 1860 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1861 | return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1862 | } |
| 1863 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1864 | static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1865 | uint64_t value, int width, bool is_static) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1866 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1867 | JDWP::JdwpError error; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1868 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1869 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1870 | return JDWP::ERR_INVALID_OBJECT; |
| 1871 | } |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1872 | mirror::ArtField* f = FromFieldId(field_id); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1873 | |
| 1874 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1875 | // TODO: should we change the tests and check both? |
| 1876 | if (is_static) { |
| 1877 | if (!f->IsStatic()) { |
| 1878 | return JDWP::ERR_INVALID_FIELDID; |
| 1879 | } |
| 1880 | } else { |
| 1881 | if (f->IsStatic()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1882 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " << PrettyField(f); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1883 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1884 | } |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1885 | if (f->IsStatic()) { |
| 1886 | o = f->GetDeclaringClass(); |
| 1887 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1888 | |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1889 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1890 | |
| 1891 | if (IsPrimitiveTag(tag)) { |
| 1892 | if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1893 | CHECK_EQ(width, 8); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1894 | // Debugging can't use transactional mode (runtime only). |
| 1895 | f->Set64<false>(o, value); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1896 | } else { |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1897 | CHECK_LE(width, 4); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1898 | // Debugging can't use transactional mode (runtime only). |
| 1899 | f->Set32<false>(o, value); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1900 | } |
| 1901 | } else { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1902 | mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1903 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1904 | return JDWP::ERR_INVALID_OBJECT; |
| 1905 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1906 | if (v != nullptr) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1907 | mirror::Class* field_type; |
| 1908 | { |
| 1909 | StackHandleScope<3> hs(Thread::Current()); |
| 1910 | HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v)); |
| 1911 | HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f)); |
| 1912 | HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o)); |
| 1913 | field_type = FieldHelper(h_f).GetType(); |
| 1914 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1915 | if (!field_type->IsAssignableFrom(v->GetClass())) { |
| 1916 | return JDWP::ERR_INVALID_OBJECT; |
| 1917 | } |
| 1918 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1919 | // Debugging can't use transactional mode (runtime only). |
| 1920 | f->SetObject<false>(o, v); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1921 | } |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1922 | |
| 1923 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1924 | } |
| 1925 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1926 | 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] | 1927 | int width) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1928 | return SetFieldValueImpl(object_id, field_id, value, width, false); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1929 | } |
| 1930 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1931 | JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { |
| 1932 | return SetFieldValueImpl(0, field_id, value, width, true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1933 | } |
| 1934 | |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1935 | JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1936 | JDWP::JdwpError error; |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1937 | mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error); |
| 1938 | if (error != JDWP::ERR_NONE) { |
| 1939 | return error; |
| 1940 | } |
| 1941 | if (obj == nullptr) { |
| 1942 | return JDWP::ERR_INVALID_OBJECT; |
| 1943 | } |
| 1944 | { |
| 1945 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1946 | mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String); |
| 1947 | if (!java_lang_String->IsAssignableFrom(obj->GetClass())) { |
| 1948 | // This isn't a string. |
| 1949 | return JDWP::ERR_INVALID_STRING; |
| 1950 | } |
| 1951 | } |
| 1952 | *str = obj->AsString()->ToModifiedUtf8(); |
| 1953 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1954 | } |
| 1955 | |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1956 | void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { |
| 1957 | if (IsPrimitiveTag(tag)) { |
| 1958 | expandBufAdd1(pReply, tag); |
| 1959 | if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) { |
| 1960 | expandBufAdd1(pReply, return_value->GetI()); |
| 1961 | } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) { |
| 1962 | expandBufAdd2BE(pReply, return_value->GetI()); |
| 1963 | } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) { |
| 1964 | expandBufAdd4BE(pReply, return_value->GetI()); |
| 1965 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 1966 | expandBufAdd8BE(pReply, return_value->GetJ()); |
| 1967 | } else { |
| 1968 | CHECK_EQ(tag, JDWP::JT_VOID); |
| 1969 | } |
| 1970 | } else { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1971 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1972 | mirror::Object* value = return_value->GetL(); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1973 | expandBufAdd1(pReply, TagFromObject(soa, value)); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1974 | expandBufAddObjectId(pReply, gRegistry->Add(value)); |
| 1975 | } |
| 1976 | } |
| 1977 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1978 | JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 1979 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1980 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1981 | JDWP::JdwpError error; |
| 1982 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 1983 | UNUSED(thread); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1984 | if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) { |
| 1985 | return error; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1986 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1987 | |
| 1988 | // 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] | 1989 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 1990 | CHECK(thread_object != nullptr) << error; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1991 | mirror::ArtField* java_lang_Thread_name_field = |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1992 | soa.DecodeField(WellKnownClasses::java_lang_Thread_name); |
| 1993 | mirror::String* s = |
| 1994 | reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1995 | if (s != nullptr) { |
| 1996 | *name = s->ToModifiedUtf8(); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1997 | } |
| 1998 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1999 | } |
| 2000 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2001 | JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2002 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2003 | JDWP::JdwpError error; |
| 2004 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2005 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2006 | return JDWP::ERR_INVALID_OBJECT; |
| 2007 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2008 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup"); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2009 | // Okay, so it's an object, but is it actually a thread? |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2010 | { |
| 2011 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2012 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2013 | UNUSED(thread); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2014 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2015 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2016 | // Zombie threads are in the null group. |
| 2017 | expandBufAddObjectId(pReply, JDWP::ObjectId(0)); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2018 | error = JDWP::ERR_NONE; |
| 2019 | } else if (error == JDWP::ERR_NONE) { |
| 2020 | mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread); |
| 2021 | CHECK(c != nullptr); |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2022 | mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_Thread_group); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2023 | CHECK(f != nullptr); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2024 | mirror::Object* group = f->GetObject(thread_object); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2025 | CHECK(group != nullptr); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2026 | JDWP::ObjectId thread_group_id = gRegistry->Add(group); |
| 2027 | expandBufAddObjectId(pReply, thread_group_id); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2028 | } |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2029 | return error; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2030 | } |
| 2031 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2032 | static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2033 | JDWP::ObjectId thread_group_id, JDWP::JdwpError* error) |
| 2034 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2035 | mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, |
| 2036 | error); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2037 | if (*error != JDWP::ERR_NONE) { |
| 2038 | return nullptr; |
| 2039 | } |
| 2040 | if (thread_group == nullptr) { |
| 2041 | *error = JDWP::ERR_INVALID_OBJECT; |
| 2042 | return nullptr; |
| 2043 | } |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2044 | mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup); |
| 2045 | CHECK(c != nullptr); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2046 | if (!c->IsAssignableFrom(thread_group->GetClass())) { |
| 2047 | // This is not a java.lang.ThreadGroup. |
| 2048 | *error = JDWP::ERR_INVALID_THREAD_GROUP; |
| 2049 | return nullptr; |
| 2050 | } |
| 2051 | *error = JDWP::ERR_NONE; |
| 2052 | return thread_group; |
| 2053 | } |
| 2054 | |
| 2055 | JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| 2056 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2057 | JDWP::JdwpError error; |
| 2058 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2059 | if (error != JDWP::ERR_NONE) { |
| 2060 | return error; |
| 2061 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2062 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName"); |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2063 | mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_name); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2064 | CHECK(f != nullptr); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2065 | mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group)); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2066 | |
| 2067 | std::string thread_group_name(s->ToModifiedUtf8()); |
| 2068 | expandBufAddUtf8String(pReply, thread_group_name); |
| 2069 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2070 | } |
| 2071 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2072 | JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2073 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2074 | JDWP::JdwpError error; |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2075 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2076 | if (error != JDWP::ERR_NONE) { |
| 2077 | return error; |
| 2078 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2079 | mirror::Object* parent; |
| 2080 | { |
| 2081 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent"); |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2082 | mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_parent); |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2083 | CHECK(f != nullptr); |
| 2084 | parent = f->GetObject(thread_group); |
| 2085 | } |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2086 | JDWP::ObjectId parent_group_id = gRegistry->Add(parent); |
| 2087 | expandBufAddObjectId(pReply, parent_group_id); |
| 2088 | return JDWP::ERR_NONE; |
| 2089 | } |
| 2090 | |
| 2091 | static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group, |
| 2092 | std::vector<JDWP::ObjectId>* child_thread_group_ids) |
| 2093 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 2094 | CHECK(thread_group != nullptr); |
| 2095 | |
| 2096 | // Get the ArrayList<ThreadGroup> "groups" out of this thread group... |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2097 | mirror::ArtField* groups_field = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_groups); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2098 | mirror::Object* groups_array_list = groups_field->GetObject(thread_group); |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2099 | { |
| 2100 | // The "groups" field is declared as a java.util.List: check it really is |
| 2101 | // an instance of java.util.ArrayList. |
| 2102 | CHECK(groups_array_list != nullptr); |
| 2103 | mirror::Class* java_util_ArrayList_class = |
| 2104 | soa.Decode<mirror::Class*>(WellKnownClasses::java_util_ArrayList); |
| 2105 | CHECK(groups_array_list->InstanceOf(java_util_ArrayList_class)); |
| 2106 | } |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2107 | |
| 2108 | // Get the array and size out of the ArrayList<ThreadGroup>... |
Sebastien Hertz | e49e195 | 2014-10-13 11:27:13 +0200 | [diff] [blame] | 2109 | mirror::ArtField* array_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_array); |
| 2110 | mirror::ArtField* size_field = soa.DecodeField(WellKnownClasses::java_util_ArrayList_size); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2111 | mirror::ObjectArray<mirror::Object>* groups_array = |
| 2112 | array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>(); |
| 2113 | const int32_t size = size_field->GetInt(groups_array_list); |
| 2114 | |
| 2115 | // Copy the first 'size' elements out of the array into the result. |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2116 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2117 | for (int32_t i = 0; i < size; ++i) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2118 | child_thread_group_ids->push_back(registry->Add(groups_array->Get(i))); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2119 | } |
| 2120 | } |
| 2121 | |
| 2122 | JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id, |
| 2123 | JDWP::ExpandBuf* pReply) { |
| 2124 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2125 | JDWP::JdwpError error; |
| 2126 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2127 | if (error != JDWP::ERR_NONE) { |
| 2128 | return error; |
| 2129 | } |
| 2130 | |
| 2131 | // Add child threads. |
| 2132 | { |
| 2133 | std::vector<JDWP::ObjectId> child_thread_ids; |
| 2134 | GetThreads(thread_group, &child_thread_ids); |
| 2135 | expandBufAdd4BE(pReply, child_thread_ids.size()); |
| 2136 | for (JDWP::ObjectId child_thread_id : child_thread_ids) { |
| 2137 | expandBufAddObjectId(pReply, child_thread_id); |
| 2138 | } |
| 2139 | } |
| 2140 | |
| 2141 | // Add child thread groups. |
| 2142 | { |
| 2143 | std::vector<JDWP::ObjectId> child_thread_groups_ids; |
| 2144 | GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids); |
| 2145 | expandBufAdd4BE(pReply, child_thread_groups_ids.size()); |
| 2146 | for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) { |
| 2147 | expandBufAddObjectId(pReply, child_thread_group_id); |
| 2148 | } |
| 2149 | } |
| 2150 | |
| 2151 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2152 | } |
| 2153 | |
| 2154 | JDWP::ObjectId Dbg::GetSystemThreadGroupId() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2155 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 2156 | mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2157 | mirror::Object* group = f->GetObject(f->GetDeclaringClass()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 2158 | return gRegistry->Add(group); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2159 | } |
| 2160 | |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2161 | JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) { |
| 2162 | switch (state) { |
| 2163 | case kBlocked: |
| 2164 | return JDWP::TS_MONITOR; |
| 2165 | case kNative: |
| 2166 | case kRunnable: |
| 2167 | case kSuspended: |
| 2168 | return JDWP::TS_RUNNING; |
| 2169 | case kSleeping: |
| 2170 | return JDWP::TS_SLEEPING; |
| 2171 | case kStarting: |
| 2172 | case kTerminated: |
| 2173 | return JDWP::TS_ZOMBIE; |
| 2174 | case kTimedWaiting: |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2175 | case kWaitingForCheckPointsToRun: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2176 | case kWaitingForDebuggerSend: |
| 2177 | case kWaitingForDebuggerSuspension: |
| 2178 | case kWaitingForDebuggerToAttach: |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2179 | case kWaitingForDeoptimization: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2180 | case kWaitingForGcToComplete: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2181 | case kWaitingForJniOnLoad: |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2182 | case kWaitingForMethodTracingStart: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2183 | case kWaitingForSignalCatcherOutput: |
| 2184 | case kWaitingInMainDebuggerLoop: |
| 2185 | case kWaitingInMainSignalCatcherLoop: |
| 2186 | case kWaitingPerformingGc: |
| 2187 | case kWaiting: |
| 2188 | return JDWP::TS_WAIT; |
| 2189 | // Don't add a 'default' here so the compiler can spot incompatible enum changes. |
| 2190 | } |
| 2191 | LOG(FATAL) << "Unknown thread state: " << state; |
| 2192 | return JDWP::TS_ZOMBIE; |
| 2193 | } |
| 2194 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2195 | JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, |
| 2196 | JDWP::JdwpSuspendStatus* pSuspendStatus) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2197 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2198 | |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2199 | *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED; |
| 2200 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2201 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2202 | JDWP::JdwpError error; |
| 2203 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2204 | if (error != JDWP::ERR_NONE) { |
| 2205 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2206 | *pThreadStatus = JDWP::TS_ZOMBIE; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2207 | return JDWP::ERR_NONE; |
| 2208 | } |
| 2209 | return error; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2210 | } |
| 2211 | |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2212 | if (IsSuspendedForDebugger(soa, thread)) { |
| 2213 | *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2214 | } |
| 2215 | |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2216 | *pThreadStatus = ToJdwpThreadStatus(thread->GetState()); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2217 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2218 | } |
| 2219 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2220 | JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2221 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2222 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2223 | JDWP::JdwpError error; |
| 2224 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2225 | if (error != JDWP::ERR_NONE) { |
| 2226 | return error; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2227 | } |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2228 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2229 | expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2230 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2231 | } |
| 2232 | |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2233 | JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) { |
| 2234 | ScopedObjectAccess soa(Thread::Current()); |
| 2235 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2236 | JDWP::JdwpError error; |
| 2237 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2238 | if (error != JDWP::ERR_NONE) { |
| 2239 | return error; |
| 2240 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2241 | thread->Interrupt(soa.Self()); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2242 | return JDWP::ERR_NONE; |
| 2243 | } |
| 2244 | |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2245 | static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2246 | mirror::Object* desired_thread_group, mirror::Object* peer) |
| 2247 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 2248 | // Do we want threads from all thread groups? |
| 2249 | if (desired_thread_group == nullptr) { |
| 2250 | return true; |
| 2251 | } |
| 2252 | mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group); |
| 2253 | DCHECK(thread_group_field != nullptr); |
| 2254 | mirror::Object* group = thread_group_field->GetObject(peer); |
| 2255 | return (group == desired_thread_group); |
| 2256 | } |
| 2257 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2258 | 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] | 2259 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2260 | std::list<Thread*> all_threads_list; |
| 2261 | { |
| 2262 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 2263 | all_threads_list = Runtime::Current()->GetThreadList()->GetList(); |
| 2264 | } |
| 2265 | for (Thread* t : all_threads_list) { |
| 2266 | if (t == Dbg::GetDebugThread()) { |
| 2267 | // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and |
| 2268 | // query all threads, so it's easier if we just don't tell them about this thread. |
| 2269 | continue; |
| 2270 | } |
| 2271 | if (t->IsStillStarting()) { |
| 2272 | // This thread is being started (and has been registered in the thread list). However, it is |
| 2273 | // not completely started yet so we must ignore it. |
| 2274 | continue; |
| 2275 | } |
| 2276 | mirror::Object* peer = t->GetPeer(); |
| 2277 | if (peer == nullptr) { |
| 2278 | // peer might be NULL if the thread is still starting up. We can't tell the debugger about |
| 2279 | // this thread yet. |
| 2280 | // TODO: if we identified threads to the debugger by their Thread* |
| 2281 | // rather than their peer's mirror::Object*, we could fix this. |
| 2282 | // Doing so might help us report ZOMBIE threads too. |
| 2283 | continue; |
| 2284 | } |
| 2285 | if (IsInDesiredThreadGroup(soa, thread_group, peer)) { |
| 2286 | thread_ids->push_back(gRegistry->Add(peer)); |
| 2287 | } |
| 2288 | } |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2289 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2290 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2291 | static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2292 | struct CountStackDepthVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2293 | explicit CountStackDepthVisitor(Thread* thread_in) |
| 2294 | : StackVisitor(thread_in, nullptr), depth(0) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2295 | |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 2296 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2297 | // annotalysis. |
| 2298 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2299 | if (!GetMethod()->IsRuntimeMethod()) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 2300 | ++depth; |
| 2301 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2302 | return true; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2303 | } |
| 2304 | size_t depth; |
| 2305 | }; |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 2306 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2307 | CountStackDepthVisitor visitor(thread); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2308 | visitor.WalkStack(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2309 | return visitor.depth; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2310 | } |
| 2311 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2312 | JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2313 | ScopedObjectAccess soa(Thread::Current()); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2314 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2315 | JDWP::JdwpError error; |
| 2316 | *result = 0; |
| 2317 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2318 | if (error != JDWP::ERR_NONE) { |
| 2319 | return error; |
| 2320 | } |
Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2321 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2322 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2323 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2324 | *result = GetStackDepth(thread); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2325 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2326 | } |
| 2327 | |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 2328 | JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, |
| 2329 | size_t frame_count, JDWP::ExpandBuf* buf) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2330 | class GetFrameVisitor : public StackVisitor { |
| 2331 | public: |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2332 | GetFrameVisitor(Thread* thread, size_t start_frame_in, size_t frame_count_in, |
| 2333 | JDWP::ExpandBuf* buf_in) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2334 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2335 | : StackVisitor(thread, nullptr), depth_(0), |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2336 | start_frame_(start_frame_in), frame_count_(frame_count_in), buf_(buf_in) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2337 | expandBufAdd4BE(buf_, frame_count_); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2338 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2339 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2340 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2341 | // annotalysis. |
| 2342 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2343 | if (GetMethod()->IsRuntimeMethod()) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 2344 | 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] | 2345 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2346 | if (depth_ >= start_frame_ + frame_count_) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2347 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2348 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2349 | if (depth_ >= start_frame_) { |
| 2350 | JDWP::FrameId frame_id(GetFrameId()); |
| 2351 | JDWP::JdwpLocation location; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2352 | SetJdwpLocation(&location, GetMethod(), GetDexPc()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2353 | VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2354 | expandBufAdd8BE(buf_, frame_id); |
| 2355 | expandBufAddLocation(buf_, location); |
| 2356 | } |
| 2357 | ++depth_; |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2358 | return true; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2359 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2360 | |
| 2361 | private: |
| 2362 | size_t depth_; |
| 2363 | const size_t start_frame_; |
| 2364 | const size_t frame_count_; |
| 2365 | JDWP::ExpandBuf* buf_; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2366 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2367 | |
| 2368 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2369 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2370 | JDWP::JdwpError error; |
| 2371 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2372 | if (error != JDWP::ERR_NONE) { |
| 2373 | return error; |
| 2374 | } |
Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2375 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2376 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2377 | } |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2378 | GetFrameVisitor visitor(thread, start_frame, frame_count, buf); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2379 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2380 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2381 | } |
| 2382 | |
| 2383 | JDWP::ObjectId Dbg::GetThreadSelfId() { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2384 | return GetThreadId(Thread::Current()); |
| 2385 | } |
| 2386 | |
| 2387 | JDWP::ObjectId Dbg::GetThreadId(Thread* thread) { |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 2388 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2389 | return gRegistry->Add(thread->GetPeer()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2390 | } |
| 2391 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2392 | void Dbg::SuspendVM() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2393 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2394 | } |
| 2395 | |
| 2396 | void Dbg::ResumeVM() { |
Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 2397 | Runtime::Current()->GetThreadList()->ResumeAllForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2398 | } |
| 2399 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2400 | JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2401 | Thread* self = Thread::Current(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2402 | ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2403 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2404 | ScopedObjectAccess soa(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2405 | JDWP::JdwpError error; |
| 2406 | peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error))); |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2407 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2408 | if (peer.get() == nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2409 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2410 | } |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2411 | // Suspend thread to build stack trace. Take suspend thread lock to avoid races with threads |
| 2412 | // trying to suspend this one. |
| 2413 | MutexLock mu(self, *Locks::thread_list_suspend_thread_lock_); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2414 | bool timed_out; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2415 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 2416 | Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true, |
| 2417 | &timed_out); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2418 | if (thread != nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2419 | return JDWP::ERR_NONE; |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2420 | } else if (timed_out) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2421 | return JDWP::ERR_INTERNAL; |
| 2422 | } else { |
| 2423 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2424 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2425 | } |
| 2426 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2427 | void Dbg::ResumeThread(JDWP::ObjectId thread_id) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2428 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2429 | JDWP::JdwpError error; |
| 2430 | mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2431 | CHECK(peer != nullptr) << error; |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2432 | Thread* thread; |
| 2433 | { |
| 2434 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2435 | thread = Thread::FromManagedThread(soa, peer); |
| 2436 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2437 | if (thread == nullptr) { |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2438 | LOG(WARNING) << "No such thread for resume: " << peer; |
| 2439 | return; |
| 2440 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2441 | bool needs_resume; |
| 2442 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2443 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2444 | needs_resume = thread->GetSuspendCount() > 0; |
| 2445 | } |
| 2446 | if (needs_resume) { |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 2447 | Runtime::Current()->GetThreadList()->Resume(thread, true); |
| 2448 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2449 | } |
| 2450 | |
| 2451 | void Dbg::SuspendSelf() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2452 | Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2453 | } |
| 2454 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2455 | struct GetThisVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2456 | GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id_in) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2457 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 2458 | : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id_in) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2459 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2460 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2461 | // annotalysis. |
| 2462 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2463 | if (frame_id != GetFrameId()) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2464 | return true; // continue |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2465 | } else { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2466 | this_object = GetThisObject(); |
| 2467 | return false; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2468 | } |
Elliott Hughes | 86b0010 | 2011-12-05 17:54:26 -0800 | [diff] [blame] | 2469 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2470 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2471 | mirror::Object* this_object; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2472 | JDWP::FrameId frame_id; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2473 | }; |
| 2474 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2475 | JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, |
| 2476 | JDWP::ObjectId* result) { |
| 2477 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2478 | Thread* thread; |
| 2479 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2480 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2481 | JDWP::JdwpError error; |
| 2482 | thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2483 | if (error != JDWP::ERR_NONE) { |
| 2484 | return error; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2485 | } |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2486 | if (!IsSuspendedForDebugger(soa, thread)) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2487 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2488 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2489 | } |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2490 | std::unique_ptr<Context> context(Context::Create()); |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2491 | GetThisVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2492 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2493 | *result = gRegistry->Add(visitor.this_object); |
| 2494 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2495 | } |
| 2496 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2497 | // Walks the stack until we find the frame with the given FrameId. |
| 2498 | class FindFrameVisitor FINAL : public StackVisitor { |
| 2499 | public: |
| 2500 | FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id) |
| 2501 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
| 2502 | : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {} |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 2503 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2504 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2505 | // annotalysis. |
| 2506 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 2507 | if (GetFrameId() != frame_id_) { |
| 2508 | return true; // Not our frame, carry on. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2509 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2510 | mirror::ArtMethod* m = GetMethod(); |
| 2511 | if (m->IsNative()) { |
| 2512 | // We can't read/write local value from/into native method. |
| 2513 | error_ = JDWP::ERR_OPAQUE_FRAME; |
| 2514 | } else { |
| 2515 | // We found our frame. |
| 2516 | error_ = JDWP::ERR_NONE; |
| 2517 | } |
| 2518 | return false; |
| 2519 | } |
| 2520 | |
| 2521 | JDWP::JdwpError GetError() const { |
| 2522 | return error_; |
| 2523 | } |
| 2524 | |
| 2525 | private: |
| 2526 | const JDWP::FrameId frame_id_; |
| 2527 | JDWP::JdwpError error_; |
| 2528 | }; |
| 2529 | |
| 2530 | JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { |
| 2531 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2532 | JDWP::FrameId frame_id = request->ReadFrameId(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2533 | |
| 2534 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2535 | Thread* thread; |
| 2536 | { |
| 2537 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2538 | JDWP::JdwpError error; |
| 2539 | thread = DecodeThread(soa, thread_id, &error); |
| 2540 | if (error != JDWP::ERR_NONE) { |
| 2541 | return error; |
| 2542 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2543 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2544 | // Find the frame with the given frame_id. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2545 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2546 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2547 | visitor.WalkStack(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2548 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2549 | return visitor.GetError(); |
| 2550 | } |
| 2551 | |
| 2552 | // Read the values from visitor's context. |
| 2553 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2554 | expandBufAdd4BE(pReply, slot_count); /* "int values" */ |
| 2555 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2556 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2557 | JDWP::JdwpTag reqSigByte = request->ReadTag(); |
| 2558 | |
| 2559 | VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte; |
| 2560 | |
| 2561 | size_t width = Dbg::GetTagWidth(reqSigByte); |
| 2562 | uint8_t* ptr = expandBufAddSpace(pReply, width+1); |
| 2563 | JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width); |
| 2564 | if (error != JDWP::ERR_NONE) { |
| 2565 | return error; |
| 2566 | } |
| 2567 | } |
| 2568 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2569 | } |
| 2570 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2571 | JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, |
| 2572 | int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { |
| 2573 | mirror::ArtMethod* m = visitor.GetMethod(); |
| 2574 | uint16_t reg = DemangleSlot(slot, m); |
| 2575 | // TODO: check that the tag is compatible with the actual type of the slot! |
| 2576 | // TODO: check slot is valid for this method or return INVALID_SLOT error. |
| 2577 | constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION; |
| 2578 | switch (tag) { |
| 2579 | case JDWP::JT_BOOLEAN: { |
| 2580 | CHECK_EQ(width, 1U); |
| 2581 | uint32_t intVal; |
| 2582 | if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { |
| 2583 | VLOG(jdwp) << "get boolean local " << reg << " = " << intVal; |
| 2584 | JDWP::Set1(buf + 1, intVal != 0); |
| 2585 | } else { |
| 2586 | VLOG(jdwp) << "failed to get boolean local " << reg; |
| 2587 | return kFailureErrorCode; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2588 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2589 | break; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2590 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2591 | case JDWP::JT_BYTE: { |
| 2592 | CHECK_EQ(width, 1U); |
| 2593 | uint32_t intVal; |
| 2594 | if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { |
| 2595 | VLOG(jdwp) << "get byte local " << reg << " = " << intVal; |
| 2596 | JDWP::Set1(buf + 1, intVal); |
| 2597 | } else { |
| 2598 | VLOG(jdwp) << "failed to get byte local " << reg; |
| 2599 | return kFailureErrorCode; |
| 2600 | } |
| 2601 | break; |
| 2602 | } |
| 2603 | case JDWP::JT_SHORT: |
| 2604 | case JDWP::JT_CHAR: { |
| 2605 | CHECK_EQ(width, 2U); |
| 2606 | uint32_t intVal; |
| 2607 | if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { |
| 2608 | VLOG(jdwp) << "get short/char local " << reg << " = " << intVal; |
| 2609 | JDWP::Set2BE(buf + 1, intVal); |
| 2610 | } else { |
| 2611 | VLOG(jdwp) << "failed to get short/char local " << reg; |
| 2612 | return kFailureErrorCode; |
| 2613 | } |
| 2614 | break; |
| 2615 | } |
| 2616 | case JDWP::JT_INT: { |
| 2617 | CHECK_EQ(width, 4U); |
| 2618 | uint32_t intVal; |
| 2619 | if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { |
| 2620 | VLOG(jdwp) << "get int local " << reg << " = " << intVal; |
| 2621 | JDWP::Set4BE(buf + 1, intVal); |
| 2622 | } else { |
| 2623 | VLOG(jdwp) << "failed to get int local " << reg; |
| 2624 | return kFailureErrorCode; |
| 2625 | } |
| 2626 | break; |
| 2627 | } |
| 2628 | case JDWP::JT_FLOAT: { |
| 2629 | CHECK_EQ(width, 4U); |
| 2630 | uint32_t intVal; |
| 2631 | if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) { |
| 2632 | VLOG(jdwp) << "get float local " << reg << " = " << intVal; |
| 2633 | JDWP::Set4BE(buf + 1, intVal); |
| 2634 | } else { |
| 2635 | VLOG(jdwp) << "failed to get float local " << reg; |
| 2636 | return kFailureErrorCode; |
| 2637 | } |
| 2638 | break; |
| 2639 | } |
| 2640 | case JDWP::JT_ARRAY: |
| 2641 | case JDWP::JT_CLASS_LOADER: |
| 2642 | case JDWP::JT_CLASS_OBJECT: |
| 2643 | case JDWP::JT_OBJECT: |
| 2644 | case JDWP::JT_STRING: |
| 2645 | case JDWP::JT_THREAD: |
| 2646 | case JDWP::JT_THREAD_GROUP: { |
| 2647 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| 2648 | uint32_t intVal; |
| 2649 | if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) { |
| 2650 | mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal); |
| 2651 | VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o; |
| 2652 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) { |
| 2653 | LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o; |
| 2654 | } |
| 2655 | tag = TagFromObject(soa, o); |
| 2656 | JDWP::SetObjectId(buf + 1, gRegistry->Add(o)); |
| 2657 | } else { |
| 2658 | VLOG(jdwp) << "failed to get " << tag << " object local " << reg; |
| 2659 | return kFailureErrorCode; |
| 2660 | } |
| 2661 | break; |
| 2662 | } |
| 2663 | case JDWP::JT_DOUBLE: { |
| 2664 | CHECK_EQ(width, 8U); |
| 2665 | uint64_t longVal; |
| 2666 | if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { |
| 2667 | VLOG(jdwp) << "get double local " << reg << " = " << longVal; |
| 2668 | JDWP::Set8BE(buf + 1, longVal); |
| 2669 | } else { |
| 2670 | VLOG(jdwp) << "failed to get double local " << reg; |
| 2671 | return kFailureErrorCode; |
| 2672 | } |
| 2673 | break; |
| 2674 | } |
| 2675 | case JDWP::JT_LONG: { |
| 2676 | CHECK_EQ(width, 8U); |
| 2677 | uint64_t longVal; |
| 2678 | if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) { |
| 2679 | VLOG(jdwp) << "get long local " << reg << " = " << longVal; |
| 2680 | JDWP::Set8BE(buf + 1, longVal); |
| 2681 | } else { |
| 2682 | VLOG(jdwp) << "failed to get long local " << reg; |
| 2683 | return kFailureErrorCode; |
| 2684 | } |
| 2685 | break; |
| 2686 | } |
| 2687 | default: |
| 2688 | LOG(FATAL) << "Unknown tag " << tag; |
| 2689 | break; |
| 2690 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2691 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2692 | // Prepend tag, which may have been updated. |
| 2693 | JDWP::Set1(buf, tag); |
| 2694 | return JDWP::ERR_NONE; |
| 2695 | } |
| 2696 | |
| 2697 | JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { |
| 2698 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2699 | JDWP::FrameId frame_id = request->ReadFrameId(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2700 | |
| 2701 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2702 | Thread* thread; |
| 2703 | { |
| 2704 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2705 | JDWP::JdwpError error; |
| 2706 | thread = DecodeThread(soa, thread_id, &error); |
| 2707 | if (error != JDWP::ERR_NONE) { |
| 2708 | return error; |
| 2709 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2710 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2711 | // Find the frame with the given frame_id. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2712 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2713 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2714 | visitor.WalkStack(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2715 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2716 | return visitor.GetError(); |
| 2717 | } |
| 2718 | |
| 2719 | // Writes the values into visitor's context. |
| 2720 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2721 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2722 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2723 | JDWP::JdwpTag sigByte = request->ReadTag(); |
| 2724 | size_t width = Dbg::GetTagWidth(sigByte); |
| 2725 | uint64_t value = request->ReadValue(width); |
| 2726 | |
| 2727 | VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value; |
| 2728 | JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width); |
| 2729 | if (error != JDWP::ERR_NONE) { |
| 2730 | return error; |
| 2731 | } |
| 2732 | } |
| 2733 | return JDWP::ERR_NONE; |
| 2734 | } |
| 2735 | |
| 2736 | JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag, |
| 2737 | uint64_t value, size_t width) { |
| 2738 | mirror::ArtMethod* m = visitor.GetMethod(); |
| 2739 | uint16_t reg = DemangleSlot(slot, m); |
| 2740 | // TODO: check that the tag is compatible with the actual type of the slot! |
| 2741 | // TODO: check slot is valid for this method or return INVALID_SLOT error. |
| 2742 | constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION; |
| 2743 | switch (tag) { |
| 2744 | case JDWP::JT_BOOLEAN: |
| 2745 | case JDWP::JT_BYTE: |
| 2746 | CHECK_EQ(width, 1U); |
| 2747 | if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) { |
| 2748 | VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = " |
| 2749 | << static_cast<uint32_t>(value); |
| 2750 | return kFailureErrorCode; |
| 2751 | } |
| 2752 | break; |
| 2753 | case JDWP::JT_SHORT: |
| 2754 | case JDWP::JT_CHAR: |
| 2755 | CHECK_EQ(width, 2U); |
| 2756 | if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) { |
| 2757 | VLOG(jdwp) << "failed to set short/char local " << reg << " = " |
| 2758 | << static_cast<uint32_t>(value); |
| 2759 | return kFailureErrorCode; |
| 2760 | } |
| 2761 | break; |
| 2762 | case JDWP::JT_INT: |
| 2763 | CHECK_EQ(width, 4U); |
| 2764 | if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) { |
| 2765 | VLOG(jdwp) << "failed to set int local " << reg << " = " |
| 2766 | << static_cast<uint32_t>(value); |
| 2767 | return kFailureErrorCode; |
| 2768 | } |
| 2769 | break; |
| 2770 | case JDWP::JT_FLOAT: |
| 2771 | CHECK_EQ(width, 4U); |
| 2772 | if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) { |
| 2773 | VLOG(jdwp) << "failed to set float local " << reg << " = " |
| 2774 | << static_cast<uint32_t>(value); |
| 2775 | return kFailureErrorCode; |
| 2776 | } |
| 2777 | break; |
| 2778 | case JDWP::JT_ARRAY: |
| 2779 | case JDWP::JT_CLASS_LOADER: |
| 2780 | case JDWP::JT_CLASS_OBJECT: |
| 2781 | case JDWP::JT_OBJECT: |
| 2782 | case JDWP::JT_STRING: |
| 2783 | case JDWP::JT_THREAD: |
| 2784 | case JDWP::JT_THREAD_GROUP: { |
| 2785 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| 2786 | JDWP::JdwpError error; |
| 2787 | mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value), |
| 2788 | &error); |
| 2789 | if (error != JDWP::ERR_NONE) { |
| 2790 | VLOG(jdwp) << tag << " object " << o << " is an invalid object"; |
| 2791 | return JDWP::ERR_INVALID_OBJECT; |
| 2792 | } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), |
| 2793 | kReferenceVReg)) { |
| 2794 | VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o; |
| 2795 | return kFailureErrorCode; |
| 2796 | } |
| 2797 | break; |
| 2798 | } |
| 2799 | case JDWP::JT_DOUBLE: { |
| 2800 | CHECK_EQ(width, 8U); |
| 2801 | if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) { |
| 2802 | VLOG(jdwp) << "failed to set double local " << reg << " = " << value; |
| 2803 | return kFailureErrorCode; |
| 2804 | } |
| 2805 | break; |
| 2806 | } |
| 2807 | case JDWP::JT_LONG: { |
| 2808 | CHECK_EQ(width, 8U); |
| 2809 | if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) { |
| 2810 | VLOG(jdwp) << "failed to set double local " << reg << " = " << value; |
| 2811 | return kFailureErrorCode; |
| 2812 | } |
| 2813 | break; |
| 2814 | } |
| 2815 | default: |
| 2816 | LOG(FATAL) << "Unknown tag " << tag; |
| 2817 | break; |
| 2818 | } |
| 2819 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2820 | } |
| 2821 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2822 | static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc) |
| 2823 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 2824 | DCHECK(location != nullptr); |
| 2825 | if (m == nullptr) { |
| 2826 | memset(location, 0, sizeof(*location)); |
| 2827 | } else { |
| 2828 | location->method = m; |
| 2829 | 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] | 2830 | } |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2831 | } |
| 2832 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2833 | void Dbg::PostLocationEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object, |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 2834 | int event_flags, const JValue* return_value) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2835 | if (!IsDebuggerActive()) { |
| 2836 | return; |
| 2837 | } |
| 2838 | DCHECK(m != nullptr); |
| 2839 | DCHECK_EQ(m->IsStatic(), this_object == nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2840 | JDWP::EventLocation location; |
| 2841 | SetEventLocation(&location, m, dex_pc); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2842 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2843 | gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2844 | } |
| 2845 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2846 | void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc, |
| 2847 | mirror::Object* this_object, mirror::ArtField* f) { |
| 2848 | if (!IsDebuggerActive()) { |
| 2849 | return; |
| 2850 | } |
| 2851 | DCHECK(m != nullptr); |
| 2852 | DCHECK(f != nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2853 | JDWP::EventLocation location; |
| 2854 | SetEventLocation(&location, m, dex_pc); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2855 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2856 | gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2857 | } |
| 2858 | |
| 2859 | void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc, |
| 2860 | mirror::Object* this_object, mirror::ArtField* f, |
| 2861 | const JValue* field_value) { |
| 2862 | if (!IsDebuggerActive()) { |
| 2863 | return; |
| 2864 | } |
| 2865 | DCHECK(m != nullptr); |
| 2866 | DCHECK(f != nullptr); |
| 2867 | DCHECK(field_value != nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2868 | JDWP::EventLocation location; |
| 2869 | SetEventLocation(&location, m, dex_pc); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2870 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2871 | gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2872 | } |
| 2873 | |
| 2874 | void Dbg::PostException(const ThrowLocation& throw_location, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 2875 | mirror::ArtMethod* catch_method, |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 2876 | uint32_t catch_dex_pc, mirror::Throwable* exception_object) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2877 | if (!IsDebuggerActive()) { |
Ian Rogers | 0ad5bb8 | 2011-12-07 10:16:32 -0800 | [diff] [blame] | 2878 | return; |
| 2879 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2880 | JDWP::EventLocation exception_throw_location; |
| 2881 | SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc()); |
| 2882 | JDWP::EventLocation exception_catch_location; |
| 2883 | SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc); |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 2884 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2885 | gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location, |
| 2886 | throw_location.GetThis()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2887 | } |
| 2888 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2889 | void Dbg::PostClassPrepare(mirror::Class* c) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2890 | if (!IsDebuggerActive()) { |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 2891 | return; |
| 2892 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2893 | gJdwpState->PostClassPrepare(c); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2894 | } |
| 2895 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2896 | void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object, |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 2897 | mirror::ArtMethod* m, uint32_t dex_pc, |
| 2898 | int event_flags, const JValue* return_value) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2899 | if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) { |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 2900 | return; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2901 | } |
| 2902 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2903 | if (IsBreakpoint(m, dex_pc)) { |
| 2904 | event_flags |= kBreakpoint; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2905 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2906 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2907 | // If the debugger is single-stepping one of our threads, check to |
| 2908 | // see if we're that thread and we've reached a step point. |
| 2909 | const SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
| 2910 | DCHECK(single_step_control != nullptr); |
| 2911 | if (single_step_control->is_active) { |
| 2912 | CHECK(!m->IsNative()); |
| 2913 | if (single_step_control->step_depth == JDWP::SD_INTO) { |
| 2914 | // Step into method calls. We break when the line number |
| 2915 | // or method pointer changes. If we're in SS_MIN mode, we |
| 2916 | // always stop. |
| 2917 | if (single_step_control->method != m) { |
| 2918 | event_flags |= kSingleStep; |
| 2919 | VLOG(jdwp) << "SS new method"; |
| 2920 | } else if (single_step_control->step_size == JDWP::SS_MIN) { |
| 2921 | event_flags |= kSingleStep; |
| 2922 | VLOG(jdwp) << "SS new instruction"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 2923 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2924 | event_flags |= kSingleStep; |
| 2925 | VLOG(jdwp) << "SS new line"; |
| 2926 | } |
| 2927 | } else if (single_step_control->step_depth == JDWP::SD_OVER) { |
| 2928 | // Step over method calls. We break when the line number is |
| 2929 | // different and the frame depth is <= the original frame |
| 2930 | // depth. (We can't just compare on the method, because we |
| 2931 | // might get unrolled past it by an exception, and it's tricky |
| 2932 | // to identify recursion.) |
| 2933 | |
| 2934 | int stack_depth = GetStackDepth(thread); |
| 2935 | |
| 2936 | if (stack_depth < single_step_control->stack_depth) { |
| 2937 | // Popped up one or more frames, always trigger. |
| 2938 | event_flags |= kSingleStep; |
| 2939 | VLOG(jdwp) << "SS method pop"; |
| 2940 | } else if (stack_depth == single_step_control->stack_depth) { |
| 2941 | // Same depth, see if we moved. |
| 2942 | if (single_step_control->step_size == JDWP::SS_MIN) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2943 | event_flags |= kSingleStep; |
| 2944 | VLOG(jdwp) << "SS new instruction"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 2945 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2946 | event_flags |= kSingleStep; |
| 2947 | VLOG(jdwp) << "SS new line"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2948 | } |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2949 | } |
| 2950 | } else { |
| 2951 | CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT); |
| 2952 | // Return from the current method. We break when the frame |
| 2953 | // depth pops up. |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2954 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2955 | // This differs from the "method exit" break in that it stops |
| 2956 | // with the PC at the next instruction in the returned-to |
| 2957 | // function, rather than the end of the returning function. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2958 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2959 | int stack_depth = GetStackDepth(thread); |
| 2960 | if (stack_depth < single_step_control->stack_depth) { |
| 2961 | event_flags |= kSingleStep; |
| 2962 | VLOG(jdwp) << "SS method pop"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2963 | } |
| 2964 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2965 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2966 | |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2967 | // If there's something interesting going on, see if it matches one |
| 2968 | // of the debugger filters. |
| 2969 | if (event_flags != 0) { |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 2970 | Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2971 | } |
| 2972 | } |
| 2973 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 2974 | size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) { |
| 2975 | switch (instrumentation_event) { |
| 2976 | case instrumentation::Instrumentation::kMethodEntered: |
| 2977 | return &method_enter_event_ref_count_; |
| 2978 | case instrumentation::Instrumentation::kMethodExited: |
| 2979 | return &method_exit_event_ref_count_; |
| 2980 | case instrumentation::Instrumentation::kDexPcMoved: |
| 2981 | return &dex_pc_change_event_ref_count_; |
| 2982 | case instrumentation::Instrumentation::kFieldRead: |
| 2983 | return &field_read_event_ref_count_; |
| 2984 | case instrumentation::Instrumentation::kFieldWritten: |
| 2985 | return &field_write_event_ref_count_; |
| 2986 | case instrumentation::Instrumentation::kExceptionCaught: |
| 2987 | return &exception_catch_event_ref_count_; |
| 2988 | default: |
| 2989 | return nullptr; |
| 2990 | } |
| 2991 | } |
| 2992 | |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 2993 | // Process request while all mutator threads are suspended. |
| 2994 | void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2995 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 2996 | switch (request.GetKind()) { |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 2997 | case DeoptimizationRequest::kNothing: |
| 2998 | LOG(WARNING) << "Ignoring empty deoptimization request."; |
| 2999 | break; |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3000 | case DeoptimizationRequest::kRegisterForEvent: |
| 3001 | VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3002 | request.InstrumentationEvent()); |
| 3003 | instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); |
| 3004 | instrumentation_events_ |= request.InstrumentationEvent(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3005 | break; |
| 3006 | case DeoptimizationRequest::kUnregisterForEvent: |
| 3007 | VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3008 | request.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3009 | instrumentation->RemoveListener(&gDebugInstrumentationListener, |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3010 | request.InstrumentationEvent()); |
| 3011 | instrumentation_events_ &= ~request.InstrumentationEvent(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3012 | break; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3013 | case DeoptimizationRequest::kFullDeoptimization: |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3014 | VLOG(jdwp) << "Deoptimize the world ..."; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3015 | instrumentation->DeoptimizeEverything(); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3016 | VLOG(jdwp) << "Deoptimize the world DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3017 | break; |
| 3018 | case DeoptimizationRequest::kFullUndeoptimization: |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3019 | VLOG(jdwp) << "Undeoptimize the world ..."; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3020 | instrumentation->UndeoptimizeEverything(); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3021 | VLOG(jdwp) << "Undeoptimize the world DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3022 | break; |
| 3023 | case DeoptimizationRequest::kSelectiveDeoptimization: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3024 | VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ..."; |
| 3025 | instrumentation->Deoptimize(request.Method()); |
| 3026 | VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3027 | break; |
| 3028 | case DeoptimizationRequest::kSelectiveUndeoptimization: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3029 | VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ..."; |
| 3030 | instrumentation->Undeoptimize(request.Method()); |
| 3031 | VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3032 | break; |
| 3033 | default: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3034 | LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3035 | break; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3036 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3037 | } |
| 3038 | |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3039 | void Dbg::DelayFullUndeoptimization() { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3040 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3041 | ++delayed_full_undeoptimization_count_; |
| 3042 | DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_); |
| 3043 | } |
| 3044 | |
| 3045 | void Dbg::ProcessDelayedFullUndeoptimizations() { |
| 3046 | // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization). |
| 3047 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3048 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3049 | while (delayed_full_undeoptimization_count_ > 0) { |
| 3050 | DeoptimizationRequest req; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3051 | req.SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3052 | req.SetMethod(nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3053 | RequestDeoptimizationLocked(req); |
| 3054 | --delayed_full_undeoptimization_count_; |
| 3055 | } |
| 3056 | } |
| 3057 | ManageDeoptimization(); |
| 3058 | } |
| 3059 | |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3060 | void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3061 | if (req.GetKind() == DeoptimizationRequest::kNothing) { |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3062 | // Nothing to do. |
| 3063 | return; |
| 3064 | } |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3065 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3066 | RequestDeoptimizationLocked(req); |
| 3067 | } |
| 3068 | |
| 3069 | void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3070 | switch (req.GetKind()) { |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3071 | case DeoptimizationRequest::kRegisterForEvent: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3072 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3073 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3074 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3075 | req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3076 | if (*counter == 0) { |
Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3077 | 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] | 3078 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3079 | deoptimization_requests_.push_back(req); |
| 3080 | } |
| 3081 | *counter = *counter + 1; |
| 3082 | break; |
| 3083 | } |
| 3084 | case DeoptimizationRequest::kUnregisterForEvent: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3085 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3086 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3087 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3088 | req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3089 | *counter = *counter - 1; |
| 3090 | if (*counter == 0) { |
Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3091 | 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] | 3092 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3093 | deoptimization_requests_.push_back(req); |
| 3094 | } |
| 3095 | break; |
| 3096 | } |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3097 | case DeoptimizationRequest::kFullDeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3098 | DCHECK(req.Method() == nullptr); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3099 | if (full_deoptimization_event_count_ == 0) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3100 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3101 | << " for full deoptimization"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3102 | deoptimization_requests_.push_back(req); |
| 3103 | } |
| 3104 | ++full_deoptimization_event_count_; |
| 3105 | break; |
| 3106 | } |
| 3107 | case DeoptimizationRequest::kFullUndeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3108 | DCHECK(req.Method() == nullptr); |
Sebastien Hertz | e713d93 | 2014-05-15 10:48:53 +0200 | [diff] [blame] | 3109 | DCHECK_GT(full_deoptimization_event_count_, 0U); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3110 | --full_deoptimization_event_count_; |
| 3111 | if (full_deoptimization_event_count_ == 0) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3112 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3113 | << " for full undeoptimization"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3114 | deoptimization_requests_.push_back(req); |
| 3115 | } |
| 3116 | break; |
| 3117 | } |
| 3118 | case DeoptimizationRequest::kSelectiveDeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3119 | DCHECK(req.Method() != nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3120 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3121 | << " for deoptimization of " << PrettyMethod(req.Method()); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3122 | deoptimization_requests_.push_back(req); |
| 3123 | break; |
| 3124 | } |
| 3125 | case DeoptimizationRequest::kSelectiveUndeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3126 | DCHECK(req.Method() != nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3127 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3128 | << " for undeoptimization of " << PrettyMethod(req.Method()); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3129 | deoptimization_requests_.push_back(req); |
| 3130 | break; |
| 3131 | } |
| 3132 | default: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3133 | LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3134 | break; |
| 3135 | } |
| 3136 | } |
| 3137 | } |
| 3138 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3139 | void Dbg::ManageDeoptimization() { |
| 3140 | Thread* const self = Thread::Current(); |
| 3141 | { |
| 3142 | // Avoid suspend/resume if there is no pending request. |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3143 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3144 | if (deoptimization_requests_.empty()) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3145 | return; |
| 3146 | } |
| 3147 | } |
| 3148 | CHECK_EQ(self->GetState(), kRunnable); |
| 3149 | self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization); |
| 3150 | // We need to suspend mutator threads first. |
| 3151 | Runtime* const runtime = Runtime::Current(); |
| 3152 | runtime->GetThreadList()->SuspendAll(); |
| 3153 | const ThreadState old_state = self->SetStateUnsafe(kRunnable); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3154 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3155 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3156 | size_t req_index = 0; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3157 | for (DeoptimizationRequest& request : deoptimization_requests_) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3158 | VLOG(jdwp) << "Process deoptimization request #" << req_index++; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3159 | ProcessDeoptimizationRequest(request); |
| 3160 | } |
| 3161 | deoptimization_requests_.clear(); |
| 3162 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3163 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| 3164 | runtime->GetThreadList()->ResumeAll(); |
| 3165 | self->TransitionFromSuspendedToRunnable(); |
| 3166 | } |
| 3167 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3168 | static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m) |
| 3169 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3170 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3171 | if (code_item == nullptr) { |
| 3172 | // TODO We should not be asked to watch location in a native or abstract method so the code item |
| 3173 | // should never be null. We could just check we never encounter this case. |
| 3174 | return false; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3175 | } |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3176 | // Note: method verifier may cause thread suspension. |
| 3177 | self->AssertThreadSuspensionIsAllowable(); |
Hiroshi Yamauchi | dc37617 | 2014-08-22 11:13:12 -0700 | [diff] [blame] | 3178 | StackHandleScope<3> hs(self); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3179 | mirror::Class* declaring_class = m->GetDeclaringClass(); |
| 3180 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache())); |
| 3181 | Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader())); |
Hiroshi Yamauchi | dc37617 | 2014-08-22 11:13:12 -0700 | [diff] [blame] | 3182 | Handle<mirror::ArtMethod> method(hs.NewHandle(m)); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 3183 | verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader, |
Hiroshi Yamauchi | dc37617 | 2014-08-22 11:13:12 -0700 | [diff] [blame] | 3184 | &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method, |
Ian Rogers | 46960fe | 2014-05-23 10:43:43 -0700 | [diff] [blame] | 3185 | m->GetAccessFlags(), false, true, false); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3186 | // Note: we don't need to verify the method. |
| 3187 | return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr); |
| 3188 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3189 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3190 | static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m) |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3191 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3192 | for (Breakpoint& breakpoint : gBreakpoints) { |
| 3193 | if (breakpoint.Method() == m) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3194 | return &breakpoint; |
| 3195 | } |
| 3196 | } |
| 3197 | return nullptr; |
| 3198 | } |
| 3199 | |
| 3200 | // Sanity checks all existing breakpoints on the same method. |
| 3201 | static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization) |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3202 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3203 | for (const Breakpoint& breakpoint : gBreakpoints) { |
| 3204 | CHECK_EQ(need_full_deoptimization, breakpoint.NeedFullDeoptimization()); |
| 3205 | } |
| 3206 | if (need_full_deoptimization) { |
| 3207 | // We should have deoptimized everything but not "selectively" deoptimized this method. |
| 3208 | CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized()); |
| 3209 | CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
| 3210 | } else { |
| 3211 | // We should have "selectively" deoptimized this method. |
| 3212 | // Note: while we have not deoptimized everything for this method, we may have done it for |
| 3213 | // another event. |
| 3214 | CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3215 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3216 | } |
| 3217 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3218 | // Installs a breakpoint at the specified location. Also indicates through the deoptimization |
| 3219 | // request if we need to deoptimize. |
| 3220 | void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| 3221 | Thread* const self = Thread::Current(); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 3222 | mirror::ArtMethod* m = FromMethodId(location->method_id); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3223 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3224 | |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3225 | const Breakpoint* existing_breakpoint; |
| 3226 | { |
| 3227 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3228 | existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3229 | } |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3230 | bool need_full_deoptimization; |
| 3231 | if (existing_breakpoint == nullptr) { |
| 3232 | // There is no breakpoint on this method yet: we need to deoptimize. If this method may be |
| 3233 | // inlined, we deoptimize everything; otherwise we deoptimize only this method. |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3234 | // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension. |
| 3235 | // Therefore we must not hold any lock when we call it. |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3236 | need_full_deoptimization = IsMethodPossiblyInlined(self, m); |
| 3237 | if (need_full_deoptimization) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3238 | req->SetKind(DeoptimizationRequest::kFullDeoptimization); |
| 3239 | req->SetMethod(nullptr); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3240 | } else { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3241 | req->SetKind(DeoptimizationRequest::kSelectiveDeoptimization); |
| 3242 | req->SetMethod(m); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3243 | } |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3244 | } else { |
| 3245 | // There is at least one breakpoint for this method: we don't need to deoptimize. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3246 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3247 | req->SetMethod(nullptr); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3248 | |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3249 | need_full_deoptimization = existing_breakpoint->NeedFullDeoptimization(); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3250 | if (kIsDebugBuild) { |
| 3251 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3252 | SanityCheckExistingBreakpoints(m, need_full_deoptimization); |
| 3253 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3254 | } |
| 3255 | |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3256 | { |
| 3257 | WriterMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3258 | gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization)); |
| 3259 | VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " |
| 3260 | << gBreakpoints[gBreakpoints.size() - 1]; |
| 3261 | } |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3262 | } |
| 3263 | |
| 3264 | // Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization |
| 3265 | // request if we need to undeoptimize. |
| 3266 | void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3267 | WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3268 | mirror::ArtMethod* m = FromMethodId(location->method_id); |
| 3269 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3270 | bool need_full_deoptimization = false; |
| 3271 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3272 | if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3273 | VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3274 | need_full_deoptimization = gBreakpoints[i].NeedFullDeoptimization(); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3275 | DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
| 3276 | gBreakpoints.erase(gBreakpoints.begin() + i); |
| 3277 | break; |
| 3278 | } |
| 3279 | } |
| 3280 | const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3281 | if (existing_breakpoint == nullptr) { |
| 3282 | // There is no more breakpoint on this method: we need to undeoptimize. |
| 3283 | if (need_full_deoptimization) { |
| 3284 | // This method required full deoptimization: we need to undeoptimize everything. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3285 | req->SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3286 | req->SetMethod(nullptr); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3287 | } else { |
| 3288 | // This method required selective deoptimization: we need to undeoptimize only that method. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3289 | req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization); |
| 3290 | req->SetMethod(m); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3291 | } |
| 3292 | } else { |
| 3293 | // 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] | 3294 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3295 | req->SetMethod(nullptr); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3296 | if (kIsDebugBuild) { |
| 3297 | SanityCheckExistingBreakpoints(m, need_full_deoptimization); |
| 3298 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3299 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3300 | } |
| 3301 | |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3302 | // Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't |
| 3303 | // cause suspension if the thread is the current thread. |
| 3304 | class ScopedThreadSuspension { |
| 3305 | public: |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3306 | ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id) |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 3307 | LOCKS_EXCLUDED(Locks::thread_list_lock_) |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3308 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3309 | thread_(nullptr), |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3310 | error_(JDWP::ERR_NONE), |
| 3311 | self_suspend_(false), |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3312 | other_suspend_(false) { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3313 | ScopedObjectAccessUnchecked soa(self); |
| 3314 | { |
| 3315 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3316 | thread_ = DecodeThread(soa, thread_id, &error_); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3317 | } |
| 3318 | if (error_ == JDWP::ERR_NONE) { |
| 3319 | if (thread_ == soa.Self()) { |
| 3320 | self_suspend_ = true; |
| 3321 | } else { |
| 3322 | soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3323 | jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3324 | bool timed_out; |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3325 | Thread* suspended_thread; |
| 3326 | { |
| 3327 | // Take suspend thread lock to avoid races with threads trying to suspend this one. |
| 3328 | MutexLock mu(soa.Self(), *Locks::thread_list_suspend_thread_lock_); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 3329 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 3330 | suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out); |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3331 | } |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3332 | CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension); |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3333 | if (suspended_thread == nullptr) { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3334 | // Thread terminated from under us while suspending. |
| 3335 | error_ = JDWP::ERR_INVALID_THREAD; |
| 3336 | } else { |
| 3337 | CHECK_EQ(suspended_thread, thread_); |
| 3338 | other_suspend_ = true; |
| 3339 | } |
| 3340 | } |
| 3341 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3342 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3343 | |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3344 | Thread* GetThread() const { |
| 3345 | return thread_; |
| 3346 | } |
| 3347 | |
| 3348 | JDWP::JdwpError GetError() const { |
| 3349 | return error_; |
| 3350 | } |
| 3351 | |
| 3352 | ~ScopedThreadSuspension() { |
| 3353 | if (other_suspend_) { |
| 3354 | Runtime::Current()->GetThreadList()->Resume(thread_, true); |
| 3355 | } |
| 3356 | } |
| 3357 | |
| 3358 | private: |
| 3359 | Thread* thread_; |
| 3360 | JDWP::JdwpError error_; |
| 3361 | bool self_suspend_; |
| 3362 | bool other_suspend_; |
| 3363 | }; |
| 3364 | |
| 3365 | JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, |
| 3366 | JDWP::JdwpStepDepth step_depth) { |
| 3367 | Thread* self = Thread::Current(); |
| 3368 | ScopedThreadSuspension sts(self, thread_id); |
| 3369 | if (sts.GetError() != JDWP::ERR_NONE) { |
| 3370 | return sts.GetError(); |
| 3371 | } |
| 3372 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3373 | // |
| 3374 | // Work out what Method* we're in, the current line number, and how deep the stack currently |
| 3375 | // is for step-out. |
| 3376 | // |
| 3377 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3378 | struct SingleStepStackVisitor : public StackVisitor { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3379 | explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control, |
| 3380 | int32_t* line_number) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 3381 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3382 | : StackVisitor(thread, nullptr), single_step_control_(single_step_control), |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3383 | line_number_(line_number) { |
| 3384 | DCHECK_EQ(single_step_control_, thread->GetSingleStepControl()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3385 | single_step_control_->method = nullptr; |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3386 | single_step_control_->stack_depth = 0; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3387 | } |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 3388 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3389 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 3390 | // annotalysis. |
| 3391 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3392 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3393 | if (!m->IsRuntimeMethod()) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3394 | ++single_step_control_->stack_depth; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3395 | if (single_step_control_->method == nullptr) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 3396 | mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache(); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3397 | single_step_control_->method = m; |
| 3398 | *line_number_ = -1; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3399 | if (dex_cache != nullptr) { |
Ian Rogers | 4445a7e | 2012-10-05 17:19:13 -0700 | [diff] [blame] | 3400 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3401 | *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3402 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3403 | } |
| 3404 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3405 | return true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3406 | } |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3407 | |
| 3408 | SingleStepControl* const single_step_control_; |
| 3409 | int32_t* const line_number_; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3410 | }; |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3411 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3412 | Thread* const thread = sts.GetThread(); |
| 3413 | SingleStepControl* const single_step_control = thread->GetSingleStepControl(); |
| 3414 | DCHECK(single_step_control != nullptr); |
| 3415 | int32_t line_number = -1; |
| 3416 | SingleStepStackVisitor visitor(thread, single_step_control, &line_number); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3417 | visitor.WalkStack(); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3418 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3419 | // |
| 3420 | // Find the dex_pc values that correspond to the current line, for line-based single-stepping. |
| 3421 | // |
| 3422 | |
| 3423 | struct DebugCallbackContext { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 3424 | explicit DebugCallbackContext(SingleStepControl* single_step_control_cb, int32_t line_number_cb, |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3425 | const DexFile::CodeItem* code_item) |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 3426 | : single_step_control_(single_step_control_cb), line_number_(line_number_cb), |
| 3427 | code_item_(code_item), last_pc_valid(false), last_pc(0) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3428 | } |
| 3429 | |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 3430 | 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] | 3431 | DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context); |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 3432 | if (static_cast<int32_t>(line_number_cb) == context->line_number_) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3433 | if (!context->last_pc_valid) { |
| 3434 | // Everything from this address until the next line change is ours. |
| 3435 | context->last_pc = address; |
| 3436 | context->last_pc_valid = true; |
| 3437 | } |
| 3438 | // Otherwise, if we're already in a valid range for this line, |
| 3439 | // just keep going (shouldn't really happen)... |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3440 | } else if (context->last_pc_valid) { // and the line number is new |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3441 | // Add everything from the last entry up until here to the set |
| 3442 | for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3443 | context->single_step_control_->dex_pcs.insert(dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3444 | } |
| 3445 | context->last_pc_valid = false; |
| 3446 | } |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3447 | return false; // There may be multiple entries for any given line. |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3448 | } |
| 3449 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3450 | ~DebugCallbackContext() { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3451 | // If the line number was the last in the position table... |
| 3452 | if (last_pc_valid) { |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3453 | size_t end = code_item_->insns_size_in_code_units_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3454 | for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3455 | single_step_control_->dex_pcs.insert(dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3456 | } |
| 3457 | } |
| 3458 | } |
| 3459 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3460 | SingleStepControl* const single_step_control_; |
| 3461 | const int32_t line_number_; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3462 | const DexFile::CodeItem* const code_item_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3463 | bool last_pc_valid; |
| 3464 | uint32_t last_pc; |
| 3465 | }; |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3466 | single_step_control->dex_pcs.clear(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 3467 | mirror::ArtMethod* m = single_step_control->method; |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3468 | if (!m->IsNative()) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3469 | const DexFile::CodeItem* const code_item = m->GetCodeItem(); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3470 | DebugCallbackContext context(single_step_control, line_number, code_item); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3471 | m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3472 | DebugCallbackContext::Callback, nullptr, &context); |
Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 3473 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3474 | |
| 3475 | // |
| 3476 | // Everything else... |
| 3477 | // |
| 3478 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3479 | single_step_control->step_size = step_size; |
| 3480 | single_step_control->step_depth = step_depth; |
| 3481 | single_step_control->is_active = true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3482 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3483 | if (VLOG_IS_ON(jdwp)) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3484 | VLOG(jdwp) << "Single-step thread: " << *thread; |
| 3485 | VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size; |
| 3486 | VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth; |
| 3487 | VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method); |
| 3488 | VLOG(jdwp) << "Single-step current line: " << line_number; |
| 3489 | VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3490 | VLOG(jdwp) << "Single-step dex_pc values:"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3491 | for (uint32_t dex_pc : single_step_control->dex_pcs) { |
| 3492 | VLOG(jdwp) << StringPrintf(" %#x", dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3493 | } |
| 3494 | } |
| 3495 | |
| 3496 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3497 | } |
| 3498 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3499 | void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) { |
| 3500 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 3501 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3502 | JDWP::JdwpError error; |
| 3503 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Sebastien Hertz | 87118ed | 2013-11-26 17:57:18 +0100 | [diff] [blame] | 3504 | if (error == JDWP::ERR_NONE) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3505 | SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
| 3506 | DCHECK(single_step_control != nullptr); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3507 | single_step_control->Clear(); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3508 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3509 | } |
| 3510 | |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3511 | static char JdwpTagToShortyChar(JDWP::JdwpTag tag) { |
| 3512 | switch (tag) { |
| 3513 | default: |
| 3514 | LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag); |
Ian Rogers | fc787ec | 2014-10-09 21:56:44 -0700 | [diff] [blame] | 3515 | UNREACHABLE(); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3516 | |
| 3517 | // Primitives. |
| 3518 | case JDWP::JT_BYTE: return 'B'; |
| 3519 | case JDWP::JT_CHAR: return 'C'; |
| 3520 | case JDWP::JT_FLOAT: return 'F'; |
| 3521 | case JDWP::JT_DOUBLE: return 'D'; |
| 3522 | case JDWP::JT_INT: return 'I'; |
| 3523 | case JDWP::JT_LONG: return 'J'; |
| 3524 | case JDWP::JT_SHORT: return 'S'; |
| 3525 | case JDWP::JT_VOID: return 'V'; |
| 3526 | case JDWP::JT_BOOLEAN: return 'Z'; |
| 3527 | |
| 3528 | // Reference types. |
| 3529 | case JDWP::JT_ARRAY: |
| 3530 | case JDWP::JT_OBJECT: |
| 3531 | case JDWP::JT_STRING: |
| 3532 | case JDWP::JT_THREAD: |
| 3533 | case JDWP::JT_THREAD_GROUP: |
| 3534 | case JDWP::JT_CLASS_LOADER: |
| 3535 | case JDWP::JT_CLASS_OBJECT: |
| 3536 | return 'L'; |
| 3537 | } |
| 3538 | } |
| 3539 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 3540 | JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id, |
| 3541 | JDWP::RefTypeId class_id, JDWP::MethodId method_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3542 | uint32_t arg_count, uint64_t* arg_values, |
| 3543 | JDWP::JdwpTag* arg_types, uint32_t options, |
| 3544 | JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, |
| 3545 | JDWP::ObjectId* pExceptionId) { |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3546 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 3547 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3548 | Thread* targetThread = nullptr; |
| 3549 | DebugInvokeReq* req = nullptr; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3550 | Thread* self = Thread::Current(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3551 | { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3552 | ScopedObjectAccessUnchecked soa(self); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3553 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3554 | JDWP::JdwpError error; |
| 3555 | targetThread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 3556 | if (error != JDWP::ERR_NONE) { |
| 3557 | LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id; |
| 3558 | return error; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3559 | } |
| 3560 | req = targetThread->GetInvokeReq(); |
| 3561 | if (!req->ready) { |
| 3562 | LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread; |
| 3563 | return JDWP::ERR_INVALID_THREAD; |
| 3564 | } |
| 3565 | |
| 3566 | /* |
| 3567 | * We currently have a bug where we don't successfully resume the |
| 3568 | * target thread if the suspend count is too deep. We're expected to |
| 3569 | * require one "resume" for each "suspend", but when asked to execute |
| 3570 | * a method we have to resume fully and then re-suspend it back to the |
| 3571 | * same level. (The easiest way to cause this is to type "suspend" |
| 3572 | * multiple times in jdb.) |
| 3573 | * |
| 3574 | * It's unclear what this means when the event specifies "resume all" |
| 3575 | * and some threads are suspended more deeply than others. This is |
| 3576 | * a rare problem, so for now we just prevent it from hanging forever |
| 3577 | * by rejecting the method invocation request. Without this, we will |
| 3578 | * be stuck waiting on a suspended thread. |
| 3579 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3580 | int suspend_count; |
| 3581 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3582 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3583 | suspend_count = targetThread->GetSuspendCount(); |
| 3584 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3585 | if (suspend_count > 1) { |
| 3586 | LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3587 | return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here. |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3588 | } |
| 3589 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3590 | mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 3591 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3592 | return JDWP::ERR_INVALID_OBJECT; |
| 3593 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3594 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3595 | mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 3596 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3597 | return JDWP::ERR_INVALID_OBJECT; |
| 3598 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3599 | // TODO: check that 'thread' is actually a java.lang.Thread! |
| 3600 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3601 | mirror::Class* c = DecodeClass(class_id, &error); |
| 3602 | if (c == nullptr) { |
| 3603 | return error; |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3604 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3605 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 3606 | mirror::ArtMethod* m = FromMethodId(method_id); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3607 | if (m->IsStatic() != (receiver == nullptr)) { |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3608 | return JDWP::ERR_INVALID_METHODID; |
| 3609 | } |
| 3610 | if (m->IsStatic()) { |
| 3611 | if (m->GetDeclaringClass() != c) { |
| 3612 | return JDWP::ERR_INVALID_METHODID; |
| 3613 | } |
| 3614 | } else { |
| 3615 | if (!m->GetDeclaringClass()->IsAssignableFrom(c)) { |
| 3616 | return JDWP::ERR_INVALID_METHODID; |
| 3617 | } |
| 3618 | } |
| 3619 | |
| 3620 | // Check the argument list matches the method. |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3621 | uint32_t shorty_len = 0; |
| 3622 | const char* shorty = m->GetShorty(&shorty_len); |
| 3623 | if (shorty_len - 1 != arg_count) { |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3624 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3625 | } |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3626 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3627 | { |
| 3628 | StackHandleScope<3> hs(soa.Self()); |
| 3629 | MethodHelper mh(hs.NewHandle(m)); |
| 3630 | HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver)); |
| 3631 | HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c)); |
| 3632 | const DexFile::TypeList* types = m->GetParameterTypeList(); |
| 3633 | for (size_t i = 0; i < arg_count; ++i) { |
| 3634 | if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) { |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3635 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3636 | } |
| 3637 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3638 | if (shorty[i + 1] == 'L') { |
| 3639 | // Did we really get an argument of an appropriate reference type? |
| 3640 | mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3641 | mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error); |
| 3642 | if (error != JDWP::ERR_NONE) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3643 | return JDWP::ERR_INVALID_OBJECT; |
| 3644 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3645 | if (argument != nullptr && !argument->InstanceOf(parameter_type)) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3646 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3647 | } |
| 3648 | |
| 3649 | // Turn the on-the-wire ObjectId into a jobject. |
| 3650 | jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]); |
| 3651 | v.l = gRegistry->GetJObject(arg_values[i]); |
| 3652 | } |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3653 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3654 | // Update in case it moved. |
| 3655 | m = mh.GetMethod(); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3656 | } |
| 3657 | |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 3658 | req->receiver = receiver; |
| 3659 | req->thread = thread; |
| 3660 | req->klass = c; |
| 3661 | req->method = m; |
| 3662 | req->arg_count = arg_count; |
| 3663 | req->arg_values = arg_values; |
| 3664 | req->options = options; |
| 3665 | req->invoke_needed = true; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3666 | } |
| 3667 | |
| 3668 | // The fact that we've released the thread list lock is a bit risky --- if the thread goes |
| 3669 | // away we're sitting high and dry -- but we must release this before the ResumeAllThreads |
| 3670 | // call, and it's unwise to hold it during WaitForSuspend. |
| 3671 | |
| 3672 | { |
| 3673 | /* |
| 3674 | * We change our (JDWP thread) status, which should be THREAD_RUNNING, |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 3675 | * so we can suspend for a GC if the invoke request causes us to |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3676 | * run out of memory. It's also a good idea to change it before locking |
| 3677 | * the invokeReq mutex, although that should never be held for long. |
| 3678 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3679 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3680 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3681 | VLOG(jdwp) << " Transferring control to event thread"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3682 | { |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 3683 | MutexLock mu(self, req->lock); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3684 | |
| 3685 | if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3686 | VLOG(jdwp) << " Resuming all threads"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3687 | thread_list->UndoDebuggerSuspensions(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3688 | } else { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3689 | VLOG(jdwp) << " Resuming event thread only"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3690 | thread_list->Resume(targetThread, true); |
| 3691 | } |
| 3692 | |
| 3693 | // Wait for the request to finish executing. |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 3694 | while (req->invoke_needed) { |
| 3695 | req->cond.Wait(self); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3696 | } |
| 3697 | } |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3698 | VLOG(jdwp) << " Control has returned from event thread"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3699 | |
| 3700 | /* wait for thread to re-suspend itself */ |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 3701 | SuspendThread(thread_id, false /* request_suspension */); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3702 | self->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3703 | } |
| 3704 | |
| 3705 | /* |
| 3706 | * Suspend the threads. We waited for the target thread to suspend |
| 3707 | * itself, so all we need to do is suspend the others. |
| 3708 | * |
| 3709 | * The suspendAllThreads() call will double-suspend the event thread, |
| 3710 | * so we want to resume the target thread once to keep the books straight. |
| 3711 | */ |
| 3712 | if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3713 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3714 | VLOG(jdwp) << " Suspending all threads"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3715 | thread_list->SuspendAllForDebugger(); |
| 3716 | self->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3717 | VLOG(jdwp) << " Resuming event thread to balance the count"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3718 | thread_list->Resume(targetThread, true); |
| 3719 | } |
| 3720 | |
| 3721 | // Copy the result. |
| 3722 | *pResultTag = req->result_tag; |
| 3723 | if (IsPrimitiveTag(req->result_tag)) { |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 3724 | *pResultValue = req->result_value.GetJ(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3725 | } else { |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 3726 | *pResultValue = gRegistry->Add(req->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3727 | } |
| 3728 | *pExceptionId = req->exception; |
| 3729 | return req->error; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3730 | } |
| 3731 | |
| 3732 | void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3733 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3734 | |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 3735 | // We can be called while an exception is pending. We need |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3736 | // to preserve that across the method invocation. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3737 | StackHandleScope<4> hs(soa.Self()); |
| 3738 | auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr); |
| 3739 | auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr); |
| 3740 | auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3741 | uint32_t old_throw_dex_pc; |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 3742 | bool old_exception_report_flag; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3743 | { |
| 3744 | ThrowLocation old_throw_location; |
| 3745 | mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3746 | old_throw_this_object.Assign(old_throw_location.GetThis()); |
| 3747 | old_throw_method.Assign(old_throw_location.GetMethod()); |
| 3748 | old_exception.Assign(old_exception_obj); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3749 | old_throw_dex_pc = old_throw_location.GetDexPc(); |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 3750 | old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3751 | soa.Self()->ClearException(); |
| 3752 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3753 | |
| 3754 | // Translate the method through the vtable, unless the debugger wants to suppress it. |
Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 3755 | MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3756 | if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3757 | mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get()); |
| 3758 | if (actual_method != m.Get()) { |
| 3759 | VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method); |
| 3760 | m.Assign(actual_method); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3761 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3762 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3763 | VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get()) |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 3764 | << " receiver=" << pReq->receiver |
| 3765 | << " arg_count=" << pReq->arg_count; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3766 | CHECK(m.Get() != nullptr); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3767 | |
| 3768 | CHECK_EQ(sizeof(jvalue), sizeof(uint64_t)); |
| 3769 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3770 | pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()), |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 3771 | reinterpret_cast<jvalue*>(pReq->arg_values)); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3772 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3773 | mirror::Throwable* exception = soa.Self()->GetException(nullptr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3774 | soa.Self()->ClearException(); |
| 3775 | pReq->exception = gRegistry->Add(exception); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3776 | pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3777 | if (pReq->exception != 0) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3778 | VLOG(jdwp) << " JDWP invocation returning with exception=" << exception |
| 3779 | << " " << exception->Dump(); |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 3780 | pReq->result_value.SetJ(0); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3781 | } else if (pReq->result_tag == JDWP::JT_OBJECT) { |
| 3782 | /* if no exception thrown, examine object result more closely */ |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 3783 | JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3784 | if (new_tag != pReq->result_tag) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3785 | VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3786 | pReq->result_tag = new_tag; |
| 3787 | } |
| 3788 | |
| 3789 | /* |
| 3790 | * Register the object. We don't actually need an ObjectId yet, |
| 3791 | * but we do need to be sure that the GC won't move or discard the |
| 3792 | * object when we switch out of RUNNING. The ObjectId conversion |
| 3793 | * will add the object to the "do not touch" list. |
| 3794 | * |
| 3795 | * We can't use the "tracked allocation" mechanism here because |
| 3796 | * the object is going to be handed off to a different thread. |
| 3797 | */ |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 3798 | gRegistry->Add(pReq->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3799 | } |
| 3800 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3801 | if (old_exception.Get() != nullptr) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3802 | ThrowLocation gc_safe_throw_location(old_throw_this_object.Get(), old_throw_method.Get(), |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3803 | old_throw_dex_pc); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3804 | soa.Self()->SetException(gc_safe_throw_location, old_exception.Get()); |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 3805 | soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3806 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3807 | } |
| 3808 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3809 | /* |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3810 | * "request" contains a full JDWP packet, possibly with multiple chunks. We |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3811 | * need to process each, accumulate the replies, and ship the whole thing |
| 3812 | * back. |
| 3813 | * |
| 3814 | * Returns "true" if we have a reply. The reply buffer is newly allocated, |
| 3815 | * and includes the chunk type/length, followed by the data. |
| 3816 | * |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 3817 | * 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] | 3818 | * chunk. If this becomes inconvenient we will need to adapt. |
| 3819 | */ |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3820 | bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3821 | Thread* self = Thread::Current(); |
| 3822 | JNIEnv* env = self->GetJniEnv(); |
| 3823 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3824 | uint32_t type = request->ReadUnsigned32("type"); |
| 3825 | uint32_t length = request->ReadUnsigned32("length"); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3826 | |
| 3827 | // Create a byte[] corresponding to 'request'. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3828 | size_t request_length = request->size(); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3829 | ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3830 | if (dataArray.get() == nullptr) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3831 | LOG(WARNING) << "byte[] allocation failed: " << request_length; |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3832 | env->ExceptionClear(); |
| 3833 | return false; |
| 3834 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3835 | env->SetByteArrayRegion(dataArray.get(), 0, request_length, |
| 3836 | reinterpret_cast<const jbyte*>(request->data())); |
| 3837 | request->Skip(request_length); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3838 | |
| 3839 | // Run through and find all chunks. [Currently just find the first.] |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3840 | ScopedByteArrayRO contents(env, dataArray.get()); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3841 | if (length != request_length) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 3842 | 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] | 3843 | return false; |
| 3844 | } |
| 3845 | |
| 3846 | // 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] | 3847 | ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 3848 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch, |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3849 | type, dataArray.get(), 0, length)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3850 | if (env->ExceptionCheck()) { |
| 3851 | LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type); |
| 3852 | env->ExceptionDescribe(); |
| 3853 | env->ExceptionClear(); |
| 3854 | return false; |
| 3855 | } |
| 3856 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3857 | if (chunk.get() == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3858 | return false; |
| 3859 | } |
| 3860 | |
| 3861 | /* |
| 3862 | * Pull the pieces out of the chunk. We copy the results into a |
| 3863 | * newly-allocated buffer that the caller can free. We don't want to |
| 3864 | * continue using the Chunk object because nothing has a reference to it. |
| 3865 | * |
| 3866 | * We could avoid this by returning type/data/offset/length and having |
| 3867 | * the caller be aware of the object lifetime issues, but that |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 3868 | * 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] | 3869 | * if we have responses for multiple chunks. |
| 3870 | * |
| 3871 | * So we're pretty much stuck with copying data around multiple times. |
| 3872 | */ |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 3873 | 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] | 3874 | 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] | 3875 | 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] | 3876 | 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] | 3877 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3878 | 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] | 3879 | if (length == 0 || replyData.get() == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3880 | return false; |
| 3881 | } |
| 3882 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3883 | const int kChunkHdrLen = 8; |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3884 | uint8_t* reply = new uint8_t[length + kChunkHdrLen]; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3885 | if (reply == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3886 | LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen); |
| 3887 | return false; |
| 3888 | } |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 3889 | JDWP::Set4BE(reply + 0, type); |
| 3890 | JDWP::Set4BE(reply + 4, length); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3891 | env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3892 | |
| 3893 | *pReplyBuf = reply; |
| 3894 | *pReplyLen = length + kChunkHdrLen; |
| 3895 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3896 | 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] | 3897 | return true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3898 | } |
| 3899 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3900 | void Dbg::DdmBroadcast(bool connect) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3901 | VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3902 | |
| 3903 | Thread* self = Thread::Current(); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3904 | if (self->GetState() != kRunnable) { |
| 3905 | LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); |
| 3906 | /* try anyway? */ |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3907 | } |
| 3908 | |
| 3909 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3910 | jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 3911 | env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 3912 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast, |
| 3913 | event); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3914 | if (env->ExceptionCheck()) { |
| 3915 | LOG(ERROR) << "DdmServer.broadcast " << event << " failed"; |
| 3916 | env->ExceptionDescribe(); |
| 3917 | env->ExceptionClear(); |
| 3918 | } |
| 3919 | } |
| 3920 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3921 | void Dbg::DdmConnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3922 | Dbg::DdmBroadcast(true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3923 | } |
| 3924 | |
| 3925 | void Dbg::DdmDisconnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3926 | Dbg::DdmBroadcast(false); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3927 | gDdmThreadNotification = false; |
| 3928 | } |
| 3929 | |
| 3930 | /* |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3931 | * Send a notification when a thread starts, stops, or changes its name. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3932 | * |
| 3933 | * Because we broadcast the full set of threads when the notifications are |
| 3934 | * first enabled, it's possible for "thread" to be actively executing. |
| 3935 | */ |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3936 | void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3937 | if (!gDdmThreadNotification) { |
| 3938 | return; |
| 3939 | } |
| 3940 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3941 | if (type == CHUNK_TYPE("THDE")) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3942 | uint8_t buf[4]; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 3943 | JDWP::Set4BE(&buf[0], t->GetThreadId()); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3944 | Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf); |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3945 | } else { |
| 3946 | CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3947 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3948 | StackHandleScope<1> hs(soa.Self()); |
| 3949 | Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa))); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3950 | size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0; |
| 3951 | const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr; |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3952 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 3953 | std::vector<uint8_t> bytes; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 3954 | JDWP::Append4BE(bytes, t->GetThreadId()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3955 | JDWP::AppendUtf16BE(bytes, chars, char_count); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 3956 | CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2); |
| 3957 | Dbg::DdmSendChunk(type, bytes); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3958 | } |
| 3959 | } |
| 3960 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3961 | void Dbg::DdmSetThreadNotification(bool enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3962 | // Enable/disable thread notifications. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3963 | gDdmThreadNotification = enable; |
| 3964 | if (enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3965 | // Suspend the VM then post thread start notifications for all threads. Threads attaching will |
| 3966 | // see a suspension in progress and block until that ends. They then post their own start |
| 3967 | // notification. |
| 3968 | SuspendVM(); |
| 3969 | std::list<Thread*> threads; |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3970 | Thread* self = Thread::Current(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3971 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3972 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3973 | threads = Runtime::Current()->GetThreadList()->GetList(); |
| 3974 | } |
| 3975 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3976 | ScopedObjectAccess soa(self); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 3977 | for (Thread* thread : threads) { |
| 3978 | Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR")); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3979 | } |
| 3980 | } |
| 3981 | ResumeVM(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3982 | } |
| 3983 | } |
| 3984 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3985 | void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3986 | if (IsDebuggerActive()) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3987 | gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3988 | } |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3989 | Dbg::DdmSendThreadNotification(t, type); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3990 | } |
| 3991 | |
| 3992 | void Dbg::PostThreadStart(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3993 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3994 | } |
| 3995 | |
| 3996 | void Dbg::PostThreadDeath(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3997 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE")); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3998 | } |
| 3999 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 4000 | 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] | 4001 | CHECK(buf != nullptr); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4002 | iovec vec[1]; |
| 4003 | vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf)); |
| 4004 | vec[0].iov_len = byte_count; |
| 4005 | Dbg::DdmSendChunkV(type, vec, 1); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4006 | } |
| 4007 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4008 | void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) { |
| 4009 | DdmSendChunk(type, bytes.size(), &bytes[0]); |
| 4010 | } |
| 4011 | |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 4012 | void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4013 | if (gJdwpState == nullptr) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4014 | VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4015 | } else { |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 4016 | gJdwpState->DdmSendChunkV(type, iov, iov_count); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4017 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4018 | } |
| 4019 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4020 | int Dbg::DdmHandleHpifChunk(HpifWhen when) { |
| 4021 | if (when == HPIF_WHEN_NOW) { |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4022 | DdmSendHeapInfo(when); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4023 | return true; |
| 4024 | } |
| 4025 | |
| 4026 | if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) { |
| 4027 | LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when); |
| 4028 | return false; |
| 4029 | } |
| 4030 | |
| 4031 | gDdmHpifWhen = when; |
| 4032 | return true; |
| 4033 | } |
| 4034 | |
| 4035 | bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { |
| 4036 | if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) { |
| 4037 | LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when); |
| 4038 | return false; |
| 4039 | } |
| 4040 | |
| 4041 | if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { |
| 4042 | LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); |
| 4043 | return false; |
| 4044 | } |
| 4045 | |
| 4046 | if (native) { |
| 4047 | gDdmNhsgWhen = when; |
| 4048 | gDdmNhsgWhat = what; |
| 4049 | } else { |
| 4050 | gDdmHpsgWhen = when; |
| 4051 | gDdmHpsgWhat = what; |
| 4052 | } |
| 4053 | return true; |
| 4054 | } |
| 4055 | |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4056 | void Dbg::DdmSendHeapInfo(HpifWhen reason) { |
| 4057 | // If there's a one-shot 'when', reset it. |
| 4058 | if (reason == gDdmHpifWhen) { |
| 4059 | if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) { |
| 4060 | gDdmHpifWhen = HPIF_WHEN_NEVER; |
| 4061 | } |
| 4062 | } |
| 4063 | |
| 4064 | /* |
| 4065 | * Chunk HPIF (client --> server) |
| 4066 | * |
| 4067 | * Heap Info. General information about the heap, |
| 4068 | * suitable for a summary display. |
| 4069 | * |
| 4070 | * [u4]: number of heaps |
| 4071 | * |
| 4072 | * For each heap: |
| 4073 | * [u4]: heap ID |
| 4074 | * [u8]: timestamp in ms since Unix epoch |
| 4075 | * [u1]: capture reason (same as 'when' value from server) |
| 4076 | * [u4]: max heap size in bytes (-Xmx) |
| 4077 | * [u4]: current heap size in bytes |
| 4078 | * [u4]: current number of bytes allocated |
| 4079 | * [u4]: current number of objects allocated |
| 4080 | */ |
| 4081 | uint8_t heap_count = 1; |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4082 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4083 | std::vector<uint8_t> bytes; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4084 | JDWP::Append4BE(bytes, heap_count); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4085 | JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap). |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4086 | JDWP::Append8BE(bytes, MilliTime()); |
| 4087 | JDWP::Append1BE(bytes, reason); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4088 | JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes. |
| 4089 | JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 4090 | JDWP::Append4BE(bytes, heap->GetBytesAllocated()); |
| 4091 | JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4092 | CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4))); |
| 4093 | Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4094 | } |
| 4095 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4096 | enum HpsgSolidity { |
| 4097 | SOLIDITY_FREE = 0, |
| 4098 | SOLIDITY_HARD = 1, |
| 4099 | SOLIDITY_SOFT = 2, |
| 4100 | SOLIDITY_WEAK = 3, |
| 4101 | SOLIDITY_PHANTOM = 4, |
| 4102 | SOLIDITY_FINALIZABLE = 5, |
| 4103 | SOLIDITY_SWEEP = 6, |
| 4104 | }; |
| 4105 | |
| 4106 | enum HpsgKind { |
| 4107 | KIND_OBJECT = 0, |
| 4108 | KIND_CLASS_OBJECT = 1, |
| 4109 | KIND_ARRAY_1 = 2, |
| 4110 | KIND_ARRAY_2 = 3, |
| 4111 | KIND_ARRAY_4 = 4, |
| 4112 | KIND_ARRAY_8 = 5, |
| 4113 | KIND_UNKNOWN = 6, |
| 4114 | KIND_NATIVE = 7, |
| 4115 | }; |
| 4116 | |
| 4117 | #define HPSG_PARTIAL (1<<7) |
| 4118 | #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7))) |
| 4119 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4120 | class HeapChunkContext { |
| 4121 | public: |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4122 | // Maximum chunk size. Obtain this from the formula: |
| 4123 | // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2 |
| 4124 | HeapChunkContext(bool merge, bool native) |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4125 | : buf_(16384 - 16), |
| 4126 | type_(0), |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4127 | chunk_overhead_(0) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4128 | Reset(); |
| 4129 | if (native) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4130 | type_ = CHUNK_TYPE("NHSG"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4131 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4132 | type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4133 | } |
| 4134 | } |
| 4135 | |
| 4136 | ~HeapChunkContext() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4137 | if (p_ > &buf_[0]) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4138 | Flush(); |
| 4139 | } |
| 4140 | } |
| 4141 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4142 | void SetChunkOverhead(size_t chunk_overhead) { |
| 4143 | chunk_overhead_ = chunk_overhead; |
| 4144 | } |
| 4145 | |
| 4146 | void ResetStartOfNextChunk() { |
| 4147 | startOfNextMemoryChunk_ = nullptr; |
| 4148 | } |
| 4149 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4150 | void EnsureHeader(const void* chunk_ptr) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4151 | if (!needHeader_) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4152 | return; |
| 4153 | } |
| 4154 | |
| 4155 | // Start a new HPSx chunk. |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4156 | JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). |
| 4157 | JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4158 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4159 | JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. |
| 4160 | 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] | 4161 | // [u4]: length of piece, in allocation units |
| 4162 | // 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] | 4163 | pieceLenField_ = p_; |
| 4164 | JDWP::Write4BE(&p_, 0x55555555); |
| 4165 | needHeader_ = false; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4166 | } |
| 4167 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4168 | void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4169 | if (pieceLenField_ == nullptr) { |
Ian Rogers | d636b06 | 2013-01-18 17:51:18 -0800 | [diff] [blame] | 4170 | // Flush immediately post Reset (maybe back-to-back Flush). Ignore. |
| 4171 | CHECK(needHeader_); |
| 4172 | return; |
| 4173 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4174 | // Patch the "length of piece" field. |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4175 | CHECK_LE(&buf_[0], pieceLenField_); |
| 4176 | CHECK_LE(pieceLenField_, p_); |
| 4177 | JDWP::Set4BE(pieceLenField_, totalAllocationUnits_); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4178 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4179 | Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4180 | Reset(); |
| 4181 | } |
| 4182 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4183 | static void HeapChunkCallback(void* start, void* end, size_t used_bytes, void* arg) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4184 | SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, |
| 4185 | Locks::mutator_lock_) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4186 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4187 | } |
| 4188 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4189 | private: |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4190 | enum { ALLOCATION_UNIT_SIZE = 8 }; |
| 4191 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4192 | void Reset() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4193 | p_ = &buf_[0]; |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4194 | ResetStartOfNextChunk(); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4195 | totalAllocationUnits_ = 0; |
| 4196 | needHeader_ = true; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4197 | pieceLenField_ = nullptr; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4198 | } |
| 4199 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4200 | void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4201 | SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, |
| 4202 | Locks::mutator_lock_) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4203 | // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken |
| 4204 | // 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] | 4205 | if (used_bytes == 0) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4206 | if (start == nullptr) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4207 | // Reset for start of new heap. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4208 | startOfNextMemoryChunk_ = nullptr; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4209 | Flush(); |
| 4210 | } |
| 4211 | // Only process in use memory so that free region information |
| 4212 | // also includes dlmalloc book keeping. |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4213 | return; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4214 | } |
| 4215 | |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4216 | /* If we're looking at the native heap, we'll just return |
| 4217 | * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks |
| 4218 | */ |
| 4219 | bool native = type_ == CHUNK_TYPE("NHSG"); |
| 4220 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4221 | // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't |
| 4222 | // count gaps inbetween spaces as free memory. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4223 | if (startOfNextMemoryChunk_ != nullptr) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4224 | // Transmit any pending free memory. Native free memory of |
| 4225 | // over kMaxFreeLen could be because of the use of mmaps, so |
| 4226 | // don't report. If not free memory then start a new segment. |
| 4227 | bool flush = true; |
| 4228 | if (start > startOfNextMemoryChunk_) { |
| 4229 | const size_t kMaxFreeLen = 2 * kPageSize; |
| 4230 | void* freeStart = startOfNextMemoryChunk_; |
| 4231 | void* freeEnd = start; |
Brian Carlstrom | 2d88862 | 2013-07-18 17:02:00 -0700 | [diff] [blame] | 4232 | size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart); |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4233 | if (!native || freeLen < kMaxFreeLen) { |
| 4234 | AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen); |
| 4235 | flush = false; |
| 4236 | } |
| 4237 | } |
| 4238 | if (flush) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4239 | startOfNextMemoryChunk_ = nullptr; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4240 | Flush(); |
| 4241 | } |
| 4242 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 4243 | mirror::Object* obj = reinterpret_cast<mirror::Object*>(start); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4244 | |
| 4245 | // Determine the type of this chunk. |
| 4246 | // OLD-TODO: if context.merge, see if this chunk is different from the last chunk. |
| 4247 | // If it's the same, we should combine them. |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4248 | uint8_t state = ExamineObject(obj, native); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4249 | AppendChunk(state, start, used_bytes + chunk_overhead_); |
| 4250 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4251 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4252 | |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4253 | void AppendChunk(uint8_t state, void* ptr, size_t length) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4254 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4255 | // Make sure there's enough room left in the buffer. |
| 4256 | // We need to use two bytes for every fractional 256 allocation units used by the chunk plus |
| 4257 | // 17 bytes for any header. |
| 4258 | size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17; |
| 4259 | size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); |
| 4260 | if (bytesLeft < needed) { |
| 4261 | Flush(); |
| 4262 | } |
| 4263 | |
| 4264 | bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); |
| 4265 | if (bytesLeft < needed) { |
| 4266 | LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", " |
| 4267 | << needed << " bytes)"; |
| 4268 | return; |
| 4269 | } |
| 4270 | EnsureHeader(ptr); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4271 | // Write out the chunk description. |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4272 | length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units. |
| 4273 | totalAllocationUnits_ += length; |
| 4274 | while (length > 256) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4275 | *p_++ = state | HPSG_PARTIAL; |
| 4276 | *p_++ = 255; // length - 1 |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4277 | length -= 256; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4278 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4279 | *p_++ = state; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4280 | *p_++ = length - 1; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4281 | } |
| 4282 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 4283 | uint8_t ExamineObject(mirror::Object* o, bool is_native_heap) |
| 4284 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4285 | if (o == nullptr) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4286 | return HPSG_STATE(SOLIDITY_FREE, 0); |
| 4287 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4288 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4289 | // It's an allocated chunk. Figure out what it is. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4290 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4291 | // If we're looking at the native heap, we'll just return |
| 4292 | // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4293 | if (is_native_heap) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4294 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4295 | } |
| 4296 | |
Ian Rogers | 5bfa60f | 2012-09-02 21:17:56 -0700 | [diff] [blame] | 4297 | if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4298 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4299 | } |
| 4300 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 4301 | mirror::Class* c = o->GetClass(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4302 | if (c == nullptr) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4303 | // The object was probably just created but hasn't been initialized yet. |
| 4304 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4305 | } |
| 4306 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 4307 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4308 | LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4309 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4310 | } |
| 4311 | |
| 4312 | if (c->IsClassClass()) { |
| 4313 | return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT); |
| 4314 | } |
| 4315 | |
| 4316 | if (c->IsArrayClass()) { |
| 4317 | if (o->IsObjectArray()) { |
| 4318 | return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4319 | } |
| 4320 | switch (c->GetComponentSize()) { |
| 4321 | case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1); |
| 4322 | case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2); |
| 4323 | case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4324 | case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8); |
| 4325 | } |
| 4326 | } |
| 4327 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4328 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4329 | } |
| 4330 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4331 | std::vector<uint8_t> buf_; |
| 4332 | uint8_t* p_; |
| 4333 | uint8_t* pieceLenField_; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4334 | void* startOfNextMemoryChunk_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4335 | size_t totalAllocationUnits_; |
| 4336 | uint32_t type_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4337 | bool needHeader_; |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4338 | size_t chunk_overhead_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4339 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4340 | DISALLOW_COPY_AND_ASSIGN(HeapChunkContext); |
| 4341 | }; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4342 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4343 | static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg) |
| 4344 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) { |
| 4345 | const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment); |
| 4346 | HeapChunkContext::HeapChunkCallback( |
| 4347 | obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg); |
| 4348 | } |
| 4349 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4350 | void Dbg::DdmSendHeapSegments(bool native) { |
| 4351 | Dbg::HpsgWhen when; |
| 4352 | Dbg::HpsgWhat what; |
| 4353 | if (!native) { |
| 4354 | when = gDdmHpsgWhen; |
| 4355 | what = gDdmHpsgWhat; |
| 4356 | } else { |
| 4357 | when = gDdmNhsgWhen; |
| 4358 | what = gDdmNhsgWhat; |
| 4359 | } |
| 4360 | if (when == HPSG_WHEN_NEVER) { |
| 4361 | return; |
| 4362 | } |
| 4363 | |
| 4364 | // Figure out what kind of chunks we'll be sending. |
| 4365 | CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what); |
| 4366 | |
| 4367 | // First, send a heap start chunk. |
| 4368 | uint8_t heap_id[4]; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4369 | 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] | 4370 | Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id); |
| 4371 | |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4372 | Thread* self = Thread::Current(); |
| 4373 | |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4374 | Locks::mutator_lock_->AssertSharedHeld(self); |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4375 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4376 | // Send a series of heap segment chunks. |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4377 | HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native); |
| 4378 | if (native) { |
Ian Rogers | 872dd82 | 2014-10-30 11:19:14 -0700 | [diff] [blame] | 4379 | #if defined(HAVE_ANDROID_OS) && defined(USE_DLMALLOC) |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4380 | dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context); |
Christopher Ferris | c4ddc04 | 2014-05-13 14:47:50 -0700 | [diff] [blame] | 4381 | #else |
| 4382 | UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc"; |
| 4383 | #endif |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4384 | } else { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4385 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4386 | for (const auto& space : heap->GetContinuousSpaces()) { |
| 4387 | if (space->IsDlMallocSpace()) { |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4388 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4389 | // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an |
| 4390 | // allocation then the first sizeof(size_t) may belong to it. |
| 4391 | context.SetChunkOverhead(sizeof(size_t)); |
| 4392 | space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); |
| 4393 | } else if (space->IsRosAllocSpace()) { |
| 4394 | context.SetChunkOverhead(0); |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4395 | // Need to acquire the mutator lock before the heap bitmap lock with exclusive access since |
| 4396 | // RosAlloc's internal logic doesn't know to release and reacquire the heap bitmap lock. |
| 4397 | self->TransitionFromRunnableToSuspended(kSuspended); |
| 4398 | ThreadList* tl = Runtime::Current()->GetThreadList(); |
| 4399 | tl->SuspendAll(); |
| 4400 | { |
| 4401 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
| 4402 | space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); |
| 4403 | } |
| 4404 | tl->ResumeAll(); |
| 4405 | self->TransitionFromSuspendedToRunnable(); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4406 | } else if (space->IsBumpPointerSpace()) { |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4407 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4408 | context.SetChunkOverhead(0); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4409 | space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context); |
| 4410 | } else { |
| 4411 | UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space; |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4412 | } |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4413 | context.ResetStartOfNextChunk(); |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4414 | } |
Mathieu Chartier | 4c69d7f | 2014-10-10 12:45:50 -0700 | [diff] [blame] | 4415 | ReaderMutexLock mu(self, *Locks::heap_bitmap_lock_); |
Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4416 | // Walk the large objects, these are not in the AllocSpace. |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4417 | context.SetChunkOverhead(0); |
Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4418 | heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4419 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4420 | |
| 4421 | // Finally, send a heap end chunk. |
| 4422 | 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] | 4423 | } |
| 4424 | |
Elliott Hughes | b1a5879 | 2013-07-11 18:10:58 -0700 | [diff] [blame] | 4425 | static size_t GetAllocTrackerMax() { |
| 4426 | #ifdef HAVE_ANDROID_OS |
| 4427 | // Check whether there's a system property overriding the number of records. |
| 4428 | const char* propertyName = "dalvik.vm.allocTrackerMax"; |
| 4429 | char allocRecordMaxString[PROPERTY_VALUE_MAX]; |
| 4430 | if (property_get(propertyName, allocRecordMaxString, "") > 0) { |
| 4431 | char* end; |
| 4432 | size_t value = strtoul(allocRecordMaxString, &end, 10); |
| 4433 | if (*end != '\0') { |
Ruben Brunk | 3e47a74 | 2013-09-09 17:56:07 -0700 | [diff] [blame] | 4434 | LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString |
| 4435 | << "' --- invalid"; |
Elliott Hughes | b1a5879 | 2013-07-11 18:10:58 -0700 | [diff] [blame] | 4436 | return kDefaultNumAllocRecords; |
| 4437 | } |
| 4438 | if (!IsPowerOfTwo(value)) { |
Ruben Brunk | 3e47a74 | 2013-09-09 17:56:07 -0700 | [diff] [blame] | 4439 | LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString |
| 4440 | << "' --- not power of two"; |
Elliott Hughes | b1a5879 | 2013-07-11 18:10:58 -0700 | [diff] [blame] | 4441 | return kDefaultNumAllocRecords; |
| 4442 | } |
| 4443 | return value; |
| 4444 | } |
| 4445 | #endif |
| 4446 | return kDefaultNumAllocRecords; |
| 4447 | } |
| 4448 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4449 | void Dbg::SetAllocTrackingEnabled(bool enable) { |
| 4450 | Thread* self = Thread::Current(); |
| 4451 | if (enable) { |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4452 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4453 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
| 4454 | if (recent_allocation_records_ != nullptr) { |
| 4455 | return; // Already enabled, bail. |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4456 | } |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4457 | alloc_record_max_ = GetAllocTrackerMax(); |
| 4458 | LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of " |
| 4459 | << kMaxAllocRecordStackDepth << " frames, taking " |
| 4460 | << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")"; |
| 4461 | DCHECK_EQ(alloc_record_head_, 0U); |
| 4462 | DCHECK_EQ(alloc_record_count_, 0U); |
| 4463 | recent_allocation_records_ = new AllocRecord[alloc_record_max_]; |
| 4464 | CHECK(recent_allocation_records_ != nullptr); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4465 | } |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 4466 | Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4467 | } else { |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4468 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4469 | ScopedObjectAccess soa(self); // For type_cache_.Clear(); |
| 4470 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
| 4471 | if (recent_allocation_records_ == nullptr) { |
| 4472 | return; // Already disabled, bail. |
| 4473 | } |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4474 | LOG(INFO) << "Disabling alloc tracker"; |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4475 | delete[] recent_allocation_records_; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4476 | recent_allocation_records_ = nullptr; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4477 | alloc_record_head_ = 0; |
| 4478 | alloc_record_count_ = 0; |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4479 | type_cache_.Clear(); |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4480 | } |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4481 | // If an allocation comes in before we uninstrument, we will safely drop it on the floor. |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 4482 | Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4483 | } |
| 4484 | } |
| 4485 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 4486 | struct AllocRecordStackVisitor : public StackVisitor { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 4487 | AllocRecordStackVisitor(Thread* thread, AllocRecord* record_in) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4488 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 4489 | : StackVisitor(thread, nullptr), record(record_in), depth(0) {} |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4490 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4491 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 4492 | // annotalysis. |
| 4493 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4494 | if (depth >= kMaxAllocRecordStackDepth) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 4495 | return false; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4496 | } |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 4497 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 4498 | if (!m->IsRuntimeMethod()) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4499 | record->StackElement(depth)->SetMethod(m); |
| 4500 | record->StackElement(depth)->SetDexPc(GetDexPc()); |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 4501 | ++depth; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4502 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 4503 | return true; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4504 | } |
| 4505 | |
| 4506 | ~AllocRecordStackVisitor() { |
| 4507 | // Clear out any unused stack trace elements. |
| 4508 | for (; depth < kMaxAllocRecordStackDepth; ++depth) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4509 | record->StackElement(depth)->SetMethod(nullptr); |
| 4510 | record->StackElement(depth)->SetDexPc(0); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4511 | } |
| 4512 | } |
| 4513 | |
| 4514 | AllocRecord* record; |
| 4515 | size_t depth; |
| 4516 | }; |
| 4517 | |
Ian Rogers | 844506b | 2014-09-12 19:59:33 -0700 | [diff] [blame] | 4518 | void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4519 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4520 | if (recent_allocation_records_ == nullptr) { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4521 | // In the process of shutting down recording, bail. |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4522 | return; |
| 4523 | } |
| 4524 | |
| 4525 | // Advance and clip. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4526 | if (++alloc_record_head_ == alloc_record_max_) { |
| 4527 | alloc_record_head_ = 0; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4528 | } |
| 4529 | |
| 4530 | // Fill in the basics. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4531 | AllocRecord* record = &recent_allocation_records_[alloc_record_head_]; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4532 | record->SetType(type); |
| 4533 | record->SetByteCount(byte_count); |
| 4534 | record->SetThinLockId(self->GetThreadId()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4535 | |
| 4536 | // Fill in the stack trace. |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 4537 | AllocRecordStackVisitor visitor(self, record); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 4538 | visitor.WalkStack(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4539 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4540 | if (alloc_record_count_ < alloc_record_max_) { |
| 4541 | ++alloc_record_count_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4542 | } |
| 4543 | } |
| 4544 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4545 | // Returns the index of the head element. |
| 4546 | // |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4547 | // We point at the most-recently-written record, so if alloc_record_count_ is 1 |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4548 | // we want to use the current element. Take "head+1" and subtract count |
| 4549 | // from it. |
| 4550 | // |
| 4551 | // We need to handle underflow in our circular buffer, so we add |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4552 | // alloc_record_max_ and then mask it back down. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4553 | size_t Dbg::HeadIndex() { |
| 4554 | return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) & |
| 4555 | (Dbg::alloc_record_max_ - 1); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4556 | } |
| 4557 | |
| 4558 | void Dbg::DumpRecentAllocations() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4559 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4560 | MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4561 | if (recent_allocation_records_ == nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4562 | LOG(INFO) << "Not recording tracked allocations"; |
| 4563 | return; |
| 4564 | } |
| 4565 | |
| 4566 | // "i" is the head of the list. We want to start at the end of the |
| 4567 | // list and move forward to the tail. |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4568 | size_t i = HeadIndex(); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4569 | const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_); |
| 4570 | uint16_t count = capped_count; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4571 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4572 | LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")"; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4573 | while (count--) { |
| 4574 | AllocRecord* record = &recent_allocation_records_[i]; |
| 4575 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4576 | LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount()) |
| 4577 | << PrettyClass(record->Type()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4578 | |
| 4579 | for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4580 | AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame); |
| 4581 | mirror::ArtMethod* m = stack_element->Method(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4582 | if (m == nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4583 | break; |
| 4584 | } |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4585 | LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4586 | } |
| 4587 | |
| 4588 | // pause periodically to help logcat catch up |
| 4589 | if ((count % 5) == 0) { |
| 4590 | usleep(40000); |
| 4591 | } |
| 4592 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4593 | i = (i + 1) & (alloc_record_max_ - 1); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4594 | } |
| 4595 | } |
| 4596 | |
| 4597 | class StringTable { |
| 4598 | public: |
| 4599 | StringTable() { |
| 4600 | } |
| 4601 | |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4602 | void Add(const std::string& str) { |
| 4603 | table_.insert(str); |
| 4604 | } |
| 4605 | |
| 4606 | void Add(const char* str) { |
| 4607 | table_.insert(str); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4608 | } |
| 4609 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4610 | size_t IndexOf(const char* s) const { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4611 | auto it = table_.find(s); |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4612 | if (it == table_.end()) { |
| 4613 | LOG(FATAL) << "IndexOf(\"" << s << "\") failed"; |
| 4614 | } |
| 4615 | return std::distance(table_.begin(), it); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4616 | } |
| 4617 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4618 | size_t Size() const { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4619 | return table_.size(); |
| 4620 | } |
| 4621 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4622 | void WriteTo(std::vector<uint8_t>& bytes) const { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4623 | for (const std::string& str : table_) { |
| 4624 | const char* s = str.c_str(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 4625 | size_t s_len = CountModifiedUtf8Chars(s); |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 4626 | std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 4627 | ConvertModifiedUtf8ToUtf16(s_utf16.get(), s); |
| 4628 | JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4629 | } |
| 4630 | } |
| 4631 | |
| 4632 | private: |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4633 | std::set<std::string> table_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4634 | DISALLOW_COPY_AND_ASSIGN(StringTable); |
| 4635 | }; |
| 4636 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4637 | static const char* GetMethodSourceFile(mirror::ArtMethod* method) |
Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 4638 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4639 | DCHECK(method != nullptr); |
| 4640 | const char* source_file = method->GetDeclaringClassSourceFile(); |
Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 4641 | return (source_file != nullptr) ? source_file : ""; |
| 4642 | } |
| 4643 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4644 | /* |
| 4645 | * The data we send to DDMS contains everything we have recorded. |
| 4646 | * |
| 4647 | * Message header (all values big-endian): |
| 4648 | * (1b) message header len (to allow future expansion); includes itself |
| 4649 | * (1b) entry header len |
| 4650 | * (1b) stack frame len |
| 4651 | * (2b) number of entries |
| 4652 | * (4b) offset to string table from start of message |
| 4653 | * (2b) number of class name strings |
| 4654 | * (2b) number of method name strings |
| 4655 | * (2b) number of source file name strings |
| 4656 | * For each entry: |
| 4657 | * (4b) total allocation size |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 4658 | * (2b) thread id |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4659 | * (2b) allocated object's class name index |
| 4660 | * (1b) stack depth |
| 4661 | * For each stack frame: |
| 4662 | * (2b) method's class name |
| 4663 | * (2b) method name |
| 4664 | * (2b) method source file |
| 4665 | * (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| 4666 | * (xb) class name strings |
| 4667 | * (xb) method name strings |
| 4668 | * (xb) source file strings |
| 4669 | * |
| 4670 | * As with other DDM traffic, strings are sent as a 4-byte length |
| 4671 | * followed by UTF-16 data. |
| 4672 | * |
| 4673 | * 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] | 4674 | * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4675 | * each table, but in practice there should be far fewer. |
| 4676 | * |
| 4677 | * The chief reason for using a string table here is to keep the size of |
| 4678 | * the DDMS message to a minimum. This is partly to make the protocol |
| 4679 | * efficient, but also because we have to form the whole thing up all at |
| 4680 | * once in a memory buffer. |
| 4681 | * |
| 4682 | * We use separate string tables for class names, method names, and source |
| 4683 | * files to keep the indexes small. There will generally be no overlap |
| 4684 | * between the contents of these tables. |
| 4685 | */ |
| 4686 | jbyteArray Dbg::GetRecentAllocations() { |
Ian Rogers | cf7f191 | 2014-10-22 22:06:39 -0700 | [diff] [blame] | 4687 | if ((false)) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4688 | DumpRecentAllocations(); |
| 4689 | } |
| 4690 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4691 | Thread* self = Thread::Current(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4692 | std::vector<uint8_t> bytes; |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4693 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4694 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4695 | // |
| 4696 | // Part 1: generate string tables. |
| 4697 | // |
| 4698 | StringTable class_names; |
| 4699 | StringTable method_names; |
| 4700 | StringTable filenames; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4701 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4702 | const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_); |
| 4703 | uint16_t count = capped_count; |
| 4704 | size_t idx = HeadIndex(); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4705 | while (count--) { |
| 4706 | AllocRecord* record = &recent_allocation_records_[idx]; |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 4707 | std::string temp; |
| 4708 | class_names.Add(record->Type()->GetDescriptor(&temp)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4709 | for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4710 | mirror::ArtMethod* m = record->StackElement(i)->Method(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4711 | if (m != nullptr) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4712 | class_names.Add(m->GetDeclaringClassDescriptor()); |
| 4713 | method_names.Add(m->GetName()); |
| 4714 | filenames.Add(GetMethodSourceFile(m)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4715 | } |
| 4716 | } |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4717 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4718 | idx = (idx + 1) & (alloc_record_max_ - 1); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4719 | } |
| 4720 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4721 | LOG(INFO) << "allocation records: " << capped_count; |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4722 | |
| 4723 | // |
| 4724 | // Part 2: Generate the output and store it in the buffer. |
| 4725 | // |
| 4726 | |
| 4727 | // (1b) message header len (to allow future expansion); includes itself |
| 4728 | // (1b) entry header len |
| 4729 | // (1b) stack frame len |
| 4730 | const int kMessageHeaderLen = 15; |
| 4731 | const int kEntryHeaderLen = 9; |
| 4732 | const int kStackFrameLen = 8; |
| 4733 | JDWP::Append1BE(bytes, kMessageHeaderLen); |
| 4734 | JDWP::Append1BE(bytes, kEntryHeaderLen); |
| 4735 | JDWP::Append1BE(bytes, kStackFrameLen); |
| 4736 | |
| 4737 | // (2b) number of entries |
| 4738 | // (4b) offset to string table from start of message |
| 4739 | // (2b) number of class name strings |
| 4740 | // (2b) number of method name strings |
| 4741 | // (2b) number of source file name strings |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4742 | JDWP::Append2BE(bytes, capped_count); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4743 | size_t string_table_offset = bytes.size(); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4744 | JDWP::Append4BE(bytes, 0); // We'll patch this later... |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4745 | JDWP::Append2BE(bytes, class_names.Size()); |
| 4746 | JDWP::Append2BE(bytes, method_names.Size()); |
| 4747 | JDWP::Append2BE(bytes, filenames.Size()); |
| 4748 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4749 | idx = HeadIndex(); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 4750 | std::string temp; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4751 | for (count = capped_count; count != 0; --count) { |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4752 | // For each entry: |
| 4753 | // (4b) total allocation size |
| 4754 | // (2b) thread id |
| 4755 | // (2b) allocated object's class name index |
| 4756 | // (1b) stack depth |
| 4757 | AllocRecord* record = &recent_allocation_records_[idx]; |
| 4758 | size_t stack_depth = record->GetDepth(); |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 4759 | size_t allocated_object_class_name_index = |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 4760 | class_names.IndexOf(record->Type()->GetDescriptor(&temp)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4761 | JDWP::Append4BE(bytes, record->ByteCount()); |
| 4762 | JDWP::Append2BE(bytes, record->ThinLockId()); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4763 | JDWP::Append2BE(bytes, allocated_object_class_name_index); |
| 4764 | JDWP::Append1BE(bytes, stack_depth); |
| 4765 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4766 | for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { |
| 4767 | // For each stack frame: |
| 4768 | // (2b) method's class name |
| 4769 | // (2b) method name |
| 4770 | // (2b) method source file |
| 4771 | // (2b) line number, clipped to 32767; -2 if native; -1 if no source |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4772 | mirror::ArtMethod* m = record->StackElement(stack_frame)->Method(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4773 | size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); |
| 4774 | size_t method_name_index = method_names.IndexOf(m->GetName()); |
| 4775 | size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4776 | JDWP::Append2BE(bytes, class_name_index); |
| 4777 | JDWP::Append2BE(bytes, method_name_index); |
| 4778 | JDWP::Append2BE(bytes, file_name_index); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4779 | JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber()); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4780 | } |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4781 | idx = (idx + 1) & (alloc_record_max_ - 1); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4782 | } |
| 4783 | |
| 4784 | // (xb) class name strings |
| 4785 | // (xb) method name strings |
| 4786 | // (xb) source file strings |
| 4787 | JDWP::Set4BE(&bytes[string_table_offset], bytes.size()); |
| 4788 | class_names.WriteTo(bytes); |
| 4789 | method_names.WriteTo(bytes); |
| 4790 | filenames.WriteTo(bytes); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4791 | } |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4792 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4793 | jbyteArray result = env->NewByteArray(bytes.size()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4794 | if (result != nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4795 | env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); |
| 4796 | } |
| 4797 | return result; |
| 4798 | } |
| 4799 | |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 4800 | mirror::ArtMethod* DeoptimizationRequest::Method() const { |
| 4801 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 4802 | return soa.DecodeMethod(method_); |
| 4803 | } |
| 4804 | |
| 4805 | void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) { |
| 4806 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 4807 | method_ = soa.EncodeMethod(m); |
| 4808 | } |
| 4809 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4810 | } // namespace art |