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, |
| 234 | uint32_t dex_pc) |
| 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. |
| 257 | LOG(ERROR) << "Unexpected method unwind event in debugger " << PrettyMethod(method) |
Sebastien Hertz | 51db44a | 2013-11-19 10:00:29 +0100 | [diff] [blame] | 258 | << " " << dex_pc; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 259 | } |
| 260 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 261 | void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, |
| 262 | uint32_t new_dex_pc) |
| 263 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 264 | Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 265 | } |
| 266 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 267 | void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, |
| 268 | uint32_t dex_pc, mirror::ArtField* field) |
| 269 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 270 | Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 271 | } |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 272 | |
| 273 | void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, |
| 274 | uint32_t dex_pc, mirror::ArtField* field, const JValue& field_value) |
| 275 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 276 | Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value); |
| 277 | } |
| 278 | |
| 279 | void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location, |
| 280 | mirror::ArtMethod* catch_method, uint32_t catch_dex_pc, |
| 281 | mirror::Throwable* exception_object) |
| 282 | OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 283 | Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object); |
| 284 | } |
| 285 | |
| 286 | private: |
| 287 | DISALLOW_COPY_AND_ASSIGN(DebugInstrumentationListener); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 288 | } gDebugInstrumentationListener; |
| 289 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 290 | // JDWP is allowed unless the Zygote forbids it. |
| 291 | static bool gJdwpAllowed = true; |
| 292 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 293 | // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line? |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 294 | static bool gJdwpConfigured = false; |
| 295 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 296 | // Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.) |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 297 | static JDWP::JdwpOptions gJdwpOptions; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 298 | |
| 299 | // Runtime JDWP state. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 300 | static JDWP::JdwpState* gJdwpState = nullptr; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 301 | static bool gDebuggerConnected; // debugger or DDMS is connected. |
| 302 | static bool gDebuggerActive; // debugger is making requests. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 303 | 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] | 304 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 305 | static bool gDdmThreadNotification = false; |
| 306 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 307 | // DDMS GC-related settings. |
| 308 | static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER; |
| 309 | static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 310 | static Dbg::HpsgWhat gDdmHpsgWhat; |
| 311 | static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 312 | static Dbg::HpsgWhat gDdmNhsgWhat; |
| 313 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 314 | ObjectRegistry* Dbg::gRegistry = nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 315 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 316 | // Recent allocation tracking. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 317 | AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord> |
| 318 | size_t Dbg::alloc_record_max_ = 0; |
| 319 | size_t Dbg::alloc_record_head_ = 0; |
| 320 | size_t Dbg::alloc_record_count_ = 0; |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 321 | Dbg::TypeCache Dbg::type_cache_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 322 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 323 | // Deoptimization support. |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 324 | std::vector<DeoptimizationRequest> Dbg::deoptimization_requests_; |
| 325 | size_t Dbg::full_deoptimization_event_count_ = 0; |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 326 | size_t Dbg::delayed_full_undeoptimization_count_ = 0; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 327 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 328 | // Instrumentation event reference counters. |
| 329 | size_t Dbg::dex_pc_change_event_ref_count_ = 0; |
| 330 | size_t Dbg::method_enter_event_ref_count_ = 0; |
| 331 | size_t Dbg::method_exit_event_ref_count_ = 0; |
| 332 | size_t Dbg::field_read_event_ref_count_ = 0; |
| 333 | size_t Dbg::field_write_event_ref_count_ = 0; |
| 334 | size_t Dbg::exception_catch_event_ref_count_ = 0; |
| 335 | uint32_t Dbg::instrumentation_events_ = 0; |
| 336 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 337 | // Breakpoints. |
jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 338 | static std::vector<Breakpoint> gBreakpoints GUARDED_BY(Locks::breakpoint_lock_); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 339 | |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 340 | void DebugInvokeReq::VisitRoots(RootCallback* callback, void* arg, uint32_t tid, |
| 341 | RootType root_type) { |
| 342 | if (receiver != nullptr) { |
| 343 | callback(&receiver, arg, tid, root_type); |
| 344 | } |
| 345 | if (thread != nullptr) { |
| 346 | callback(&thread, arg, tid, root_type); |
| 347 | } |
| 348 | if (klass != nullptr) { |
| 349 | callback(reinterpret_cast<mirror::Object**>(&klass), arg, tid, root_type); |
| 350 | } |
| 351 | if (method != nullptr) { |
| 352 | callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type); |
| 353 | } |
| 354 | } |
| 355 | |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 356 | void DebugInvokeReq::Clear() { |
| 357 | invoke_needed = false; |
| 358 | receiver = nullptr; |
| 359 | thread = nullptr; |
| 360 | klass = nullptr; |
| 361 | method = nullptr; |
| 362 | } |
| 363 | |
Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 364 | void SingleStepControl::VisitRoots(RootCallback* callback, void* arg, uint32_t tid, |
| 365 | RootType root_type) { |
| 366 | if (method != nullptr) { |
| 367 | callback(reinterpret_cast<mirror::Object**>(&method), arg, tid, root_type); |
| 368 | } |
| 369 | } |
| 370 | |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 371 | bool SingleStepControl::ContainsDexPc(uint32_t dex_pc) const { |
| 372 | return dex_pcs.find(dex_pc) == dex_pcs.end(); |
| 373 | } |
| 374 | |
| 375 | void SingleStepControl::Clear() { |
| 376 | is_active = false; |
| 377 | method = nullptr; |
| 378 | dex_pcs.clear(); |
| 379 | } |
| 380 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 381 | static bool IsBreakpoint(const mirror::ArtMethod* m, uint32_t dex_pc) |
jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 382 | LOCKS_EXCLUDED(Locks::breakpoint_lock_) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 383 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 384 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 385 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 386 | if (gBreakpoints[i].DexPc() == dex_pc && gBreakpoints[i].Method() == m) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 387 | VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; |
| 388 | return true; |
| 389 | } |
| 390 | } |
| 391 | return false; |
| 392 | } |
| 393 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 394 | static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) |
| 395 | LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) { |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 396 | MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_); |
| 397 | // A thread may be suspended for GC; in this code, we really want to know whether |
| 398 | // there's a debugger suspension active. |
| 399 | return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0; |
| 400 | } |
| 401 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 402 | static mirror::Array* DecodeNonNullArray(JDWP::RefTypeId id, JDWP::JdwpError* error) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 403 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 404 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 405 | if (o == nullptr) { |
| 406 | *error = JDWP::ERR_INVALID_OBJECT; |
| 407 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 408 | } |
| 409 | if (!o->IsArrayInstance()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 410 | *error = JDWP::ERR_INVALID_ARRAY; |
| 411 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 412 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 413 | *error = JDWP::ERR_NONE; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 414 | return o->AsArray(); |
| 415 | } |
| 416 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 417 | static mirror::Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError* error) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 418 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 419 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 420 | if (o == nullptr) { |
| 421 | *error = JDWP::ERR_INVALID_OBJECT; |
| 422 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 423 | } |
| 424 | if (!o->IsClass()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 425 | *error = JDWP::ERR_INVALID_CLASS; |
| 426 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 427 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 428 | *error = JDWP::ERR_NONE; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 429 | return o->AsClass(); |
| 430 | } |
| 431 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 432 | static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, |
| 433 | JDWP::JdwpError* error) |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 434 | EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 435 | LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) |
| 436 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 437 | mirror::Object* thread_peer = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_id, error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 438 | if (thread_peer == nullptr) { |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 439 | // This isn't even an object. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 440 | *error = JDWP::ERR_INVALID_OBJECT; |
| 441 | return nullptr; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 442 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 443 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 444 | 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] | 445 | if (!java_lang_Thread->IsAssignableFrom(thread_peer->GetClass())) { |
| 446 | // This isn't a thread. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 447 | *error = JDWP::ERR_INVALID_THREAD; |
| 448 | return nullptr; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 449 | } |
| 450 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 451 | Thread* thread = Thread::FromManagedThread(soa, thread_peer); |
| 452 | // If thread is null then this a java.lang.Thread without a Thread*. Must be a un-started or a |
| 453 | // zombie. |
| 454 | *error = (thread == nullptr) ? JDWP::ERR_THREAD_NOT_ALIVE : JDWP::ERR_NONE; |
| 455 | return thread; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 456 | } |
| 457 | |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 458 | static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { |
| 459 | // JDWP deliberately uses the descriptor characters' ASCII values for its enum. |
| 460 | // Note that by "basic" we mean that we don't get more specific than JT_OBJECT. |
| 461 | return static_cast<JDWP::JdwpTag>(descriptor[0]); |
| 462 | } |
| 463 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 464 | static JDWP::JdwpTag BasicTagFromClass(mirror::Class* klass) |
| 465 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 466 | std::string temp; |
| 467 | const char* descriptor = klass->GetDescriptor(&temp); |
| 468 | return BasicTagFromDescriptor(descriptor); |
| 469 | } |
| 470 | |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 471 | static JDWP::JdwpTag TagFromClass(const ScopedObjectAccessUnchecked& soa, mirror::Class* c) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 472 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 473 | CHECK(c != nullptr); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 474 | if (c->IsArrayClass()) { |
| 475 | return JDWP::JT_ARRAY; |
| 476 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 477 | if (c->IsStringClass()) { |
| 478 | return JDWP::JT_STRING; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 479 | } |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 480 | if (c->IsClassClass()) { |
| 481 | return JDWP::JT_CLASS_OBJECT; |
| 482 | } |
| 483 | { |
| 484 | mirror::Class* thread_class = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread); |
| 485 | if (thread_class->IsAssignableFrom(c)) { |
| 486 | return JDWP::JT_THREAD; |
| 487 | } |
| 488 | } |
| 489 | { |
| 490 | mirror::Class* thread_group_class = |
| 491 | soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup); |
| 492 | if (thread_group_class->IsAssignableFrom(c)) { |
| 493 | return JDWP::JT_THREAD_GROUP; |
| 494 | } |
| 495 | } |
| 496 | { |
| 497 | mirror::Class* class_loader_class = |
| 498 | soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ClassLoader); |
| 499 | if (class_loader_class->IsAssignableFrom(c)) { |
| 500 | return JDWP::JT_CLASS_LOADER; |
| 501 | } |
| 502 | } |
| 503 | return JDWP::JT_OBJECT; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | /* |
| 507 | * Objects declared to hold Object might actually hold a more specific |
| 508 | * type. The debugger may take a special interest in these (e.g. it |
| 509 | * wants to display the contents of Strings), so we want to return an |
| 510 | * appropriate tag. |
| 511 | * |
| 512 | * Null objects are tagged JT_OBJECT. |
| 513 | */ |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 514 | JDWP::JdwpTag Dbg::TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 515 | return (o == nullptr) ? JDWP::JT_OBJECT : TagFromClass(soa, o->GetClass()); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | static bool IsPrimitiveTag(JDWP::JdwpTag tag) { |
| 519 | switch (tag) { |
| 520 | case JDWP::JT_BOOLEAN: |
| 521 | case JDWP::JT_BYTE: |
| 522 | case JDWP::JT_CHAR: |
| 523 | case JDWP::JT_FLOAT: |
| 524 | case JDWP::JT_DOUBLE: |
| 525 | case JDWP::JT_INT: |
| 526 | case JDWP::JT_LONG: |
| 527 | case JDWP::JT_SHORT: |
| 528 | case JDWP::JT_VOID: |
| 529 | return true; |
| 530 | default: |
| 531 | return false; |
| 532 | } |
| 533 | } |
| 534 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 535 | /* |
| 536 | * Handle one of the JDWP name/value pairs. |
| 537 | * |
| 538 | * JDWP options are: |
| 539 | * help: if specified, show help message and bail |
| 540 | * transport: may be dt_socket or dt_shmem |
| 541 | * address: for dt_socket, "host:port", or just "port" when listening |
| 542 | * server: if "y", wait for debugger to attach; if "n", attach to debugger |
| 543 | * timeout: how long to wait for debugger to connect / listen |
| 544 | * |
| 545 | * Useful with server=n (these aren't supported yet): |
| 546 | * onthrow=<exception-name>: connect to debugger when exception thrown |
| 547 | * onuncaught=y|n: connect to debugger when uncaught exception thrown |
| 548 | * launch=<command-line>: launch the debugger itself |
| 549 | * |
| 550 | * The "transport" option is required, as is "address" if server=n. |
| 551 | */ |
| 552 | static bool ParseJdwpOption(const std::string& name, const std::string& value) { |
| 553 | if (name == "transport") { |
| 554 | if (value == "dt_socket") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 555 | gJdwpOptions.transport = JDWP::kJdwpTransportSocket; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 556 | } else if (value == "dt_android_adb") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 557 | gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 558 | } else { |
| 559 | LOG(ERROR) << "JDWP transport not supported: " << value; |
| 560 | return false; |
| 561 | } |
| 562 | } else if (name == "server") { |
| 563 | if (value == "n") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 564 | gJdwpOptions.server = false; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 565 | } else if (value == "y") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 566 | gJdwpOptions.server = true; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 567 | } else { |
| 568 | LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'"; |
| 569 | return false; |
| 570 | } |
| 571 | } else if (name == "suspend") { |
| 572 | if (value == "n") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 573 | gJdwpOptions.suspend = false; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 574 | } else if (value == "y") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 575 | gJdwpOptions.suspend = true; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 576 | } else { |
| 577 | LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'"; |
| 578 | return false; |
| 579 | } |
| 580 | } else if (name == "address") { |
| 581 | /* this is either <port> or <host>:<port> */ |
| 582 | std::string port_string; |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 583 | gJdwpOptions.host.clear(); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 584 | std::string::size_type colon = value.find(':'); |
| 585 | if (colon != std::string::npos) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 586 | gJdwpOptions.host = value.substr(0, colon); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 587 | port_string = value.substr(colon + 1); |
| 588 | } else { |
| 589 | port_string = value; |
| 590 | } |
| 591 | if (port_string.empty()) { |
| 592 | LOG(ERROR) << "JDWP address missing port: " << value; |
| 593 | return false; |
| 594 | } |
| 595 | char* end; |
Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 596 | uint64_t port = strtoul(port_string.c_str(), &end, 10); |
| 597 | if (*end != '\0' || port > 0xffff) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 598 | LOG(ERROR) << "JDWP address has junk in port field: " << value; |
| 599 | return false; |
| 600 | } |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 601 | gJdwpOptions.port = port; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 602 | } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") { |
| 603 | /* valid but unsupported */ |
| 604 | LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'"; |
| 605 | } else { |
| 606 | LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'"; |
| 607 | } |
| 608 | |
| 609 | return true; |
| 610 | } |
| 611 | |
| 612 | /* |
| 613 | * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.: |
| 614 | * "transport=dt_socket,address=8000,server=y,suspend=n" |
| 615 | */ |
| 616 | bool Dbg::ParseJdwpOptions(const std::string& options) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 617 | VLOG(jdwp) << "ParseJdwpOptions: " << options; |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 618 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 619 | std::vector<std::string> pairs; |
| 620 | Split(options, ',', pairs); |
| 621 | |
| 622 | for (size_t i = 0; i < pairs.size(); ++i) { |
| 623 | std::string::size_type equals = pairs[i].find('='); |
| 624 | if (equals == std::string::npos) { |
| 625 | LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'"; |
| 626 | return false; |
| 627 | } |
| 628 | ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1)); |
| 629 | } |
| 630 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 631 | if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 632 | LOG(ERROR) << "Must specify JDWP transport: " << options; |
| 633 | } |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 634 | if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 635 | LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options; |
| 636 | return false; |
| 637 | } |
| 638 | |
| 639 | gJdwpConfigured = true; |
| 640 | return true; |
| 641 | } |
| 642 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 643 | void Dbg::StartJdwp() { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 644 | if (!gJdwpAllowed || !IsJdwpConfigured()) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 645 | // No JDWP for you! |
| 646 | return; |
| 647 | } |
| 648 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 649 | CHECK(gRegistry == nullptr); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 650 | gRegistry = new ObjectRegistry; |
| 651 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 652 | // Init JDWP if the debugger is enabled. This may connect out to a |
| 653 | // debugger, passively listen for a debugger, or block waiting for a |
| 654 | // debugger. |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 655 | gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 656 | if (gJdwpState == nullptr) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 657 | // We probably failed because some other process has the port already, which means that |
| 658 | // if we don't abort the user is likely to think they're talking to us when they're actually |
| 659 | // talking to that other process. |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 660 | LOG(FATAL) << "Debugger thread failed to initialize"; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | // If a debugger has already attached, send the "welcome" message. |
| 664 | // This may cause us to suspend all threads. |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 665 | if (gJdwpState->IsActive()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 666 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 667 | if (!gJdwpState->PostVMStart()) { |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 668 | LOG(WARNING) << "Failed to post 'start' message to debugger"; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 669 | } |
| 670 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 671 | } |
| 672 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 673 | void Dbg::StopJdwp() { |
Sebastien Hertz | c6345ef | 2014-08-18 19:26:39 +0200 | [diff] [blame] | 674 | // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the |
| 675 | // destruction of gJdwpState). |
| 676 | if (gJdwpState != nullptr && gJdwpState->IsActive()) { |
| 677 | gJdwpState->PostVMDeath(); |
| 678 | } |
Sebastien Hertz | 0376e6b | 2014-02-06 18:12:59 +0100 | [diff] [blame] | 679 | // Prevent the JDWP thread from processing JDWP incoming packets after we close the connection. |
| 680 | Disposed(); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 681 | delete gJdwpState; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 682 | gJdwpState = nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 683 | delete gRegistry; |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 684 | gRegistry = nullptr; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 685 | } |
| 686 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 687 | void Dbg::GcDidFinish() { |
| 688 | if (gDdmHpifWhen != HPIF_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 689 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 690 | VLOG(jdwp) << "Sending heap info to DDM"; |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 691 | DdmSendHeapInfo(gDdmHpifWhen); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 692 | } |
| 693 | if (gDdmHpsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 694 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 695 | VLOG(jdwp) << "Dumping heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 696 | DdmSendHeapSegments(false); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 697 | } |
| 698 | if (gDdmNhsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 699 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 4d466a8 | 2014-05-08 19:05:29 -0700 | [diff] [blame] | 700 | VLOG(jdwp) << "Dumping native heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 701 | DdmSendHeapSegments(true); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 702 | } |
| 703 | } |
| 704 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 705 | void Dbg::SetJdwpAllowed(bool allowed) { |
| 706 | gJdwpAllowed = allowed; |
| 707 | } |
| 708 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 709 | DebugInvokeReq* Dbg::GetInvokeReq() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 710 | return Thread::Current()->GetInvokeReq(); |
| 711 | } |
| 712 | |
| 713 | Thread* Dbg::GetDebugThread() { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 714 | return (gJdwpState != nullptr) ? gJdwpState->GetDebugThread() : nullptr; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | void Dbg::ClearWaitForEventThread() { |
| 718 | gJdwpState->ClearWaitForEventThread(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | void Dbg::Connected() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 722 | CHECK(!gDebuggerConnected); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 723 | VLOG(jdwp) << "JDWP has attached"; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 724 | gDebuggerConnected = true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 725 | gDisposed = false; |
| 726 | } |
| 727 | |
| 728 | void Dbg::Disposed() { |
| 729 | gDisposed = true; |
| 730 | } |
| 731 | |
| 732 | bool Dbg::IsDisposed() { |
| 733 | return gDisposed; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 734 | } |
| 735 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 736 | void Dbg::GoActive() { |
| 737 | // Enable all debugging features, including scans for breakpoints. |
| 738 | // This is a no-op if we're already active. |
| 739 | // Only called from the JDWP handler thread. |
| 740 | if (gDebuggerActive) { |
| 741 | return; |
| 742 | } |
| 743 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 744 | { |
| 745 | // 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] | 746 | ReaderMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 747 | CHECK_EQ(gBreakpoints.size(), 0U); |
| 748 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 749 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 750 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 751 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 752 | CHECK_EQ(deoptimization_requests_.size(), 0U); |
| 753 | CHECK_EQ(full_deoptimization_event_count_, 0U); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 754 | CHECK_EQ(delayed_full_undeoptimization_count_, 0U); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 755 | CHECK_EQ(dex_pc_change_event_ref_count_, 0U); |
| 756 | CHECK_EQ(method_enter_event_ref_count_, 0U); |
| 757 | CHECK_EQ(method_exit_event_ref_count_, 0U); |
| 758 | CHECK_EQ(field_read_event_ref_count_, 0U); |
| 759 | CHECK_EQ(field_write_event_ref_count_, 0U); |
| 760 | CHECK_EQ(exception_catch_event_ref_count_, 0U); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 761 | } |
| 762 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 763 | Runtime* runtime = Runtime::Current(); |
| 764 | runtime->GetThreadList()->SuspendAll(); |
| 765 | Thread* self = Thread::Current(); |
| 766 | ThreadState old_state = self->SetStateUnsafe(kRunnable); |
| 767 | CHECK_NE(old_state, kRunnable); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 768 | runtime->GetInstrumentation()->EnableDeoptimization(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 769 | instrumentation_events_ = 0; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 770 | gDebuggerActive = true; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 771 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| 772 | runtime->GetThreadList()->ResumeAll(); |
| 773 | |
| 774 | LOG(INFO) << "Debugger is active"; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 775 | } |
| 776 | |
| 777 | void Dbg::Disconnected() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 778 | CHECK(gDebuggerConnected); |
| 779 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 780 | LOG(INFO) << "Debugger is no longer active"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 781 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 782 | // Suspend all threads and exclusively acquire the mutator lock. Set the state of the thread |
| 783 | // to kRunnable to avoid scoped object access transitions. Remove the debugger as a listener |
| 784 | // and clear the object registry. |
| 785 | Runtime* runtime = Runtime::Current(); |
| 786 | runtime->GetThreadList()->SuspendAll(); |
| 787 | Thread* self = Thread::Current(); |
| 788 | ThreadState old_state = self->SetStateUnsafe(kRunnable); |
Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 789 | |
| 790 | // Debugger may not be active at this point. |
| 791 | if (gDebuggerActive) { |
| 792 | { |
| 793 | // Since we're going to disable deoptimization, we clear the deoptimization requests queue. |
| 794 | // This prevents us from having any pending deoptimization request when the debugger attaches |
| 795 | // to us again while no event has been requested yet. |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 796 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 797 | deoptimization_requests_.clear(); |
| 798 | full_deoptimization_event_count_ = 0U; |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 799 | delayed_full_undeoptimization_count_ = 0U; |
Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 800 | } |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 801 | if (instrumentation_events_ != 0) { |
| 802 | runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener, |
| 803 | instrumentation_events_); |
| 804 | instrumentation_events_ = 0; |
| 805 | } |
Sebastien Hertz | aaea734 | 2014-02-25 15:10:04 +0100 | [diff] [blame] | 806 | runtime->GetInstrumentation()->DisableDeoptimization(); |
| 807 | gDebuggerActive = false; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 808 | } |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 809 | gRegistry->Clear(); |
| 810 | gDebuggerConnected = false; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 811 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| 812 | runtime->GetThreadList()->ResumeAll(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 813 | } |
| 814 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 815 | bool Dbg::IsDebuggerActive() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 816 | return gDebuggerActive; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 817 | } |
| 818 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 819 | bool Dbg::IsJdwpConfigured() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 820 | return gJdwpConfigured; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | int64_t Dbg::LastDebuggerActivity() { |
Elliott Hughes | ca95152 | 2011-12-05 12:01:32 -0800 | [diff] [blame] | 824 | return gJdwpState->LastDebuggerActivity(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 825 | } |
| 826 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 827 | void Dbg::UndoDebuggerSuspensions() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 828 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 829 | } |
| 830 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 831 | std::string Dbg::GetClassName(JDWP::RefTypeId class_id) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 832 | JDWP::JdwpError error; |
| 833 | mirror::Object* o = gRegistry->Get<mirror::Object*>(class_id, &error); |
| 834 | if (o == nullptr) { |
| 835 | if (error == JDWP::ERR_NONE) { |
| 836 | return "NULL"; |
| 837 | } else { |
| 838 | return StringPrintf("invalid object %p", reinterpret_cast<void*>(class_id)); |
| 839 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 840 | } |
| 841 | if (!o->IsClass()) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 842 | 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] | 843 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 844 | return GetClassName(o->AsClass()); |
| 845 | } |
| 846 | |
| 847 | std::string Dbg::GetClassName(mirror::Class* klass) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 848 | if (klass == nullptr) { |
| 849 | return "NULL"; |
| 850 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 851 | std::string temp; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 852 | return DescriptorToName(klass->GetDescriptor(&temp)); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 853 | } |
| 854 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 855 | JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 856 | JDWP::JdwpError status; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 857 | mirror::Class* c = DecodeClass(id, &status); |
| 858 | if (c == nullptr) { |
| 859 | *class_object_id = 0; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 860 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 861 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 862 | *class_object_id = gRegistry->Add(c); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 863 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 864 | } |
| 865 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 866 | JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 867 | JDWP::JdwpError status; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 868 | mirror::Class* c = DecodeClass(id, &status); |
| 869 | if (c == nullptr) { |
| 870 | *superclass_id = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 871 | return status; |
| 872 | } |
| 873 | if (c->IsInterface()) { |
| 874 | // http://code.google.com/p/android/issues/detail?id=20856 |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 875 | *superclass_id = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 876 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 877 | *superclass_id = gRegistry->Add(c->GetSuperClass()); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 878 | } |
| 879 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 880 | } |
| 881 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 882 | JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 883 | JDWP::JdwpError error; |
| 884 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 885 | if (o == nullptr) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 886 | return JDWP::ERR_INVALID_OBJECT; |
| 887 | } |
| 888 | expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader())); |
| 889 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 890 | } |
| 891 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 892 | JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 893 | JDWP::JdwpError error; |
| 894 | mirror::Class* c = DecodeClass(id, &error); |
| 895 | if (c == nullptr) { |
| 896 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 897 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 898 | |
| 899 | uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask; |
| 900 | |
Yevgeny Rouban | de34eea | 2014-02-15 01:06:03 +0700 | [diff] [blame] | 901 | // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set, |
| 902 | // not interfaces. |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 903 | // 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] | 904 | if ((access_flags & kAccInterface) == 0) { |
| 905 | access_flags |= kAccSuper; |
| 906 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 907 | |
| 908 | expandBufAdd4BE(pReply, access_flags); |
| 909 | |
| 910 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 911 | } |
| 912 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 913 | JDWP::JdwpError Dbg::GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) { |
| 914 | JDWP::JdwpError error; |
| 915 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 916 | if (o == nullptr) { |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 917 | return JDWP::ERR_INVALID_OBJECT; |
| 918 | } |
| 919 | |
| 920 | // Ensure all threads are suspended while we read objects' lock words. |
| 921 | Thread* self = Thread::Current(); |
Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 922 | CHECK_EQ(self->GetState(), kRunnable); |
| 923 | self->TransitionFromRunnableToSuspended(kSuspended); |
| 924 | Runtime::Current()->GetThreadList()->SuspendAll(); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 925 | |
| 926 | MonitorInfo monitor_info(o); |
| 927 | |
Sebastien Hertz | 5426324 | 2014-03-19 18:16:50 +0100 | [diff] [blame] | 928 | Runtime::Current()->GetThreadList()->ResumeAll(); |
| 929 | self->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 930 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 931 | if (monitor_info.owner_ != nullptr) { |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 932 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.owner_->GetPeer())); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 933 | } else { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 934 | expandBufAddObjectId(reply, gRegistry->Add(nullptr)); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 935 | } |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 936 | expandBufAdd4BE(reply, monitor_info.entry_count_); |
| 937 | expandBufAdd4BE(reply, monitor_info.waiters_.size()); |
| 938 | for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) { |
| 939 | expandBufAddObjectId(reply, gRegistry->Add(monitor_info.waiters_[i]->GetPeer())); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 940 | } |
| 941 | return JDWP::ERR_NONE; |
| 942 | } |
| 943 | |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 944 | JDWP::JdwpError Dbg::GetOwnedMonitors(JDWP::ObjectId thread_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 945 | std::vector<JDWP::ObjectId>* monitors, |
| 946 | std::vector<uint32_t>* stack_depths) { |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 947 | struct OwnedMonitorVisitor : public StackVisitor { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 948 | OwnedMonitorVisitor(Thread* thread, Context* context, |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 949 | std::vector<JDWP::ObjectId>* monitor_vector, |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 950 | std::vector<uint32_t>* stack_depth_vector) |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 951 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 952 | : StackVisitor(thread, context), current_stack_depth(0), |
| 953 | monitors(monitor_vector), stack_depths(stack_depth_vector) {} |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 954 | |
| 955 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 956 | // annotalysis. |
| 957 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 958 | if (!GetMethod()->IsRuntimeMethod()) { |
| 959 | Monitor::VisitLocks(this, AppendOwnedMonitors, this); |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 960 | ++current_stack_depth; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 961 | } |
| 962 | return true; |
| 963 | } |
| 964 | |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 965 | static void AppendOwnedMonitors(mirror::Object* owned_monitor, void* arg) |
| 966 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 967 | OwnedMonitorVisitor* visitor = reinterpret_cast<OwnedMonitorVisitor*>(arg); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 968 | visitor->monitors->push_back(gRegistry->Add(owned_monitor)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 969 | visitor->stack_depths->push_back(visitor->current_stack_depth); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 970 | } |
| 971 | |
Elliott Hughes | 734b8c6 | 2013-01-11 15:32:45 -0800 | [diff] [blame] | 972 | size_t current_stack_depth; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 973 | std::vector<JDWP::ObjectId>* const monitors; |
| 974 | std::vector<uint32_t>* const stack_depths; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 975 | }; |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 976 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 977 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 978 | Thread* thread; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 979 | { |
| 980 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 981 | JDWP::JdwpError error; |
| 982 | thread = DecodeThread(soa, thread_id, &error); |
| 983 | if (thread == nullptr) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 984 | return error; |
| 985 | } |
| 986 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 987 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 988 | } |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 989 | } |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 990 | std::unique_ptr<Context> context(Context::Create()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 991 | OwnedMonitorVisitor visitor(thread, context.get(), monitors, stack_depths); |
Hiroshi Yamauchi | cc8c5c5 | 2014-06-13 15:08:05 -0700 | [diff] [blame] | 992 | visitor.WalkStack(); |
Elliott Hughes | 4993bbc | 2013-01-10 15:41:25 -0800 | [diff] [blame] | 993 | return JDWP::ERR_NONE; |
| 994 | } |
| 995 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 996 | JDWP::JdwpError Dbg::GetContendedMonitor(JDWP::ObjectId thread_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 997 | JDWP::ObjectId* contended_monitor) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 998 | mirror::Object* contended_monitor_obj; |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 999 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1000 | *contended_monitor = 0; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1001 | { |
| 1002 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1003 | JDWP::JdwpError error; |
| 1004 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 1005 | if (thread == nullptr) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1006 | return error; |
| 1007 | } |
| 1008 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 1009 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 1010 | } |
| 1011 | contended_monitor_obj = Monitor::GetContendedMonitor(thread); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 1012 | } |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 1013 | // Add() requires the thread_list_lock_ not held to avoid the lock |
| 1014 | // level violation. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1015 | *contended_monitor = gRegistry->Add(contended_monitor_obj); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 1016 | return JDWP::ERR_NONE; |
| 1017 | } |
| 1018 | |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1019 | JDWP::JdwpError Dbg::GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1020 | std::vector<uint64_t>* counts) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1021 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1022 | heap->CollectGarbage(false); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1023 | std::vector<mirror::Class*> classes; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1024 | counts->clear(); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1025 | for (size_t i = 0; i < class_ids.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1026 | JDWP::JdwpError error; |
| 1027 | mirror::Class* c = DecodeClass(class_ids[i], &error); |
| 1028 | if (c == nullptr) { |
| 1029 | return error; |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1030 | } |
| 1031 | classes.push_back(c); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1032 | counts->push_back(0); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1033 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1034 | heap->CountInstances(classes, false, &(*counts)[0]); |
Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 1035 | return JDWP::ERR_NONE; |
| 1036 | } |
| 1037 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1038 | JDWP::JdwpError Dbg::GetInstances(JDWP::RefTypeId class_id, int32_t max_count, |
| 1039 | std::vector<JDWP::ObjectId>* instances) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1040 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1041 | // We only want reachable instances, so do a GC. |
| 1042 | heap->CollectGarbage(false); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1043 | JDWP::JdwpError error; |
| 1044 | mirror::Class* c = DecodeClass(class_id, &error); |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1045 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1046 | return error; |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 1047 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1048 | std::vector<mirror::Object*> raw_instances; |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 1049 | Runtime::Current()->GetHeap()->GetInstances(c, max_count, raw_instances); |
| 1050 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1051 | instances->push_back(gRegistry->Add(raw_instances[i])); |
Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 1052 | } |
| 1053 | return JDWP::ERR_NONE; |
| 1054 | } |
| 1055 | |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1056 | JDWP::JdwpError Dbg::GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1057 | std::vector<JDWP::ObjectId>* referring_objects) { |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1058 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
| 1059 | heap->CollectGarbage(false); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1060 | JDWP::JdwpError error; |
| 1061 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1062 | if (o == nullptr) { |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1063 | return JDWP::ERR_INVALID_OBJECT; |
| 1064 | } |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1065 | std::vector<mirror::Object*> raw_instances; |
Mathieu Chartier | 412c7fc | 2014-02-07 12:18:39 -0800 | [diff] [blame] | 1066 | heap->GetReferringObjects(o, max_count, raw_instances); |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1067 | for (size_t i = 0; i < raw_instances.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1068 | referring_objects->push_back(gRegistry->Add(raw_instances[i])); |
Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 1069 | } |
| 1070 | return JDWP::ERR_NONE; |
| 1071 | } |
| 1072 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1073 | JDWP::JdwpError Dbg::DisableCollection(JDWP::ObjectId object_id) { |
| 1074 | JDWP::JdwpError error; |
| 1075 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1076 | if (o == nullptr) { |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1077 | return JDWP::ERR_INVALID_OBJECT; |
| 1078 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1079 | gRegistry->DisableCollection(object_id); |
| 1080 | return JDWP::ERR_NONE; |
| 1081 | } |
| 1082 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1083 | JDWP::JdwpError Dbg::EnableCollection(JDWP::ObjectId object_id) { |
| 1084 | JDWP::JdwpError error; |
| 1085 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1086 | // Unlike DisableCollection, JDWP specs do not state an invalid object causes an error. The RI |
| 1087 | // also ignores these cases and never return an error. However it's not obvious why this command |
| 1088 | // should behave differently from DisableCollection and IsCollected commands. So let's be more |
| 1089 | // strict and return an error if this happens. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1090 | if (o == nullptr) { |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1091 | return JDWP::ERR_INVALID_OBJECT; |
| 1092 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1093 | gRegistry->EnableCollection(object_id); |
| 1094 | return JDWP::ERR_NONE; |
| 1095 | } |
| 1096 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1097 | JDWP::JdwpError Dbg::IsCollected(JDWP::ObjectId object_id, bool* is_collected) { |
| 1098 | *is_collected = true; |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1099 | if (object_id == 0) { |
| 1100 | // Null object id is invalid. |
Sebastien Hertz | e96060a | 2013-12-11 12:06:28 +0100 | [diff] [blame] | 1101 | return JDWP::ERR_INVALID_OBJECT; |
| 1102 | } |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1103 | // JDWP specs state an INVALID_OBJECT error is returned if the object ID is not valid. However |
| 1104 | // the RI seems to ignore this and assume object has been collected. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1105 | JDWP::JdwpError error; |
| 1106 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1107 | if (o != nullptr) { |
| 1108 | *is_collected = gRegistry->IsCollected(object_id); |
Sebastien Hertz | 65637eb | 2014-01-10 17:40:02 +0100 | [diff] [blame] | 1109 | } |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1110 | return JDWP::ERR_NONE; |
| 1111 | } |
| 1112 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1113 | void Dbg::DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) { |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1114 | gRegistry->DisposeObject(object_id, reference_count); |
| 1115 | } |
| 1116 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1117 | JDWP::JdwpTypeTag Dbg::GetTypeTag(mirror::Class* klass) { |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1118 | DCHECK(klass != nullptr); |
| 1119 | if (klass->IsArrayClass()) { |
| 1120 | return JDWP::TT_ARRAY; |
| 1121 | } else if (klass->IsInterface()) { |
| 1122 | return JDWP::TT_INTERFACE; |
| 1123 | } else { |
| 1124 | return JDWP::TT_CLASS; |
| 1125 | } |
| 1126 | } |
| 1127 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1128 | JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1129 | JDWP::JdwpError error; |
| 1130 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1131 | if (c == nullptr) { |
| 1132 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1133 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1134 | |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1135 | JDWP::JdwpTypeTag type_tag = GetTypeTag(c); |
| 1136 | expandBufAdd1(pReply, type_tag); |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1137 | expandBufAddRefTypeId(pReply, class_id); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1138 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1139 | } |
| 1140 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1141 | void Dbg::GetClassList(std::vector<JDWP::RefTypeId>* classes) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1142 | // Get the complete list of reference classes (i.e. all classes except |
| 1143 | // the primitive types). |
| 1144 | // Returns a newly-allocated buffer full of RefTypeId values. |
| 1145 | struct ClassListCreator { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1146 | explicit ClassListCreator(std::vector<JDWP::RefTypeId>* classes) : classes(classes) { |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1147 | } |
| 1148 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1149 | static bool Visit(mirror::Class* c, void* arg) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1150 | return reinterpret_cast<ClassListCreator*>(arg)->Visit(c); |
| 1151 | } |
| 1152 | |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1153 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 1154 | // annotalysis. |
| 1155 | bool Visit(mirror::Class* c) NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1156 | if (!c->IsPrimitive()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1157 | classes->push_back(gRegistry->AddRefType(c)); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1158 | } |
| 1159 | return true; |
| 1160 | } |
| 1161 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1162 | std::vector<JDWP::RefTypeId>* const classes; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1163 | }; |
| 1164 | |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1165 | ClassListCreator clc(classes); |
Sebastien Hertz | 4537c41 | 2014-08-28 14:41:50 +0200 | [diff] [blame] | 1166 | Runtime::Current()->GetClassLinker()->VisitClassesWithoutClassesLock(ClassListCreator::Visit, |
| 1167 | &clc); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1168 | } |
| 1169 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1170 | JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, |
| 1171 | uint32_t* pStatus, std::string* pDescriptor) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1172 | JDWP::JdwpError error; |
| 1173 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1174 | if (c == nullptr) { |
| 1175 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1176 | } |
| 1177 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1178 | if (c->IsArrayClass()) { |
| 1179 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 1180 | *pTypeTag = JDWP::TT_ARRAY; |
| 1181 | } else { |
| 1182 | if (c->IsErroneous()) { |
| 1183 | *pStatus = JDWP::CS_ERROR; |
| 1184 | } else { |
| 1185 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED; |
| 1186 | } |
| 1187 | *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 1188 | } |
| 1189 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1190 | if (pDescriptor != nullptr) { |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1191 | std::string temp; |
| 1192 | *pDescriptor = c->GetDescriptor(&temp); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1193 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1194 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1195 | } |
| 1196 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1197 | void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1198 | std::vector<mirror::Class*> classes; |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1199 | Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1200 | ids->clear(); |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1201 | for (size_t i = 0; i < classes.size(); ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1202 | ids->push_back(gRegistry->Add(classes[i])); |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 1203 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1204 | } |
| 1205 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1206 | JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) { |
| 1207 | JDWP::JdwpError error; |
| 1208 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1209 | if (o == nullptr) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1210 | return JDWP::ERR_INVALID_OBJECT; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1211 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1212 | |
Sebastien Hertz | 4d8fd49 | 2014-03-28 16:29:41 +0100 | [diff] [blame] | 1213 | JDWP::JdwpTypeTag type_tag = GetTypeTag(o->GetClass()); |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 1214 | JDWP::RefTypeId type_id = gRegistry->AddRefType(o->GetClass()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1215 | |
| 1216 | expandBufAdd1(pReply, type_tag); |
| 1217 | expandBufAddRefTypeId(pReply, type_id); |
| 1218 | |
| 1219 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1220 | } |
| 1221 | |
Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 1222 | JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId class_id, std::string* signature) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1223 | JDWP::JdwpError error; |
| 1224 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1225 | if (c == nullptr) { |
| 1226 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1227 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1228 | std::string temp; |
| 1229 | *signature = c->GetDescriptor(&temp); |
Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 1230 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1231 | } |
| 1232 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1233 | JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId class_id, std::string* result) { |
| 1234 | JDWP::JdwpError error; |
| 1235 | mirror::Class* c = DecodeClass(class_id, &error); |
Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1236 | if (c == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1237 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1238 | } |
Sebastien Hertz | 4206eb5 | 2014-06-05 10:15:45 +0200 | [diff] [blame] | 1239 | const char* source_file = c->GetSourceFile(); |
| 1240 | if (source_file == nullptr) { |
Sebastien Hertz | b7054ba | 2014-03-13 11:52:31 +0100 | [diff] [blame] | 1241 | return JDWP::ERR_ABSENT_INFORMATION; |
| 1242 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1243 | *result = source_file; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1244 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1245 | } |
| 1246 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1247 | JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1248 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1249 | JDWP::JdwpError error; |
| 1250 | mirror::Object* o = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 1251 | if (error != JDWP::ERR_NONE) { |
| 1252 | *tag = JDWP::JT_VOID; |
| 1253 | return error; |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1254 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1255 | *tag = TagFromObject(soa, o); |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1256 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1257 | } |
| 1258 | |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1259 | size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1260 | switch (tag) { |
| 1261 | case JDWP::JT_VOID: |
| 1262 | return 0; |
| 1263 | case JDWP::JT_BYTE: |
| 1264 | case JDWP::JT_BOOLEAN: |
| 1265 | return 1; |
| 1266 | case JDWP::JT_CHAR: |
| 1267 | case JDWP::JT_SHORT: |
| 1268 | return 2; |
| 1269 | case JDWP::JT_FLOAT: |
| 1270 | case JDWP::JT_INT: |
| 1271 | return 4; |
| 1272 | case JDWP::JT_ARRAY: |
| 1273 | case JDWP::JT_OBJECT: |
| 1274 | case JDWP::JT_STRING: |
| 1275 | case JDWP::JT_THREAD: |
| 1276 | case JDWP::JT_THREAD_GROUP: |
| 1277 | case JDWP::JT_CLASS_LOADER: |
| 1278 | case JDWP::JT_CLASS_OBJECT: |
| 1279 | return sizeof(JDWP::ObjectId); |
| 1280 | case JDWP::JT_DOUBLE: |
| 1281 | case JDWP::JT_LONG: |
| 1282 | return 8; |
| 1283 | default: |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1284 | LOG(FATAL) << "Unknown tag " << tag; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1285 | return -1; |
| 1286 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1287 | } |
| 1288 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1289 | JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId array_id, int32_t* length) { |
| 1290 | JDWP::JdwpError error; |
| 1291 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
| 1292 | if (a == nullptr) { |
| 1293 | return error; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1294 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1295 | *length = a->GetLength(); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1296 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1297 | } |
| 1298 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1299 | 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] | 1300 | JDWP::JdwpError error; |
| 1301 | mirror::Array* a = DecodeNonNullArray(array_id, &error); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1302 | if (a == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1303 | return error; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1304 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1305 | |
| 1306 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 1307 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1308 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1309 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1310 | JDWP::JdwpTag element_tag = BasicTagFromClass(a->GetClass()->GetComponentType()); |
| 1311 | expandBufAdd1(pReply, element_tag); |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1312 | expandBufAdd4BE(pReply, count); |
| 1313 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1314 | if (IsPrimitiveTag(element_tag)) { |
| 1315 | size_t width = GetTagWidth(element_tag); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1316 | uint8_t* dst = expandBufAddSpace(pReply, count * width); |
| 1317 | if (width == 8) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1318 | 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] | 1319 | for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]); |
| 1320 | } else if (width == 4) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1321 | 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] | 1322 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]); |
| 1323 | } else if (width == 2) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1324 | 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] | 1325 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]); |
| 1326 | } else { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1327 | 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] | 1328 | memcpy(dst, &src[offset * width], count * width); |
| 1329 | } |
| 1330 | } else { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1331 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1332 | mirror::ObjectArray<mirror::Object>* oa = a->AsObjectArray<mirror::Object>(); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1333 | for (int i = 0; i < count; ++i) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1334 | mirror::Object* element = oa->Get(offset + i); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1335 | JDWP::JdwpTag specific_tag = (element != nullptr) ? TagFromObject(soa, element) |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1336 | : element_tag; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 1337 | expandBufAdd1(pReply, specific_tag); |
| 1338 | expandBufAddObjectId(pReply, gRegistry->Add(element)); |
| 1339 | } |
| 1340 | } |
| 1341 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1342 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1343 | } |
| 1344 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1345 | template <typename T> |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1346 | 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] | 1347 | NO_THREAD_SAFETY_ANALYSIS { |
| 1348 | // TODO: fix when annotalysis correctly handles non-member functions. |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1349 | DCHECK(a->GetClass()->IsPrimitiveArray()); |
| 1350 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1351 | T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1352 | for (int i = 0; i < count; ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1353 | *dst++ = src->ReadValue(sizeof(T)); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1354 | } |
| 1355 | } |
| 1356 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1357 | JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId array_id, int offset, int count, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1358 | JDWP::Request* request) { |
| 1359 | JDWP::JdwpError error; |
| 1360 | mirror::Array* dst = DecodeNonNullArray(array_id, &error); |
| 1361 | if (dst == nullptr) { |
| 1362 | return error; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1363 | } |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1364 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1365 | if (offset < 0 || count < 0 || offset > dst->GetLength() || dst->GetLength() - offset < count) { |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1366 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1367 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1368 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1369 | JDWP::JdwpTag element_tag = BasicTagFromClass(dst->GetClass()->GetComponentType()); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1370 | |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 1371 | if (IsPrimitiveTag(element_tag)) { |
| 1372 | size_t width = GetTagWidth(element_tag); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1373 | if (width == 8) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1374 | CopyArrayData<uint64_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1375 | } else if (width == 4) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1376 | CopyArrayData<uint32_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1377 | } else if (width == 2) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1378 | CopyArrayData<uint16_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1379 | } else { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1380 | CopyArrayData<uint8_t>(dst, request, offset, count); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1381 | } |
| 1382 | } else { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 1383 | mirror::ObjectArray<mirror::Object>* oa = dst->AsObjectArray<mirror::Object>(); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1384 | for (int i = 0; i < count; ++i) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1385 | JDWP::ObjectId id = request->ReadObjectId(); |
| 1386 | JDWP::JdwpError error; |
| 1387 | mirror::Object* o = gRegistry->Get<mirror::Object*>(id, &error); |
| 1388 | if (error != JDWP::ERR_NONE) { |
| 1389 | return error; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1390 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1391 | oa->Set<false>(offset + i, o); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 1392 | } |
| 1393 | } |
| 1394 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1395 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1396 | } |
| 1397 | |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1398 | JDWP::ObjectId Dbg::CreateString(const std::string& str) { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1399 | return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str())); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1400 | } |
| 1401 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1402 | JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) { |
| 1403 | JDWP::JdwpError error; |
| 1404 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1405 | if (c == nullptr) { |
| 1406 | *new_object = 0; |
| 1407 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1408 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1409 | *new_object = gRegistry->Add(c->AllocObject(Thread::Current())); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1410 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1411 | } |
| 1412 | |
Elliott Hughes | bf13d36 | 2011-12-08 15:51:37 -0800 | [diff] [blame] | 1413 | /* |
| 1414 | * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]". |
| 1415 | */ |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1416 | JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1417 | JDWP::ObjectId* new_array) { |
| 1418 | JDWP::JdwpError error; |
| 1419 | mirror::Class* c = DecodeClass(array_class_id, &error); |
| 1420 | if (c == nullptr) { |
| 1421 | *new_array = 0; |
| 1422 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1423 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1424 | *new_array = gRegistry->Add(mirror::Array::Alloc<true>(Thread::Current(), c, length, |
Hiroshi Yamauchi | f0edfc3 | 2014-09-25 11:46:46 -0700 | [diff] [blame] | 1425 | c->GetComponentSizeShift(), |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1426 | Runtime::Current()->GetHeap()->GetCurrentAllocator())); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1427 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1428 | } |
| 1429 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1430 | JDWP::FieldId Dbg::ToFieldId(const mirror::ArtField* f) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1431 | CHECK(!kMovingFields); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1432 | return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1433 | } |
| 1434 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1435 | static JDWP::MethodId ToMethodId(const mirror::ArtMethod* m) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1436 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1437 | CHECK(!kMovingMethods); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1438 | return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1439 | } |
| 1440 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1441 | static mirror::ArtField* FromFieldId(JDWP::FieldId fid) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1442 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1443 | CHECK(!kMovingFields); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1444 | return reinterpret_cast<mirror::ArtField*>(static_cast<uintptr_t>(fid)); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1445 | } |
| 1446 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1447 | static mirror::ArtMethod* FromMethodId(JDWP::MethodId mid) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1448 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1449 | CHECK(!kMovingMethods); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1450 | return reinterpret_cast<mirror::ArtMethod*>(static_cast<uintptr_t>(mid)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1451 | } |
| 1452 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1453 | bool Dbg::MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) { |
| 1454 | CHECK(event_thread != nullptr); |
| 1455 | JDWP::JdwpError error; |
| 1456 | mirror::Object* expected_thread_peer = gRegistry->Get<mirror::Object*>(expected_thread_id, |
| 1457 | &error); |
| 1458 | return expected_thread_peer == event_thread->GetPeer(); |
| 1459 | } |
| 1460 | |
| 1461 | bool Dbg::MatchLocation(const JDWP::JdwpLocation& expected_location, |
| 1462 | const JDWP::EventLocation& event_location) { |
| 1463 | if (expected_location.dex_pc != event_location.dex_pc) { |
| 1464 | return false; |
| 1465 | } |
| 1466 | mirror::ArtMethod* m = FromMethodId(expected_location.method_id); |
| 1467 | return m == event_location.method; |
| 1468 | } |
| 1469 | |
| 1470 | bool Dbg::MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1471 | if (event_class == nullptr) { |
| 1472 | return false; |
| 1473 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1474 | JDWP::JdwpError error; |
| 1475 | mirror::Class* expected_class = DecodeClass(class_id, &error); |
| 1476 | CHECK(expected_class != nullptr); |
| 1477 | return expected_class->IsAssignableFrom(event_class); |
| 1478 | } |
| 1479 | |
| 1480 | bool Dbg::MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id, |
| 1481 | mirror::ArtField* event_field) { |
| 1482 | mirror::ArtField* expected_field = FromFieldId(expected_field_id); |
| 1483 | if (expected_field != event_field) { |
| 1484 | return false; |
| 1485 | } |
| 1486 | return Dbg::MatchType(event_field->GetDeclaringClass(), expected_type_id); |
| 1487 | } |
| 1488 | |
| 1489 | bool Dbg::MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) { |
| 1490 | JDWP::JdwpError error; |
| 1491 | mirror::Object* modifier_instance = gRegistry->Get<mirror::Object*>(expected_instance_id, &error); |
| 1492 | return modifier_instance == event_instance; |
| 1493 | } |
| 1494 | |
| 1495 | 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] | 1496 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1497 | if (m == nullptr) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1498 | memset(location, 0, sizeof(*location)); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1499 | } else { |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1500 | mirror::Class* c = m->GetDeclaringClass(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1501 | location->type_tag = GetTypeTag(c); |
| 1502 | location->class_id = gRegistry->AddRefType(c); |
| 1503 | location->method_id = ToMethodId(m); |
| 1504 | 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] | 1505 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1506 | } |
| 1507 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1508 | std::string Dbg::GetMethodName(JDWP::MethodId method_id) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1509 | mirror::ArtMethod* m = FromMethodId(method_id); |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1510 | if (m == nullptr) { |
| 1511 | return "NULL"; |
| 1512 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1513 | return m->GetName(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1514 | } |
| 1515 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1516 | std::string Dbg::GetFieldName(JDWP::FieldId field_id) { |
Sebastien Hertz | a9aa0ff | 2014-09-19 12:07:51 +0200 | [diff] [blame] | 1517 | mirror::ArtField* f = FromFieldId(field_id); |
| 1518 | if (f == nullptr) { |
| 1519 | return "NULL"; |
| 1520 | } |
| 1521 | return f->GetName(); |
Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 1522 | } |
| 1523 | |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1524 | /* |
| 1525 | * Augment the access flags for synthetic methods and fields by setting |
| 1526 | * the (as described by the spec) "0xf0000000 bit". Also, strip out any |
| 1527 | * flags not specified by the Java programming language. |
| 1528 | */ |
| 1529 | static uint32_t MangleAccessFlags(uint32_t accessFlags) { |
| 1530 | accessFlags &= kAccJavaFlagsMask; |
| 1531 | if ((accessFlags & kAccSynthetic) != 0) { |
| 1532 | accessFlags |= 0xf0000000; |
| 1533 | } |
| 1534 | return accessFlags; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1535 | } |
| 1536 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1537 | /* |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1538 | * Circularly shifts registers so that arguments come first. Debuggers |
| 1539 | * expect slots to begin with arguments, but dex code places them at |
| 1540 | * the end. |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1541 | */ |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1542 | static uint16_t MangleSlot(uint16_t slot, mirror::ArtMethod* m) |
| 1543 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1544 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1545 | if (code_item == nullptr) { |
| 1546 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1547 | // return the slot as is since all registers are arguments. |
| 1548 | LOG(WARNING) << "Trying to mangle slot for method without code " << PrettyMethod(m); |
| 1549 | return slot; |
| 1550 | } |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1551 | uint16_t ins_size = code_item->ins_size_; |
| 1552 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1553 | if (slot >= locals_size) { |
| 1554 | return slot - locals_size; |
| 1555 | } else { |
| 1556 | return slot + ins_size; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1557 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1558 | } |
| 1559 | |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1560 | /* |
| 1561 | * Circularly shifts registers so that arguments come last. Reverts |
| 1562 | * slots to dex style argument placement. |
| 1563 | */ |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1564 | static uint16_t DemangleSlot(uint16_t slot, mirror::ArtMethod* m) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1565 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1566 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1567 | if (code_item == nullptr) { |
| 1568 | // We should not get here for a method without code (native, proxy or abstract). Log it and |
| 1569 | // return the slot as is since all registers are arguments. |
| 1570 | LOG(WARNING) << "Trying to demangle slot for method without code " << PrettyMethod(m); |
| 1571 | return slot; |
| 1572 | } |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1573 | uint16_t ins_size = code_item->ins_size_; |
| 1574 | uint16_t locals_size = code_item->registers_size_ - ins_size; |
| 1575 | if (slot < ins_size) { |
| 1576 | return slot + locals_size; |
| 1577 | } else { |
| 1578 | return slot - ins_size; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1579 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1580 | } |
| 1581 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1582 | 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] | 1583 | JDWP::JdwpError error; |
| 1584 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1585 | if (c == nullptr) { |
| 1586 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1587 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1588 | |
| 1589 | size_t instance_field_count = c->NumInstanceFields(); |
| 1590 | size_t static_field_count = c->NumStaticFields(); |
| 1591 | |
| 1592 | expandBufAdd4BE(pReply, instance_field_count + static_field_count); |
| 1593 | |
| 1594 | 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] | 1595 | 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] | 1596 | expandBufAddFieldId(pReply, ToFieldId(f)); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1597 | expandBufAddUtf8String(pReply, f->GetName()); |
| 1598 | expandBufAddUtf8String(pReply, f->GetTypeDescriptor()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1599 | if (with_generic) { |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1600 | static const char genericSignature[1] = ""; |
| 1601 | expandBufAddUtf8String(pReply, genericSignature); |
| 1602 | } |
| 1603 | expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); |
| 1604 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1605 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1606 | } |
| 1607 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1608 | JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId class_id, bool with_generic, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1609 | JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1610 | JDWP::JdwpError error; |
| 1611 | mirror::Class* c = DecodeClass(class_id, &error); |
| 1612 | if (c == nullptr) { |
| 1613 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1614 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1615 | |
| 1616 | size_t direct_method_count = c->NumDirectMethods(); |
| 1617 | size_t virtual_method_count = c->NumVirtualMethods(); |
| 1618 | |
| 1619 | expandBufAdd4BE(pReply, direct_method_count + virtual_method_count); |
| 1620 | |
| 1621 | 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] | 1622 | 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] | 1623 | expandBufAddMethodId(pReply, ToMethodId(m)); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1624 | expandBufAddUtf8String(pReply, m->GetName()); |
| 1625 | expandBufAddUtf8String(pReply, m->GetSignature().ToString()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1626 | if (with_generic) { |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1627 | static const char genericSignature[1] = ""; |
| 1628 | expandBufAddUtf8String(pReply, genericSignature); |
| 1629 | } |
| 1630 | expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags())); |
| 1631 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1632 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1633 | } |
| 1634 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1635 | JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1636 | JDWP::JdwpError error; |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1637 | Thread* self = Thread::Current(); |
| 1638 | StackHandleScope<1> hs(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1639 | Handle<mirror::Class> c(hs.NewHandle(DecodeClass(class_id, &error))); |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1640 | if (c.Get() == nullptr) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1641 | return error; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1642 | } |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1643 | size_t interface_count = c->NumDirectInterfaces(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1644 | expandBufAdd4BE(pReply, interface_count); |
| 1645 | for (size_t i = 0; i < interface_count; ++i) { |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 1646 | expandBufAddRefTypeId(pReply, |
| 1647 | gRegistry->AddRefType(mirror::Class::GetDirectInterface(self, c, i))); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1648 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1649 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1650 | } |
| 1651 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1652 | void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId method_id, JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1653 | struct DebugCallbackContext { |
| 1654 | int numItems; |
| 1655 | JDWP::ExpandBuf* pReply; |
| 1656 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1657 | static bool Callback(void* context, uint32_t address, uint32_t line_number) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1658 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1659 | expandBufAdd8BE(pContext->pReply, address); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1660 | expandBufAdd4BE(pContext->pReply, line_number); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1661 | pContext->numItems++; |
Sebastien Hertz | f2910ee | 2013-10-19 16:39:24 +0200 | [diff] [blame] | 1662 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1663 | } |
| 1664 | }; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1665 | mirror::ArtMethod* m = FromMethodId(method_id); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1666 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1667 | uint64_t start, end; |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1668 | if (code_item == nullptr) { |
| 1669 | DCHECK(m->IsNative() || m->IsProxyMethod()); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1670 | start = -1; |
| 1671 | end = -1; |
| 1672 | } else { |
| 1673 | start = 0; |
jeffhao | 14f0db9 | 2012-12-14 17:50:42 -0800 | [diff] [blame] | 1674 | // Return the index of the last instruction |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1675 | end = code_item->insns_size_in_code_units_ - 1; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1676 | } |
| 1677 | |
| 1678 | expandBufAdd8BE(pReply, start); |
| 1679 | expandBufAdd8BE(pReply, end); |
| 1680 | |
| 1681 | // Add numLines later |
| 1682 | size_t numLinesOffset = expandBufGetLength(pReply); |
| 1683 | expandBufAdd4BE(pReply, 0); |
| 1684 | |
| 1685 | DebugCallbackContext context; |
| 1686 | context.numItems = 0; |
| 1687 | context.pReply = pReply; |
| 1688 | |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1689 | if (code_item != nullptr) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1690 | m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1691 | DebugCallbackContext::Callback, nullptr, &context); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1692 | } |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1693 | |
| 1694 | JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1695 | } |
| 1696 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1697 | void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId method_id, bool with_generic, |
| 1698 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1699 | struct DebugCallbackContext { |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1700 | mirror::ArtMethod* method; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1701 | JDWP::ExpandBuf* pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1702 | size_t variable_count; |
| 1703 | bool with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1704 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1705 | static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, |
| 1706 | const char* name, const char* descriptor, const char* signature) |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1707 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1708 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1709 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1710 | VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", |
| 1711 | pContext->variable_count, startAddress, endAddress - startAddress, |
| 1712 | name, descriptor, signature, slot, |
| 1713 | MangleSlot(slot, pContext->method)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1714 | |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1715 | slot = MangleSlot(slot, pContext->method); |
Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1716 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1717 | expandBufAdd8BE(pContext->pReply, startAddress); |
| 1718 | expandBufAddUtf8String(pContext->pReply, name); |
| 1719 | expandBufAddUtf8String(pContext->pReply, descriptor); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1720 | if (pContext->with_generic) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1721 | expandBufAddUtf8String(pContext->pReply, signature); |
| 1722 | } |
| 1723 | expandBufAdd4BE(pContext->pReply, endAddress - startAddress); |
| 1724 | expandBufAdd4BE(pContext->pReply, slot); |
| 1725 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1726 | ++pContext->variable_count; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1727 | } |
| 1728 | }; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1729 | mirror::ArtMethod* m = FromMethodId(method_id); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1730 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1731 | // arg_count considers doubles and longs to take 2 units. |
| 1732 | // variable_count considers everything to take 1 unit. |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1733 | std::string shorty(m->GetShorty()); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1734 | expandBufAdd4BE(pReply, mirror::ArtMethod::NumArgRegisters(shorty)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1735 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1736 | // We don't know the total number of variables yet, so leave a blank and update it later. |
| 1737 | size_t variable_count_offset = expandBufGetLength(pReply); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1738 | expandBufAdd4BE(pReply, 0); |
| 1739 | |
| 1740 | DebugCallbackContext context; |
Jeff Hao | b7cefc7 | 2013-11-14 14:51:09 -0800 | [diff] [blame] | 1741 | context.method = m; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1742 | context.pReply = pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1743 | context.variable_count = 0; |
| 1744 | context.with_generic = with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1745 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1746 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1747 | if (code_item != nullptr) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1748 | m->GetDexFile()->DecodeDebugInfo( |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1749 | code_item, m->IsStatic(), m->GetDexMethodIndex(), nullptr, DebugCallbackContext::Callback, |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1750 | &context); |
Sebastien Hertz | cb19ebf | 2014-03-11 15:26:35 +0100 | [diff] [blame] | 1751 | } |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1752 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1753 | JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1754 | } |
| 1755 | |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1756 | void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, |
| 1757 | JDWP::ExpandBuf* pReply) { |
| 1758 | mirror::ArtMethod* m = FromMethodId(method_id); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1759 | JDWP::JdwpTag tag = BasicTagFromDescriptor(m->GetShorty()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1760 | OutputJValue(tag, return_value, pReply); |
| 1761 | } |
| 1762 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1763 | void Dbg::OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, |
| 1764 | JDWP::ExpandBuf* pReply) { |
| 1765 | mirror::ArtField* f = FromFieldId(field_id); |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1766 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 1767 | OutputJValue(tag, field_value, pReply); |
| 1768 | } |
| 1769 | |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1770 | JDWP::JdwpError Dbg::GetBytecodes(JDWP::RefTypeId, JDWP::MethodId method_id, |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1771 | std::vector<uint8_t>* bytecodes) { |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1772 | mirror::ArtMethod* m = FromMethodId(method_id); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1773 | if (m == nullptr) { |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1774 | return JDWP::ERR_INVALID_METHODID; |
| 1775 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 1776 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1777 | size_t byte_count = code_item->insns_size_in_code_units_ * 2; |
| 1778 | const uint8_t* begin = reinterpret_cast<const uint8_t*>(code_item->insns_); |
| 1779 | const uint8_t* end = begin + byte_count; |
| 1780 | for (const uint8_t* p = begin; p != end; ++p) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1781 | bytecodes->push_back(*p); |
Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 1782 | } |
| 1783 | return JDWP::ERR_NONE; |
| 1784 | } |
| 1785 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1786 | JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId field_id) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1787 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1788 | } |
| 1789 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1790 | JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId field_id) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1791 | return BasicTagFromDescriptor(FromFieldId(field_id)->GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1792 | } |
| 1793 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1794 | static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId ref_type_id, JDWP::ObjectId object_id, |
| 1795 | JDWP::FieldId field_id, JDWP::ExpandBuf* pReply, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1796 | bool is_static) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1797 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1798 | JDWP::JdwpError error; |
| 1799 | mirror::Class* c = DecodeClass(ref_type_id, &error); |
| 1800 | if (ref_type_id != 0 && c == nullptr) { |
| 1801 | return error; |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1802 | } |
| 1803 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1804 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1805 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1806 | return JDWP::ERR_INVALID_OBJECT; |
| 1807 | } |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1808 | mirror::ArtField* f = FromFieldId(field_id); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1809 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1810 | mirror::Class* receiver_class = c; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1811 | if (receiver_class == nullptr && o != nullptr) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1812 | receiver_class = o->GetClass(); |
| 1813 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1814 | // TODO: should we give up now if receiver_class is nullptr? |
| 1815 | if (receiver_class != nullptr && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1816 | LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1817 | return JDWP::ERR_INVALID_FIELDID; |
| 1818 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1819 | |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1820 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1821 | // TODO: should we change the tests and check both? |
| 1822 | if (is_static) { |
| 1823 | if (!f->IsStatic()) { |
| 1824 | return JDWP::ERR_INVALID_FIELDID; |
| 1825 | } |
| 1826 | } else { |
| 1827 | if (f->IsStatic()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1828 | LOG(WARNING) << "Ignoring non-nullptr receiver for ObjectReference.SetValues on static field " |
| 1829 | << PrettyField(f); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1830 | } |
| 1831 | } |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1832 | if (f->IsStatic()) { |
| 1833 | o = f->GetDeclaringClass(); |
| 1834 | } |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1835 | |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1836 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1837 | JValue field_value; |
| 1838 | if (tag == JDWP::JT_VOID) { |
| 1839 | LOG(FATAL) << "Unknown tag: " << tag; |
| 1840 | } else if (!IsPrimitiveTag(tag)) { |
| 1841 | field_value.SetL(f->GetObject(o)); |
| 1842 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 1843 | field_value.SetJ(f->Get64(o)); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1844 | } else { |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1845 | field_value.SetI(f->Get32(o)); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1846 | } |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1847 | Dbg::OutputJValue(tag, &field_value, pReply); |
| 1848 | |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1849 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1850 | } |
| 1851 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1852 | JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1853 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1854 | return GetFieldValueImpl(0, object_id, field_id, pReply, false); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1855 | } |
| 1856 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1857 | JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, |
| 1858 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1859 | return GetFieldValueImpl(ref_type_id, 0, field_id, pReply, true); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1860 | } |
| 1861 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1862 | static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId object_id, JDWP::FieldId field_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1863 | uint64_t value, int width, bool is_static) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1864 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1865 | JDWP::JdwpError error; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1866 | mirror::Object* o = Dbg::GetObjectRegistry()->Get<mirror::Object*>(object_id, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1867 | if ((!is_static && o == nullptr) || error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1868 | return JDWP::ERR_INVALID_OBJECT; |
| 1869 | } |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1870 | mirror::ArtField* f = FromFieldId(field_id); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1871 | |
| 1872 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1873 | // TODO: should we change the tests and check both? |
| 1874 | if (is_static) { |
| 1875 | if (!f->IsStatic()) { |
| 1876 | return JDWP::ERR_INVALID_FIELDID; |
| 1877 | } |
| 1878 | } else { |
| 1879 | if (f->IsStatic()) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1880 | 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] | 1881 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1882 | } |
jeffhao | 0dfbb7e | 2012-11-28 15:26:03 -0800 | [diff] [blame] | 1883 | if (f->IsStatic()) { |
| 1884 | o = f->GetDeclaringClass(); |
| 1885 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1886 | |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1887 | JDWP::JdwpTag tag = BasicTagFromDescriptor(f->GetTypeDescriptor()); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1888 | |
| 1889 | if (IsPrimitiveTag(tag)) { |
| 1890 | if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1891 | CHECK_EQ(width, 8); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1892 | // Debugging can't use transactional mode (runtime only). |
| 1893 | f->Set64<false>(o, value); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1894 | } else { |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1895 | CHECK_LE(width, 4); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1896 | // Debugging can't use transactional mode (runtime only). |
| 1897 | f->Set32<false>(o, value); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1898 | } |
| 1899 | } else { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 1900 | mirror::Object* v = Dbg::GetObjectRegistry()->Get<mirror::Object*>(value, &error); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1901 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1902 | return JDWP::ERR_INVALID_OBJECT; |
| 1903 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1904 | if (v != nullptr) { |
Mathieu Chartier | 61c5ebc | 2014-06-05 17:42:53 -0700 | [diff] [blame] | 1905 | mirror::Class* field_type; |
| 1906 | { |
| 1907 | StackHandleScope<3> hs(Thread::Current()); |
| 1908 | HandleWrapper<mirror::Object> h_v(hs.NewHandleWrapper(&v)); |
| 1909 | HandleWrapper<mirror::ArtField> h_f(hs.NewHandleWrapper(&f)); |
| 1910 | HandleWrapper<mirror::Object> h_o(hs.NewHandleWrapper(&o)); |
| 1911 | field_type = FieldHelper(h_f).GetType(); |
| 1912 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1913 | if (!field_type->IsAssignableFrom(v->GetClass())) { |
| 1914 | return JDWP::ERR_INVALID_OBJECT; |
| 1915 | } |
| 1916 | } |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1917 | // Debugging can't use transactional mode (runtime only). |
| 1918 | f->SetObject<false>(o, v); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1919 | } |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1920 | |
| 1921 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1922 | } |
| 1923 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1924 | 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] | 1925 | int width) { |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1926 | return SetFieldValueImpl(object_id, field_id, value, width, false); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1927 | } |
| 1928 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 1929 | JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) { |
| 1930 | return SetFieldValueImpl(0, field_id, value, width, true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1931 | } |
| 1932 | |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1933 | JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1934 | JDWP::JdwpError error; |
Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 1935 | mirror::Object* obj = gRegistry->Get<mirror::Object*>(string_id, &error); |
| 1936 | if (error != JDWP::ERR_NONE) { |
| 1937 | return error; |
| 1938 | } |
| 1939 | if (obj == nullptr) { |
| 1940 | return JDWP::ERR_INVALID_OBJECT; |
| 1941 | } |
| 1942 | { |
| 1943 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1944 | mirror::Class* java_lang_String = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_String); |
| 1945 | if (!java_lang_String->IsAssignableFrom(obj->GetClass())) { |
| 1946 | // This isn't a string. |
| 1947 | return JDWP::ERR_INVALID_STRING; |
| 1948 | } |
| 1949 | } |
| 1950 | *str = obj->AsString()->ToModifiedUtf8(); |
| 1951 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1952 | } |
| 1953 | |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1954 | void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { |
| 1955 | if (IsPrimitiveTag(tag)) { |
| 1956 | expandBufAdd1(pReply, tag); |
| 1957 | if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) { |
| 1958 | expandBufAdd1(pReply, return_value->GetI()); |
| 1959 | } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) { |
| 1960 | expandBufAdd2BE(pReply, return_value->GetI()); |
| 1961 | } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) { |
| 1962 | expandBufAdd4BE(pReply, return_value->GetI()); |
| 1963 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 1964 | expandBufAdd8BE(pReply, return_value->GetJ()); |
| 1965 | } else { |
| 1966 | CHECK_EQ(tag, JDWP::JT_VOID); |
| 1967 | } |
| 1968 | } else { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1969 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1970 | mirror::Object* value = return_value->GetL(); |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 1971 | expandBufAdd1(pReply, TagFromObject(soa, value)); |
Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 1972 | expandBufAddObjectId(pReply, gRegistry->Add(value)); |
| 1973 | } |
| 1974 | } |
| 1975 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1976 | JDWP::JdwpError Dbg::GetThreadName(JDWP::ObjectId thread_id, std::string* name) { |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 1977 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1978 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1979 | JDWP::JdwpError error; |
| 1980 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 1981 | UNUSED(thread); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1982 | if (error != JDWP::ERR_NONE && error != JDWP::ERR_THREAD_NOT_ALIVE) { |
| 1983 | return error; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1984 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1985 | |
| 1986 | // 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] | 1987 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 1988 | CHECK(thread_object != nullptr) << error; |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 1989 | mirror::ArtField* java_lang_Thread_name_field = |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 1990 | soa.DecodeField(WellKnownClasses::java_lang_Thread_name); |
| 1991 | mirror::String* s = |
| 1992 | reinterpret_cast<mirror::String*>(java_lang_Thread_name_field->GetObject(thread_object)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 1993 | if (s != nullptr) { |
| 1994 | *name = s->ToModifiedUtf8(); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1995 | } |
| 1996 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1997 | } |
| 1998 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 1999 | JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2000 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2001 | JDWP::JdwpError error; |
| 2002 | mirror::Object* thread_object = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2003 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2004 | return JDWP::ERR_INVALID_OBJECT; |
| 2005 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2006 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroup"); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2007 | // Okay, so it's an object, but is it actually a thread? |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2008 | { |
| 2009 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2010 | Thread* thread = DecodeThread(soa, thread_id, &error); |
| 2011 | UNUSED(thread); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2012 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2013 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2014 | // Zombie threads are in the null group. |
| 2015 | expandBufAddObjectId(pReply, JDWP::ObjectId(0)); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2016 | error = JDWP::ERR_NONE; |
| 2017 | } else if (error == JDWP::ERR_NONE) { |
| 2018 | mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_Thread); |
| 2019 | CHECK(c != nullptr); |
| 2020 | mirror::ArtField* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;"); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2021 | CHECK(f != nullptr); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2022 | mirror::Object* group = f->GetObject(thread_object); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 2023 | CHECK(group != nullptr); |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2024 | JDWP::ObjectId thread_group_id = gRegistry->Add(group); |
| 2025 | expandBufAddObjectId(pReply, thread_group_id); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2026 | } |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2027 | return error; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2028 | } |
| 2029 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2030 | static mirror::Object* DecodeThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2031 | JDWP::ObjectId thread_group_id, JDWP::JdwpError* error) |
| 2032 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2033 | mirror::Object* thread_group = Dbg::GetObjectRegistry()->Get<mirror::Object*>(thread_group_id, |
| 2034 | error); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2035 | if (*error != JDWP::ERR_NONE) { |
| 2036 | return nullptr; |
| 2037 | } |
| 2038 | if (thread_group == nullptr) { |
| 2039 | *error = JDWP::ERR_INVALID_OBJECT; |
| 2040 | return nullptr; |
| 2041 | } |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2042 | mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup); |
| 2043 | CHECK(c != nullptr); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2044 | if (!c->IsAssignableFrom(thread_group->GetClass())) { |
| 2045 | // This is not a java.lang.ThreadGroup. |
| 2046 | *error = JDWP::ERR_INVALID_THREAD_GROUP; |
| 2047 | return nullptr; |
| 2048 | } |
| 2049 | *error = JDWP::ERR_NONE; |
| 2050 | return thread_group; |
| 2051 | } |
| 2052 | |
| 2053 | JDWP::JdwpError Dbg::GetThreadGroupName(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
| 2054 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2055 | JDWP::JdwpError error; |
| 2056 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2057 | if (error != JDWP::ERR_NONE) { |
| 2058 | return error; |
| 2059 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2060 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupName"); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2061 | mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 2062 | mirror::ArtField* f = c->FindInstanceField("name", "Ljava/lang/String;"); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2063 | CHECK(f != nullptr); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2064 | mirror::String* s = reinterpret_cast<mirror::String*>(f->GetObject(thread_group)); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2065 | |
| 2066 | std::string thread_group_name(s->ToModifiedUtf8()); |
| 2067 | expandBufAddUtf8String(pReply, thread_group_name); |
| 2068 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2069 | } |
| 2070 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2071 | JDWP::JdwpError Dbg::GetThreadGroupParent(JDWP::ObjectId thread_group_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 2072 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2073 | JDWP::JdwpError error; |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2074 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2075 | if (error != JDWP::ERR_NONE) { |
| 2076 | return error; |
| 2077 | } |
Mathieu Chartier | 2d5f39e | 2014-09-19 17:52:37 -0700 | [diff] [blame] | 2078 | mirror::Object* parent; |
| 2079 | { |
| 2080 | ScopedAssertNoThreadSuspension ants(soa.Self(), "Debugger: GetThreadGroupParent"); |
| 2081 | mirror::Class* c = soa.Decode<mirror::Class*>(WellKnownClasses::java_lang_ThreadGroup); |
| 2082 | CHECK(c != nullptr); |
| 2083 | mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;"); |
| 2084 | CHECK(f != nullptr); |
| 2085 | parent = f->GetObject(thread_group); |
| 2086 | } |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2087 | JDWP::ObjectId parent_group_id = gRegistry->Add(parent); |
| 2088 | expandBufAddObjectId(pReply, parent_group_id); |
| 2089 | return JDWP::ERR_NONE; |
| 2090 | } |
| 2091 | |
| 2092 | static void GetChildThreadGroups(ScopedObjectAccessUnchecked& soa, mirror::Object* thread_group, |
| 2093 | std::vector<JDWP::ObjectId>* child_thread_group_ids) |
| 2094 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 2095 | CHECK(thread_group != nullptr); |
| 2096 | |
| 2097 | // Get the ArrayList<ThreadGroup> "groups" out of this thread group... |
| 2098 | mirror::ArtField* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;"); |
| 2099 | mirror::Object* groups_array_list = groups_field->GetObject(thread_group); |
| 2100 | |
| 2101 | // Get the array and size out of the ArrayList<ThreadGroup>... |
| 2102 | mirror::ArtField* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;"); |
| 2103 | mirror::ArtField* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I"); |
| 2104 | mirror::ObjectArray<mirror::Object>* groups_array = |
| 2105 | array_field->GetObject(groups_array_list)->AsObjectArray<mirror::Object>(); |
| 2106 | const int32_t size = size_field->GetInt(groups_array_list); |
| 2107 | |
| 2108 | // Copy the first 'size' elements out of the array into the result. |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2109 | ObjectRegistry* registry = Dbg::GetObjectRegistry(); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2110 | for (int32_t i = 0; i < size; ++i) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2111 | child_thread_group_ids->push_back(registry->Add(groups_array->Get(i))); |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2112 | } |
| 2113 | } |
| 2114 | |
| 2115 | JDWP::JdwpError Dbg::GetThreadGroupChildren(JDWP::ObjectId thread_group_id, |
| 2116 | JDWP::ExpandBuf* pReply) { |
| 2117 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2118 | JDWP::JdwpError error; |
| 2119 | mirror::Object* thread_group = DecodeThreadGroup(soa, thread_group_id, &error); |
| 2120 | if (error != JDWP::ERR_NONE) { |
| 2121 | return error; |
| 2122 | } |
| 2123 | |
| 2124 | // Add child threads. |
| 2125 | { |
| 2126 | std::vector<JDWP::ObjectId> child_thread_ids; |
| 2127 | GetThreads(thread_group, &child_thread_ids); |
| 2128 | expandBufAdd4BE(pReply, child_thread_ids.size()); |
| 2129 | for (JDWP::ObjectId child_thread_id : child_thread_ids) { |
| 2130 | expandBufAddObjectId(pReply, child_thread_id); |
| 2131 | } |
| 2132 | } |
| 2133 | |
| 2134 | // Add child thread groups. |
| 2135 | { |
| 2136 | std::vector<JDWP::ObjectId> child_thread_groups_ids; |
| 2137 | GetChildThreadGroups(soa, thread_group, &child_thread_groups_ids); |
| 2138 | expandBufAdd4BE(pReply, child_thread_groups_ids.size()); |
| 2139 | for (JDWP::ObjectId child_thread_group_id : child_thread_groups_ids) { |
| 2140 | expandBufAddObjectId(pReply, child_thread_group_id); |
| 2141 | } |
| 2142 | } |
| 2143 | |
| 2144 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2145 | } |
| 2146 | |
| 2147 | JDWP::ObjectId Dbg::GetSystemThreadGroupId() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2148 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 2149 | mirror::ArtField* f = soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup); |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2150 | mirror::Object* group = f->GetObject(f->GetDeclaringClass()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 2151 | return gRegistry->Add(group); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2152 | } |
| 2153 | |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2154 | JDWP::JdwpThreadStatus Dbg::ToJdwpThreadStatus(ThreadState state) { |
| 2155 | switch (state) { |
| 2156 | case kBlocked: |
| 2157 | return JDWP::TS_MONITOR; |
| 2158 | case kNative: |
| 2159 | case kRunnable: |
| 2160 | case kSuspended: |
| 2161 | return JDWP::TS_RUNNING; |
| 2162 | case kSleeping: |
| 2163 | return JDWP::TS_SLEEPING; |
| 2164 | case kStarting: |
| 2165 | case kTerminated: |
| 2166 | return JDWP::TS_ZOMBIE; |
| 2167 | case kTimedWaiting: |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2168 | case kWaitingForCheckPointsToRun: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2169 | case kWaitingForDebuggerSend: |
| 2170 | case kWaitingForDebuggerSuspension: |
| 2171 | case kWaitingForDebuggerToAttach: |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2172 | case kWaitingForDeoptimization: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2173 | case kWaitingForGcToComplete: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2174 | case kWaitingForJniOnLoad: |
Sebastien Hertz | bae182c | 2013-12-17 10:42:03 +0100 | [diff] [blame] | 2175 | case kWaitingForMethodTracingStart: |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2176 | case kWaitingForSignalCatcherOutput: |
| 2177 | case kWaitingInMainDebuggerLoop: |
| 2178 | case kWaitingInMainSignalCatcherLoop: |
| 2179 | case kWaitingPerformingGc: |
| 2180 | case kWaiting: |
| 2181 | return JDWP::TS_WAIT; |
| 2182 | // Don't add a 'default' here so the compiler can spot incompatible enum changes. |
| 2183 | } |
| 2184 | LOG(FATAL) << "Unknown thread state: " << state; |
| 2185 | return JDWP::TS_ZOMBIE; |
| 2186 | } |
| 2187 | |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 2188 | JDWP::JdwpError Dbg::GetThreadStatus(JDWP::ObjectId thread_id, JDWP::JdwpThreadStatus* pThreadStatus, |
| 2189 | JDWP::JdwpSuspendStatus* pSuspendStatus) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2190 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2191 | |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2192 | *pSuspendStatus = JDWP::SUSPEND_STATUS_NOT_SUSPENDED; |
| 2193 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2194 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2195 | JDWP::JdwpError error; |
| 2196 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2197 | if (error != JDWP::ERR_NONE) { |
| 2198 | if (error == JDWP::ERR_THREAD_NOT_ALIVE) { |
| 2199 | *pThreadStatus = JDWP::TS_ZOMBIE; |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2200 | return JDWP::ERR_NONE; |
| 2201 | } |
| 2202 | return error; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2203 | } |
| 2204 | |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2205 | if (IsSuspendedForDebugger(soa, thread)) { |
| 2206 | *pSuspendStatus = JDWP::SUSPEND_STATUS_SUSPENDED; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 2207 | } |
| 2208 | |
Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 2209 | *pThreadStatus = ToJdwpThreadStatus(thread->GetState()); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2210 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2211 | } |
| 2212 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2213 | JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2214 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2215 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2216 | JDWP::JdwpError error; |
| 2217 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2218 | if (error != JDWP::ERR_NONE) { |
| 2219 | return error; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2220 | } |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2221 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2222 | expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2223 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2224 | } |
| 2225 | |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2226 | JDWP::JdwpError Dbg::Interrupt(JDWP::ObjectId thread_id) { |
| 2227 | ScopedObjectAccess soa(Thread::Current()); |
| 2228 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2229 | JDWP::JdwpError error; |
| 2230 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2231 | if (error != JDWP::ERR_NONE) { |
| 2232 | return error; |
| 2233 | } |
Ian Rogers | dd7624d | 2014-03-14 17:43:00 -0700 | [diff] [blame] | 2234 | thread->Interrupt(soa.Self()); |
Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 2235 | return JDWP::ERR_NONE; |
| 2236 | } |
| 2237 | |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2238 | static bool IsInDesiredThreadGroup(ScopedObjectAccessUnchecked& soa, |
| 2239 | mirror::Object* desired_thread_group, mirror::Object* peer) |
| 2240 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 2241 | // Do we want threads from all thread groups? |
| 2242 | if (desired_thread_group == nullptr) { |
| 2243 | return true; |
| 2244 | } |
| 2245 | mirror::ArtField* thread_group_field = soa.DecodeField(WellKnownClasses::java_lang_Thread_group); |
| 2246 | DCHECK(thread_group_field != nullptr); |
| 2247 | mirror::Object* group = thread_group_field->GetObject(peer); |
| 2248 | return (group == desired_thread_group); |
| 2249 | } |
| 2250 | |
Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 2251 | 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] | 2252 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 070f732 | 2014-09-09 12:08:49 +0200 | [diff] [blame] | 2253 | std::list<Thread*> all_threads_list; |
| 2254 | { |
| 2255 | MutexLock mu(Thread::Current(), *Locks::thread_list_lock_); |
| 2256 | all_threads_list = Runtime::Current()->GetThreadList()->GetList(); |
| 2257 | } |
| 2258 | for (Thread* t : all_threads_list) { |
| 2259 | if (t == Dbg::GetDebugThread()) { |
| 2260 | // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and |
| 2261 | // query all threads, so it's easier if we just don't tell them about this thread. |
| 2262 | continue; |
| 2263 | } |
| 2264 | if (t->IsStillStarting()) { |
| 2265 | // This thread is being started (and has been registered in the thread list). However, it is |
| 2266 | // not completely started yet so we must ignore it. |
| 2267 | continue; |
| 2268 | } |
| 2269 | mirror::Object* peer = t->GetPeer(); |
| 2270 | if (peer == nullptr) { |
| 2271 | // peer might be NULL if the thread is still starting up. We can't tell the debugger about |
| 2272 | // this thread yet. |
| 2273 | // TODO: if we identified threads to the debugger by their Thread* |
| 2274 | // rather than their peer's mirror::Object*, we could fix this. |
| 2275 | // Doing so might help us report ZOMBIE threads too. |
| 2276 | continue; |
| 2277 | } |
| 2278 | if (IsInDesiredThreadGroup(soa, thread_group, peer)) { |
| 2279 | thread_ids->push_back(gRegistry->Add(peer)); |
| 2280 | } |
| 2281 | } |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2282 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2283 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2284 | static int GetStackDepth(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2285 | struct CountStackDepthVisitor : public StackVisitor { |
Brian Carlstrom | 93ba893 | 2013-07-17 21:31:49 -0700 | [diff] [blame] | 2286 | explicit CountStackDepthVisitor(Thread* thread) |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2287 | : StackVisitor(thread, nullptr), depth(0) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2288 | |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 2289 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2290 | // annotalysis. |
| 2291 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2292 | if (!GetMethod()->IsRuntimeMethod()) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 2293 | ++depth; |
| 2294 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2295 | return true; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2296 | } |
| 2297 | size_t depth; |
| 2298 | }; |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 2299 | |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2300 | CountStackDepthVisitor visitor(thread); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2301 | visitor.WalkStack(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 2302 | return visitor.depth; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2303 | } |
| 2304 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2305 | JDWP::JdwpError Dbg::GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2306 | ScopedObjectAccess soa(Thread::Current()); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2307 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2308 | JDWP::JdwpError error; |
| 2309 | *result = 0; |
| 2310 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2311 | if (error != JDWP::ERR_NONE) { |
| 2312 | return error; |
| 2313 | } |
Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2314 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2315 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2316 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2317 | *result = GetStackDepth(thread); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2318 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2319 | } |
| 2320 | |
Ian Rogers | 306057f | 2012-11-26 12:45:53 -0800 | [diff] [blame] | 2321 | JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, |
| 2322 | size_t frame_count, JDWP::ExpandBuf* buf) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2323 | class GetFrameVisitor : public StackVisitor { |
| 2324 | public: |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2325 | GetFrameVisitor(Thread* thread, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2326 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2327 | : StackVisitor(thread, nullptr), depth_(0), |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2328 | start_frame_(start_frame), frame_count_(frame_count), buf_(buf) { |
| 2329 | expandBufAdd4BE(buf_, frame_count_); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2330 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2331 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2332 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2333 | // annotalysis. |
| 2334 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2335 | if (GetMethod()->IsRuntimeMethod()) { |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 2336 | 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] | 2337 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2338 | if (depth_ >= start_frame_ + frame_count_) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2339 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2340 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2341 | if (depth_ >= start_frame_) { |
| 2342 | JDWP::FrameId frame_id(GetFrameId()); |
| 2343 | JDWP::JdwpLocation location; |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2344 | SetJdwpLocation(&location, GetMethod(), GetDexPc()); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2345 | VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3" PRIu64 " ", depth_, frame_id) << location; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2346 | expandBufAdd8BE(buf_, frame_id); |
| 2347 | expandBufAddLocation(buf_, location); |
| 2348 | } |
| 2349 | ++depth_; |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2350 | return true; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2351 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2352 | |
| 2353 | private: |
| 2354 | size_t depth_; |
| 2355 | const size_t start_frame_; |
| 2356 | const size_t frame_count_; |
| 2357 | JDWP::ExpandBuf* buf_; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 2358 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2359 | |
| 2360 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2361 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2362 | JDWP::JdwpError error; |
| 2363 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2364 | if (error != JDWP::ERR_NONE) { |
| 2365 | return error; |
| 2366 | } |
Elliott Hughes | f15f4a0 | 2013-01-09 10:09:38 -0800 | [diff] [blame] | 2367 | if (!IsSuspendedForDebugger(soa, thread)) { |
| 2368 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2369 | } |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2370 | GetFrameVisitor visitor(thread, start_frame, frame_count, buf); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2371 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2372 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2373 | } |
| 2374 | |
| 2375 | JDWP::ObjectId Dbg::GetThreadSelfId() { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2376 | return GetThreadId(Thread::Current()); |
| 2377 | } |
| 2378 | |
| 2379 | JDWP::ObjectId Dbg::GetThreadId(Thread* thread) { |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 2380 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2381 | return gRegistry->Add(thread->GetPeer()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2382 | } |
| 2383 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2384 | void Dbg::SuspendVM() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2385 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2386 | } |
| 2387 | |
| 2388 | void Dbg::ResumeVM() { |
Elliott Hughes | c61a267 | 2012-06-21 14:52:29 -0700 | [diff] [blame] | 2389 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2390 | } |
| 2391 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2392 | JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId thread_id, bool request_suspension) { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2393 | Thread* self = Thread::Current(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2394 | ScopedLocalRef<jobject> peer(self->GetJniEnv(), nullptr); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2395 | { |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2396 | ScopedObjectAccess soa(self); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2397 | JDWP::JdwpError error; |
| 2398 | peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<mirror::Object*>(thread_id, &error))); |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2399 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2400 | if (peer.get() == nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2401 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2402 | } |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 2403 | // Suspend thread to build stack trace. Take suspend thread lock to avoid races with threads |
| 2404 | // trying to suspend this one. |
| 2405 | MutexLock mu(self, *Locks::thread_list_suspend_thread_lock_); |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2406 | bool timed_out; |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 2407 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 2408 | Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true, |
| 2409 | &timed_out); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2410 | if (thread != nullptr) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2411 | return JDWP::ERR_NONE; |
Elliott Hughes | f327e07 | 2013-01-09 16:01:26 -0800 | [diff] [blame] | 2412 | } else if (timed_out) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2413 | return JDWP::ERR_INTERNAL; |
| 2414 | } else { |
| 2415 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 2416 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2417 | } |
| 2418 | |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2419 | void Dbg::ResumeThread(JDWP::ObjectId thread_id) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2420 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2421 | JDWP::JdwpError error; |
| 2422 | mirror::Object* peer = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 2423 | CHECK(peer != nullptr) << error; |
jeffhao | a77f0f6 | 2012-12-05 17:19:31 -0800 | [diff] [blame] | 2424 | Thread* thread; |
| 2425 | { |
| 2426 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2427 | thread = Thread::FromManagedThread(soa, peer); |
| 2428 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2429 | if (thread == nullptr) { |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 2430 | LOG(WARNING) << "No such thread for resume: " << peer; |
| 2431 | return; |
| 2432 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2433 | bool needs_resume; |
| 2434 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2435 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2436 | needs_resume = thread->GetSuspendCount() > 0; |
| 2437 | } |
| 2438 | if (needs_resume) { |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 2439 | Runtime::Current()->GetThreadList()->Resume(thread, true); |
| 2440 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2441 | } |
| 2442 | |
| 2443 | void Dbg::SuspendSelf() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 2444 | Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2445 | } |
| 2446 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2447 | struct GetThisVisitor : public StackVisitor { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2448 | GetThisVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2449 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2450 | : StackVisitor(thread, context), this_object(nullptr), frame_id(frame_id) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2451 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2452 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2453 | // annotalysis. |
| 2454 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2455 | if (frame_id != GetFrameId()) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2456 | return true; // continue |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2457 | } else { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2458 | this_object = GetThisObject(); |
| 2459 | return false; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2460 | } |
Elliott Hughes | 86b0010 | 2011-12-05 17:54:26 -0800 | [diff] [blame] | 2461 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2462 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2463 | mirror::Object* this_object; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2464 | JDWP::FrameId frame_id; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2465 | }; |
| 2466 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2467 | JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, |
| 2468 | JDWP::ObjectId* result) { |
| 2469 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2470 | Thread* thread; |
| 2471 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 2472 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 2473 | JDWP::JdwpError error; |
| 2474 | thread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2475 | if (error != JDWP::ERR_NONE) { |
| 2476 | return error; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2477 | } |
Elliott Hughes | 9e0c175 | 2013-01-09 14:02:58 -0800 | [diff] [blame] | 2478 | if (!IsSuspendedForDebugger(soa, thread)) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2479 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 2480 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2481 | } |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2482 | std::unique_ptr<Context> context(Context::Create()); |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 2483 | GetThisVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2484 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 2485 | *result = gRegistry->Add(visitor.this_object); |
| 2486 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2487 | } |
| 2488 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2489 | // Walks the stack until we find the frame with the given FrameId. |
| 2490 | class FindFrameVisitor FINAL : public StackVisitor { |
| 2491 | public: |
| 2492 | FindFrameVisitor(Thread* thread, Context* context, JDWP::FrameId frame_id) |
| 2493 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
| 2494 | : StackVisitor(thread, context), frame_id_(frame_id), error_(JDWP::ERR_INVALID_FRAMEID) {} |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 2495 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2496 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2497 | // annotalysis. |
| 2498 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 2499 | if (GetFrameId() != frame_id_) { |
| 2500 | return true; // Not our frame, carry on. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2501 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2502 | mirror::ArtMethod* m = GetMethod(); |
| 2503 | if (m->IsNative()) { |
| 2504 | // We can't read/write local value from/into native method. |
| 2505 | error_ = JDWP::ERR_OPAQUE_FRAME; |
| 2506 | } else { |
| 2507 | // We found our frame. |
| 2508 | error_ = JDWP::ERR_NONE; |
| 2509 | } |
| 2510 | return false; |
| 2511 | } |
| 2512 | |
| 2513 | JDWP::JdwpError GetError() const { |
| 2514 | return error_; |
| 2515 | } |
| 2516 | |
| 2517 | private: |
| 2518 | const JDWP::FrameId frame_id_; |
| 2519 | JDWP::JdwpError error_; |
| 2520 | }; |
| 2521 | |
| 2522 | JDWP::JdwpError Dbg::GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) { |
| 2523 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2524 | JDWP::FrameId frame_id = request->ReadFrameId(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2525 | |
| 2526 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2527 | Thread* thread; |
| 2528 | { |
| 2529 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2530 | JDWP::JdwpError error; |
| 2531 | thread = DecodeThread(soa, thread_id, &error); |
| 2532 | if (error != JDWP::ERR_NONE) { |
| 2533 | return error; |
| 2534 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2535 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2536 | // Find the frame with the given frame_id. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2537 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2538 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2539 | visitor.WalkStack(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2540 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2541 | return visitor.GetError(); |
| 2542 | } |
| 2543 | |
| 2544 | // Read the values from visitor's context. |
| 2545 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2546 | expandBufAdd4BE(pReply, slot_count); /* "int values" */ |
| 2547 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2548 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2549 | JDWP::JdwpTag reqSigByte = request->ReadTag(); |
| 2550 | |
| 2551 | VLOG(jdwp) << " --> slot " << slot << " " << reqSigByte; |
| 2552 | |
| 2553 | size_t width = Dbg::GetTagWidth(reqSigByte); |
| 2554 | uint8_t* ptr = expandBufAddSpace(pReply, width+1); |
| 2555 | JDWP::JdwpError error = Dbg::GetLocalValue(visitor, soa, slot, reqSigByte, ptr, width); |
| 2556 | if (error != JDWP::ERR_NONE) { |
| 2557 | return error; |
| 2558 | } |
| 2559 | } |
| 2560 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2561 | } |
| 2562 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2563 | JDWP::JdwpError Dbg::GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, |
| 2564 | int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) { |
| 2565 | mirror::ArtMethod* m = visitor.GetMethod(); |
| 2566 | uint16_t reg = DemangleSlot(slot, m); |
| 2567 | // TODO: check that the tag is compatible with the actual type of the slot! |
| 2568 | // TODO: check slot is valid for this method or return INVALID_SLOT error. |
| 2569 | constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION; |
| 2570 | switch (tag) { |
| 2571 | case JDWP::JT_BOOLEAN: { |
| 2572 | CHECK_EQ(width, 1U); |
| 2573 | uint32_t intVal; |
| 2574 | if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { |
| 2575 | VLOG(jdwp) << "get boolean local " << reg << " = " << intVal; |
| 2576 | JDWP::Set1(buf + 1, intVal != 0); |
| 2577 | } else { |
| 2578 | VLOG(jdwp) << "failed to get boolean local " << reg; |
| 2579 | return kFailureErrorCode; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2580 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2581 | break; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2582 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2583 | case JDWP::JT_BYTE: { |
| 2584 | CHECK_EQ(width, 1U); |
| 2585 | uint32_t intVal; |
| 2586 | if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { |
| 2587 | VLOG(jdwp) << "get byte local " << reg << " = " << intVal; |
| 2588 | JDWP::Set1(buf + 1, intVal); |
| 2589 | } else { |
| 2590 | VLOG(jdwp) << "failed to get byte local " << reg; |
| 2591 | return kFailureErrorCode; |
| 2592 | } |
| 2593 | break; |
| 2594 | } |
| 2595 | case JDWP::JT_SHORT: |
| 2596 | case JDWP::JT_CHAR: { |
| 2597 | CHECK_EQ(width, 2U); |
| 2598 | uint32_t intVal; |
| 2599 | if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { |
| 2600 | VLOG(jdwp) << "get short/char local " << reg << " = " << intVal; |
| 2601 | JDWP::Set2BE(buf + 1, intVal); |
| 2602 | } else { |
| 2603 | VLOG(jdwp) << "failed to get short/char local " << reg; |
| 2604 | return kFailureErrorCode; |
| 2605 | } |
| 2606 | break; |
| 2607 | } |
| 2608 | case JDWP::JT_INT: { |
| 2609 | CHECK_EQ(width, 4U); |
| 2610 | uint32_t intVal; |
| 2611 | if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { |
| 2612 | VLOG(jdwp) << "get int local " << reg << " = " << intVal; |
| 2613 | JDWP::Set4BE(buf + 1, intVal); |
| 2614 | } else { |
| 2615 | VLOG(jdwp) << "failed to get int local " << reg; |
| 2616 | return kFailureErrorCode; |
| 2617 | } |
| 2618 | break; |
| 2619 | } |
| 2620 | case JDWP::JT_FLOAT: { |
| 2621 | CHECK_EQ(width, 4U); |
| 2622 | uint32_t intVal; |
| 2623 | if (visitor.GetVReg(m, reg, kFloatVReg, &intVal)) { |
| 2624 | VLOG(jdwp) << "get float local " << reg << " = " << intVal; |
| 2625 | JDWP::Set4BE(buf + 1, intVal); |
| 2626 | } else { |
| 2627 | VLOG(jdwp) << "failed to get float local " << reg; |
| 2628 | return kFailureErrorCode; |
| 2629 | } |
| 2630 | break; |
| 2631 | } |
| 2632 | case JDWP::JT_ARRAY: |
| 2633 | case JDWP::JT_CLASS_LOADER: |
| 2634 | case JDWP::JT_CLASS_OBJECT: |
| 2635 | case JDWP::JT_OBJECT: |
| 2636 | case JDWP::JT_STRING: |
| 2637 | case JDWP::JT_THREAD: |
| 2638 | case JDWP::JT_THREAD_GROUP: { |
| 2639 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| 2640 | uint32_t intVal; |
| 2641 | if (visitor.GetVReg(m, reg, kReferenceVReg, &intVal)) { |
| 2642 | mirror::Object* o = reinterpret_cast<mirror::Object*>(intVal); |
| 2643 | VLOG(jdwp) << "get " << tag << " object local " << reg << " = " << o; |
| 2644 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(o)) { |
| 2645 | LOG(FATAL) << "Register " << reg << " expected to hold " << tag << " object: " << o; |
| 2646 | } |
| 2647 | tag = TagFromObject(soa, o); |
| 2648 | JDWP::SetObjectId(buf + 1, gRegistry->Add(o)); |
| 2649 | } else { |
| 2650 | VLOG(jdwp) << "failed to get " << tag << " object local " << reg; |
| 2651 | return kFailureErrorCode; |
| 2652 | } |
| 2653 | break; |
| 2654 | } |
| 2655 | case JDWP::JT_DOUBLE: { |
| 2656 | CHECK_EQ(width, 8U); |
| 2657 | uint64_t longVal; |
| 2658 | if (visitor.GetVRegPair(m, reg, kDoubleLoVReg, kDoubleHiVReg, &longVal)) { |
| 2659 | VLOG(jdwp) << "get double local " << reg << " = " << longVal; |
| 2660 | JDWP::Set8BE(buf + 1, longVal); |
| 2661 | } else { |
| 2662 | VLOG(jdwp) << "failed to get double local " << reg; |
| 2663 | return kFailureErrorCode; |
| 2664 | } |
| 2665 | break; |
| 2666 | } |
| 2667 | case JDWP::JT_LONG: { |
| 2668 | CHECK_EQ(width, 8U); |
| 2669 | uint64_t longVal; |
| 2670 | if (visitor.GetVRegPair(m, reg, kLongLoVReg, kLongHiVReg, &longVal)) { |
| 2671 | VLOG(jdwp) << "get long local " << reg << " = " << longVal; |
| 2672 | JDWP::Set8BE(buf + 1, longVal); |
| 2673 | } else { |
| 2674 | VLOG(jdwp) << "failed to get long local " << reg; |
| 2675 | return kFailureErrorCode; |
| 2676 | } |
| 2677 | break; |
| 2678 | } |
| 2679 | default: |
| 2680 | LOG(FATAL) << "Unknown tag " << tag; |
| 2681 | break; |
| 2682 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2683 | |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2684 | // Prepend tag, which may have been updated. |
| 2685 | JDWP::Set1(buf, tag); |
| 2686 | return JDWP::ERR_NONE; |
| 2687 | } |
| 2688 | |
| 2689 | JDWP::JdwpError Dbg::SetLocalValues(JDWP::Request* request) { |
| 2690 | JDWP::ObjectId thread_id = request->ReadThreadId(); |
| 2691 | JDWP::FrameId frame_id = request->ReadFrameId(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2692 | |
| 2693 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2694 | Thread* thread; |
| 2695 | { |
| 2696 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
| 2697 | JDWP::JdwpError error; |
| 2698 | thread = DecodeThread(soa, thread_id, &error); |
| 2699 | if (error != JDWP::ERR_NONE) { |
| 2700 | return error; |
| 2701 | } |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 2702 | } |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2703 | // Find the frame with the given frame_id. |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 2704 | std::unique_ptr<Context> context(Context::Create()); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2705 | FindFrameVisitor visitor(thread, context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2706 | visitor.WalkStack(); |
Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 2707 | if (visitor.GetError() != JDWP::ERR_NONE) { |
| 2708 | return visitor.GetError(); |
| 2709 | } |
| 2710 | |
| 2711 | // Writes the values into visitor's context. |
| 2712 | int32_t slot_count = request->ReadSigned32("slot count"); |
| 2713 | for (int32_t i = 0; i < slot_count; ++i) { |
| 2714 | uint32_t slot = request->ReadUnsigned32("slot"); |
| 2715 | JDWP::JdwpTag sigByte = request->ReadTag(); |
| 2716 | size_t width = Dbg::GetTagWidth(sigByte); |
| 2717 | uint64_t value = request->ReadValue(width); |
| 2718 | |
| 2719 | VLOG(jdwp) << " --> slot " << slot << " " << sigByte << " " << value; |
| 2720 | JDWP::JdwpError error = Dbg::SetLocalValue(visitor, slot, sigByte, value, width); |
| 2721 | if (error != JDWP::ERR_NONE) { |
| 2722 | return error; |
| 2723 | } |
| 2724 | } |
| 2725 | return JDWP::ERR_NONE; |
| 2726 | } |
| 2727 | |
| 2728 | JDWP::JdwpError Dbg::SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag, |
| 2729 | uint64_t value, size_t width) { |
| 2730 | mirror::ArtMethod* m = visitor.GetMethod(); |
| 2731 | uint16_t reg = DemangleSlot(slot, m); |
| 2732 | // TODO: check that the tag is compatible with the actual type of the slot! |
| 2733 | // TODO: check slot is valid for this method or return INVALID_SLOT error. |
| 2734 | constexpr JDWP::JdwpError kFailureErrorCode = JDWP::ERR_ABSENT_INFORMATION; |
| 2735 | switch (tag) { |
| 2736 | case JDWP::JT_BOOLEAN: |
| 2737 | case JDWP::JT_BYTE: |
| 2738 | CHECK_EQ(width, 1U); |
| 2739 | if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) { |
| 2740 | VLOG(jdwp) << "failed to set boolean/byte local " << reg << " = " |
| 2741 | << static_cast<uint32_t>(value); |
| 2742 | return kFailureErrorCode; |
| 2743 | } |
| 2744 | break; |
| 2745 | case JDWP::JT_SHORT: |
| 2746 | case JDWP::JT_CHAR: |
| 2747 | CHECK_EQ(width, 2U); |
| 2748 | if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) { |
| 2749 | VLOG(jdwp) << "failed to set short/char local " << reg << " = " |
| 2750 | << static_cast<uint32_t>(value); |
| 2751 | return kFailureErrorCode; |
| 2752 | } |
| 2753 | break; |
| 2754 | case JDWP::JT_INT: |
| 2755 | CHECK_EQ(width, 4U); |
| 2756 | if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kIntVReg)) { |
| 2757 | VLOG(jdwp) << "failed to set int local " << reg << " = " |
| 2758 | << static_cast<uint32_t>(value); |
| 2759 | return kFailureErrorCode; |
| 2760 | } |
| 2761 | break; |
| 2762 | case JDWP::JT_FLOAT: |
| 2763 | CHECK_EQ(width, 4U); |
| 2764 | if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(value), kFloatVReg)) { |
| 2765 | VLOG(jdwp) << "failed to set float local " << reg << " = " |
| 2766 | << static_cast<uint32_t>(value); |
| 2767 | return kFailureErrorCode; |
| 2768 | } |
| 2769 | break; |
| 2770 | case JDWP::JT_ARRAY: |
| 2771 | case JDWP::JT_CLASS_LOADER: |
| 2772 | case JDWP::JT_CLASS_OBJECT: |
| 2773 | case JDWP::JT_OBJECT: |
| 2774 | case JDWP::JT_STRING: |
| 2775 | case JDWP::JT_THREAD: |
| 2776 | case JDWP::JT_THREAD_GROUP: { |
| 2777 | CHECK_EQ(width, sizeof(JDWP::ObjectId)); |
| 2778 | JDWP::JdwpError error; |
| 2779 | mirror::Object* o = gRegistry->Get<mirror::Object*>(static_cast<JDWP::ObjectId>(value), |
| 2780 | &error); |
| 2781 | if (error != JDWP::ERR_NONE) { |
| 2782 | VLOG(jdwp) << tag << " object " << o << " is an invalid object"; |
| 2783 | return JDWP::ERR_INVALID_OBJECT; |
| 2784 | } else if (!visitor.SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o)), |
| 2785 | kReferenceVReg)) { |
| 2786 | VLOG(jdwp) << "failed to set " << tag << " object local " << reg << " = " << o; |
| 2787 | return kFailureErrorCode; |
| 2788 | } |
| 2789 | break; |
| 2790 | } |
| 2791 | case JDWP::JT_DOUBLE: { |
| 2792 | CHECK_EQ(width, 8U); |
| 2793 | if (!visitor.SetVRegPair(m, reg, value, kDoubleLoVReg, kDoubleHiVReg)) { |
| 2794 | VLOG(jdwp) << "failed to set double local " << reg << " = " << value; |
| 2795 | return kFailureErrorCode; |
| 2796 | } |
| 2797 | break; |
| 2798 | } |
| 2799 | case JDWP::JT_LONG: { |
| 2800 | CHECK_EQ(width, 8U); |
| 2801 | if (!visitor.SetVRegPair(m, reg, value, kLongLoVReg, kLongHiVReg)) { |
| 2802 | VLOG(jdwp) << "failed to set double local " << reg << " = " << value; |
| 2803 | return kFailureErrorCode; |
| 2804 | } |
| 2805 | break; |
| 2806 | } |
| 2807 | default: |
| 2808 | LOG(FATAL) << "Unknown tag " << tag; |
| 2809 | break; |
| 2810 | } |
| 2811 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2812 | } |
| 2813 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2814 | static void SetEventLocation(JDWP::EventLocation* location, mirror::ArtMethod* m, uint32_t dex_pc) |
| 2815 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 2816 | DCHECK(location != nullptr); |
| 2817 | if (m == nullptr) { |
| 2818 | memset(location, 0, sizeof(*location)); |
| 2819 | } else { |
| 2820 | location->method = m; |
| 2821 | 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] | 2822 | } |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2823 | } |
| 2824 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 2825 | 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] | 2826 | int event_flags, const JValue* return_value) { |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2827 | if (!IsDebuggerActive()) { |
| 2828 | return; |
| 2829 | } |
| 2830 | DCHECK(m != nullptr); |
| 2831 | DCHECK_EQ(m->IsStatic(), this_object == nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2832 | JDWP::EventLocation location; |
| 2833 | SetEventLocation(&location, m, dex_pc); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2834 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2835 | gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2836 | } |
| 2837 | |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2838 | void Dbg::PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc, |
| 2839 | mirror::Object* this_object, mirror::ArtField* f) { |
| 2840 | if (!IsDebuggerActive()) { |
| 2841 | return; |
| 2842 | } |
| 2843 | DCHECK(m != nullptr); |
| 2844 | DCHECK(f != nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2845 | JDWP::EventLocation location; |
| 2846 | SetEventLocation(&location, m, dex_pc); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2847 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2848 | gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2849 | } |
| 2850 | |
| 2851 | void Dbg::PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc, |
| 2852 | mirror::Object* this_object, mirror::ArtField* f, |
| 2853 | const JValue* field_value) { |
| 2854 | if (!IsDebuggerActive()) { |
| 2855 | return; |
| 2856 | } |
| 2857 | DCHECK(m != nullptr); |
| 2858 | DCHECK(f != nullptr); |
| 2859 | DCHECK(field_value != nullptr); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2860 | JDWP::EventLocation location; |
| 2861 | SetEventLocation(&location, m, dex_pc); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2862 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2863 | gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true); |
Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 2864 | } |
| 2865 | |
| 2866 | void Dbg::PostException(const ThrowLocation& throw_location, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 2867 | mirror::ArtMethod* catch_method, |
Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 2868 | uint32_t catch_dex_pc, mirror::Throwable* exception_object) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2869 | if (!IsDebuggerActive()) { |
Ian Rogers | 0ad5bb8 | 2011-12-07 10:16:32 -0800 | [diff] [blame] | 2870 | return; |
| 2871 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2872 | JDWP::EventLocation exception_throw_location; |
| 2873 | SetEventLocation(&exception_throw_location, throw_location.GetMethod(), throw_location.GetDexPc()); |
| 2874 | JDWP::EventLocation exception_catch_location; |
| 2875 | SetEventLocation(&exception_catch_location, catch_method, catch_dex_pc); |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 2876 | |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2877 | gJdwpState->PostException(&exception_throw_location, exception_object, &exception_catch_location, |
| 2878 | throw_location.GetThis()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2879 | } |
| 2880 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 2881 | void Dbg::PostClassPrepare(mirror::Class* c) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2882 | if (!IsDebuggerActive()) { |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 2883 | return; |
| 2884 | } |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 2885 | gJdwpState->PostClassPrepare(c); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2886 | } |
| 2887 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2888 | void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object, |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 2889 | mirror::ArtMethod* m, uint32_t dex_pc, |
| 2890 | int event_flags, const JValue* return_value) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 2891 | if (!IsDebuggerActive() || dex_pc == static_cast<uint32_t>(-2) /* fake method exit */) { |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 2892 | return; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2893 | } |
| 2894 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2895 | if (IsBreakpoint(m, dex_pc)) { |
| 2896 | event_flags |= kBreakpoint; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2897 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2898 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2899 | // If the debugger is single-stepping one of our threads, check to |
| 2900 | // see if we're that thread and we've reached a step point. |
| 2901 | const SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
| 2902 | DCHECK(single_step_control != nullptr); |
| 2903 | if (single_step_control->is_active) { |
| 2904 | CHECK(!m->IsNative()); |
| 2905 | if (single_step_control->step_depth == JDWP::SD_INTO) { |
| 2906 | // Step into method calls. We break when the line number |
| 2907 | // or method pointer changes. If we're in SS_MIN mode, we |
| 2908 | // always stop. |
| 2909 | if (single_step_control->method != m) { |
| 2910 | event_flags |= kSingleStep; |
| 2911 | VLOG(jdwp) << "SS new method"; |
| 2912 | } else if (single_step_control->step_size == JDWP::SS_MIN) { |
| 2913 | event_flags |= kSingleStep; |
| 2914 | VLOG(jdwp) << "SS new instruction"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 2915 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2916 | event_flags |= kSingleStep; |
| 2917 | VLOG(jdwp) << "SS new line"; |
| 2918 | } |
| 2919 | } else if (single_step_control->step_depth == JDWP::SD_OVER) { |
| 2920 | // Step over method calls. We break when the line number is |
| 2921 | // different and the frame depth is <= the original frame |
| 2922 | // depth. (We can't just compare on the method, because we |
| 2923 | // might get unrolled past it by an exception, and it's tricky |
| 2924 | // to identify recursion.) |
| 2925 | |
| 2926 | int stack_depth = GetStackDepth(thread); |
| 2927 | |
| 2928 | if (stack_depth < single_step_control->stack_depth) { |
| 2929 | // Popped up one or more frames, always trigger. |
| 2930 | event_flags |= kSingleStep; |
| 2931 | VLOG(jdwp) << "SS method pop"; |
| 2932 | } else if (stack_depth == single_step_control->stack_depth) { |
| 2933 | // Same depth, see if we moved. |
| 2934 | if (single_step_control->step_size == JDWP::SS_MIN) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2935 | event_flags |= kSingleStep; |
| 2936 | VLOG(jdwp) << "SS new instruction"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 2937 | } else if (single_step_control->ContainsDexPc(dex_pc)) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2938 | event_flags |= kSingleStep; |
| 2939 | VLOG(jdwp) << "SS new line"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2940 | } |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2941 | } |
| 2942 | } else { |
| 2943 | CHECK_EQ(single_step_control->step_depth, JDWP::SD_OUT); |
| 2944 | // Return from the current method. We break when the frame |
| 2945 | // depth pops up. |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2946 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2947 | // This differs from the "method exit" break in that it stops |
| 2948 | // with the PC at the next instruction in the returned-to |
| 2949 | // function, rather than the end of the returning function. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2950 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 2951 | int stack_depth = GetStackDepth(thread); |
| 2952 | if (stack_depth < single_step_control->stack_depth) { |
| 2953 | event_flags |= kSingleStep; |
| 2954 | VLOG(jdwp) << "SS method pop"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2955 | } |
| 2956 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2957 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2958 | |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2959 | // If there's something interesting going on, see if it matches one |
| 2960 | // of the debugger filters. |
| 2961 | if (event_flags != 0) { |
Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 2962 | Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2963 | } |
| 2964 | } |
| 2965 | |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 2966 | size_t* Dbg::GetReferenceCounterForEvent(uint32_t instrumentation_event) { |
| 2967 | switch (instrumentation_event) { |
| 2968 | case instrumentation::Instrumentation::kMethodEntered: |
| 2969 | return &method_enter_event_ref_count_; |
| 2970 | case instrumentation::Instrumentation::kMethodExited: |
| 2971 | return &method_exit_event_ref_count_; |
| 2972 | case instrumentation::Instrumentation::kDexPcMoved: |
| 2973 | return &dex_pc_change_event_ref_count_; |
| 2974 | case instrumentation::Instrumentation::kFieldRead: |
| 2975 | return &field_read_event_ref_count_; |
| 2976 | case instrumentation::Instrumentation::kFieldWritten: |
| 2977 | return &field_write_event_ref_count_; |
| 2978 | case instrumentation::Instrumentation::kExceptionCaught: |
| 2979 | return &exception_catch_event_ref_count_; |
| 2980 | default: |
| 2981 | return nullptr; |
| 2982 | } |
| 2983 | } |
| 2984 | |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 2985 | // Process request while all mutator threads are suspended. |
| 2986 | void Dbg::ProcessDeoptimizationRequest(const DeoptimizationRequest& request) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 2987 | instrumentation::Instrumentation* instrumentation = Runtime::Current()->GetInstrumentation(); |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 2988 | switch (request.GetKind()) { |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 2989 | case DeoptimizationRequest::kNothing: |
| 2990 | LOG(WARNING) << "Ignoring empty deoptimization request."; |
| 2991 | break; |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 2992 | case DeoptimizationRequest::kRegisterForEvent: |
| 2993 | VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 2994 | request.InstrumentationEvent()); |
| 2995 | instrumentation->AddListener(&gDebugInstrumentationListener, request.InstrumentationEvent()); |
| 2996 | instrumentation_events_ |= request.InstrumentationEvent(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 2997 | break; |
| 2998 | case DeoptimizationRequest::kUnregisterForEvent: |
| 2999 | VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3000 | request.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3001 | instrumentation->RemoveListener(&gDebugInstrumentationListener, |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3002 | request.InstrumentationEvent()); |
| 3003 | instrumentation_events_ &= ~request.InstrumentationEvent(); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3004 | break; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3005 | case DeoptimizationRequest::kFullDeoptimization: |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3006 | VLOG(jdwp) << "Deoptimize the world ..."; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3007 | instrumentation->DeoptimizeEverything(); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3008 | VLOG(jdwp) << "Deoptimize the world DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3009 | break; |
| 3010 | case DeoptimizationRequest::kFullUndeoptimization: |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3011 | VLOG(jdwp) << "Undeoptimize the world ..."; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3012 | instrumentation->UndeoptimizeEverything(); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3013 | VLOG(jdwp) << "Undeoptimize the world DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3014 | break; |
| 3015 | case DeoptimizationRequest::kSelectiveDeoptimization: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3016 | VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " ..."; |
| 3017 | instrumentation->Deoptimize(request.Method()); |
| 3018 | VLOG(jdwp) << "Deoptimize method " << PrettyMethod(request.Method()) << " DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3019 | break; |
| 3020 | case DeoptimizationRequest::kSelectiveUndeoptimization: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3021 | VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " ..."; |
| 3022 | instrumentation->Undeoptimize(request.Method()); |
| 3023 | VLOG(jdwp) << "Undeoptimize method " << PrettyMethod(request.Method()) << " DONE"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3024 | break; |
| 3025 | default: |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3026 | LOG(FATAL) << "Unsupported deoptimization request kind " << request.GetKind(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3027 | break; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3028 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3029 | } |
| 3030 | |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3031 | void Dbg::DelayFullUndeoptimization() { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3032 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3033 | ++delayed_full_undeoptimization_count_; |
| 3034 | DCHECK_LE(delayed_full_undeoptimization_count_, full_deoptimization_event_count_); |
| 3035 | } |
| 3036 | |
| 3037 | void Dbg::ProcessDelayedFullUndeoptimizations() { |
| 3038 | // TODO: avoid taking the lock twice (once here and once in ManageDeoptimization). |
| 3039 | { |
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 | while (delayed_full_undeoptimization_count_ > 0) { |
| 3042 | DeoptimizationRequest req; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3043 | req.SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3044 | req.SetMethod(nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3045 | RequestDeoptimizationLocked(req); |
| 3046 | --delayed_full_undeoptimization_count_; |
| 3047 | } |
| 3048 | } |
| 3049 | ManageDeoptimization(); |
| 3050 | } |
| 3051 | |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3052 | void Dbg::RequestDeoptimization(const DeoptimizationRequest& req) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3053 | if (req.GetKind() == DeoptimizationRequest::kNothing) { |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3054 | // Nothing to do. |
| 3055 | return; |
| 3056 | } |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3057 | MutexLock mu(Thread::Current(), *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3058 | RequestDeoptimizationLocked(req); |
| 3059 | } |
| 3060 | |
| 3061 | void Dbg::RequestDeoptimizationLocked(const DeoptimizationRequest& req) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3062 | switch (req.GetKind()) { |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3063 | case DeoptimizationRequest::kRegisterForEvent: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3064 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3065 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3066 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3067 | req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3068 | if (*counter == 0) { |
Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3069 | 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] | 3070 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3071 | deoptimization_requests_.push_back(req); |
| 3072 | } |
| 3073 | *counter = *counter + 1; |
| 3074 | break; |
| 3075 | } |
| 3076 | case DeoptimizationRequest::kUnregisterForEvent: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3077 | DCHECK_NE(req.InstrumentationEvent(), 0u); |
| 3078 | size_t* counter = GetReferenceCounterForEvent(req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3079 | CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x", |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3080 | req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3081 | *counter = *counter - 1; |
| 3082 | if (*counter == 0) { |
Sebastien Hertz | 7d2ae43 | 2014-05-15 11:26:34 +0200 | [diff] [blame] | 3083 | 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] | 3084 | deoptimization_requests_.size(), req.InstrumentationEvent()); |
Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 3085 | deoptimization_requests_.push_back(req); |
| 3086 | } |
| 3087 | break; |
| 3088 | } |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3089 | case DeoptimizationRequest::kFullDeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3090 | DCHECK(req.Method() == nullptr); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3091 | if (full_deoptimization_event_count_ == 0) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3092 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3093 | << " for full deoptimization"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3094 | deoptimization_requests_.push_back(req); |
| 3095 | } |
| 3096 | ++full_deoptimization_event_count_; |
| 3097 | break; |
| 3098 | } |
| 3099 | case DeoptimizationRequest::kFullUndeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3100 | DCHECK(req.Method() == nullptr); |
Sebastien Hertz | e713d93 | 2014-05-15 10:48:53 +0200 | [diff] [blame] | 3101 | DCHECK_GT(full_deoptimization_event_count_, 0U); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3102 | --full_deoptimization_event_count_; |
| 3103 | if (full_deoptimization_event_count_ == 0) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3104 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
| 3105 | << " for full undeoptimization"; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3106 | deoptimization_requests_.push_back(req); |
| 3107 | } |
| 3108 | break; |
| 3109 | } |
| 3110 | case DeoptimizationRequest::kSelectiveDeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3111 | DCHECK(req.Method() != nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3112 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3113 | << " for deoptimization of " << PrettyMethod(req.Method()); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3114 | deoptimization_requests_.push_back(req); |
| 3115 | break; |
| 3116 | } |
| 3117 | case DeoptimizationRequest::kSelectiveUndeoptimization: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3118 | DCHECK(req.Method() != nullptr); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3119 | VLOG(jdwp) << "Queue request #" << deoptimization_requests_.size() |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3120 | << " for undeoptimization of " << PrettyMethod(req.Method()); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3121 | deoptimization_requests_.push_back(req); |
| 3122 | break; |
| 3123 | } |
| 3124 | default: { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3125 | LOG(FATAL) << "Unknown deoptimization request kind " << req.GetKind(); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3126 | break; |
| 3127 | } |
| 3128 | } |
| 3129 | } |
| 3130 | |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3131 | void Dbg::ManageDeoptimization() { |
| 3132 | Thread* const self = Thread::Current(); |
| 3133 | { |
| 3134 | // Avoid suspend/resume if there is no pending request. |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3135 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3136 | if (deoptimization_requests_.empty()) { |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3137 | return; |
| 3138 | } |
| 3139 | } |
| 3140 | CHECK_EQ(self->GetState(), kRunnable); |
| 3141 | self->TransitionFromRunnableToSuspended(kWaitingForDeoptimization); |
| 3142 | // We need to suspend mutator threads first. |
| 3143 | Runtime* const runtime = Runtime::Current(); |
| 3144 | runtime->GetThreadList()->SuspendAll(); |
| 3145 | const ThreadState old_state = self->SetStateUnsafe(kRunnable); |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3146 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 3147 | MutexLock mu(self, *Locks::deoptimization_lock_); |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3148 | size_t req_index = 0; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3149 | for (DeoptimizationRequest& request : deoptimization_requests_) { |
Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 3150 | VLOG(jdwp) << "Process deoptimization request #" << req_index++; |
Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 3151 | ProcessDeoptimizationRequest(request); |
| 3152 | } |
| 3153 | deoptimization_requests_.clear(); |
| 3154 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3155 | CHECK_EQ(self->SetStateUnsafe(old_state), kRunnable); |
| 3156 | runtime->GetThreadList()->ResumeAll(); |
| 3157 | self->TransitionFromSuspendedToRunnable(); |
| 3158 | } |
| 3159 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3160 | static bool IsMethodPossiblyInlined(Thread* self, mirror::ArtMethod* m) |
| 3161 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3162 | const DexFile::CodeItem* code_item = m->GetCodeItem(); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3163 | if (code_item == nullptr) { |
| 3164 | // TODO We should not be asked to watch location in a native or abstract method so the code item |
| 3165 | // should never be null. We could just check we never encounter this case. |
| 3166 | return false; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3167 | } |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3168 | // Note: method verifier may cause thread suspension. |
| 3169 | self->AssertThreadSuspensionIsAllowable(); |
Hiroshi Yamauchi | dc37617 | 2014-08-22 11:13:12 -0700 | [diff] [blame] | 3170 | StackHandleScope<3> hs(self); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3171 | mirror::Class* declaring_class = m->GetDeclaringClass(); |
| 3172 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(declaring_class->GetDexCache())); |
| 3173 | Handle<mirror::ClassLoader> class_loader(hs.NewHandle(declaring_class->GetClassLoader())); |
Hiroshi Yamauchi | dc37617 | 2014-08-22 11:13:12 -0700 | [diff] [blame] | 3174 | Handle<mirror::ArtMethod> method(hs.NewHandle(m)); |
Ian Rogers | 7b078e8 | 2014-09-10 14:44:24 -0700 | [diff] [blame] | 3175 | verifier::MethodVerifier verifier(self, dex_cache->GetDexFile(), dex_cache, class_loader, |
Hiroshi Yamauchi | dc37617 | 2014-08-22 11:13:12 -0700 | [diff] [blame] | 3176 | &m->GetClassDef(), code_item, m->GetDexMethodIndex(), method, |
Ian Rogers | 46960fe | 2014-05-23 10:43:43 -0700 | [diff] [blame] | 3177 | m->GetAccessFlags(), false, true, false); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3178 | // Note: we don't need to verify the method. |
| 3179 | return InlineMethodAnalyser::AnalyseMethodCode(&verifier, nullptr); |
| 3180 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3181 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3182 | static const Breakpoint* FindFirstBreakpointForMethod(mirror::ArtMethod* m) |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3183 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3184 | for (Breakpoint& breakpoint : gBreakpoints) { |
| 3185 | if (breakpoint.Method() == m) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3186 | return &breakpoint; |
| 3187 | } |
| 3188 | } |
| 3189 | return nullptr; |
| 3190 | } |
| 3191 | |
| 3192 | // Sanity checks all existing breakpoints on the same method. |
| 3193 | static void SanityCheckExistingBreakpoints(mirror::ArtMethod* m, bool need_full_deoptimization) |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3194 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::breakpoint_lock_) { |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3195 | for (const Breakpoint& breakpoint : gBreakpoints) { |
| 3196 | CHECK_EQ(need_full_deoptimization, breakpoint.NeedFullDeoptimization()); |
| 3197 | } |
| 3198 | if (need_full_deoptimization) { |
| 3199 | // We should have deoptimized everything but not "selectively" deoptimized this method. |
| 3200 | CHECK(Runtime::Current()->GetInstrumentation()->AreAllMethodsDeoptimized()); |
| 3201 | CHECK(!Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
| 3202 | } else { |
| 3203 | // We should have "selectively" deoptimized this method. |
| 3204 | // Note: while we have not deoptimized everything for this method, we may have done it for |
| 3205 | // another event. |
| 3206 | CHECK(Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3207 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3208 | } |
| 3209 | |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3210 | // Installs a breakpoint at the specified location. Also indicates through the deoptimization |
| 3211 | // request if we need to deoptimize. |
| 3212 | void Dbg::WatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
| 3213 | Thread* const self = Thread::Current(); |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 3214 | mirror::ArtMethod* m = FromMethodId(location->method_id); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3215 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3216 | |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3217 | const Breakpoint* existing_breakpoint; |
| 3218 | { |
| 3219 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3220 | existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3221 | } |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3222 | bool need_full_deoptimization; |
| 3223 | if (existing_breakpoint == nullptr) { |
| 3224 | // There is no breakpoint on this method yet: we need to deoptimize. If this method may be |
| 3225 | // inlined, we deoptimize everything; otherwise we deoptimize only this method. |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3226 | // Note: IsMethodPossiblyInlined goes into the method verifier and may cause thread suspension. |
| 3227 | // Therefore we must not hold any lock when we call it. |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3228 | need_full_deoptimization = IsMethodPossiblyInlined(self, m); |
| 3229 | if (need_full_deoptimization) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3230 | req->SetKind(DeoptimizationRequest::kFullDeoptimization); |
| 3231 | req->SetMethod(nullptr); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3232 | } else { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3233 | req->SetKind(DeoptimizationRequest::kSelectiveDeoptimization); |
| 3234 | req->SetMethod(m); |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3235 | } |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3236 | } else { |
| 3237 | // 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] | 3238 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3239 | req->SetMethod(nullptr); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3240 | |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3241 | need_full_deoptimization = existing_breakpoint->NeedFullDeoptimization(); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3242 | if (kIsDebugBuild) { |
| 3243 | ReaderMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3244 | SanityCheckExistingBreakpoints(m, need_full_deoptimization); |
| 3245 | } |
Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 3246 | } |
| 3247 | |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3248 | { |
| 3249 | WriterMutexLock mu(self, *Locks::breakpoint_lock_); |
| 3250 | gBreakpoints.push_back(Breakpoint(m, location->dex_pc, need_full_deoptimization)); |
| 3251 | VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " |
| 3252 | << gBreakpoints[gBreakpoints.size() - 1]; |
| 3253 | } |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3254 | } |
| 3255 | |
| 3256 | // Uninstalls a breakpoint at the specified location. Also indicates through the deoptimization |
| 3257 | // request if we need to undeoptimize. |
| 3258 | void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location, DeoptimizationRequest* req) { |
Sebastien Hertz | ed2be17 | 2014-08-19 15:33:43 +0200 | [diff] [blame] | 3259 | WriterMutexLock mu(Thread::Current(), *Locks::breakpoint_lock_); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3260 | mirror::ArtMethod* m = FromMethodId(location->method_id); |
| 3261 | DCHECK(m != nullptr) << "No method for method id " << location->method_id; |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3262 | bool need_full_deoptimization = false; |
| 3263 | for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) { |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3264 | if (gBreakpoints[i].DexPc() == location->dex_pc && gBreakpoints[i].Method() == m) { |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3265 | VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3266 | need_full_deoptimization = gBreakpoints[i].NeedFullDeoptimization(); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3267 | DCHECK_NE(need_full_deoptimization, Runtime::Current()->GetInstrumentation()->IsDeoptimized(m)); |
| 3268 | gBreakpoints.erase(gBreakpoints.begin() + i); |
| 3269 | break; |
| 3270 | } |
| 3271 | } |
| 3272 | const Breakpoint* const existing_breakpoint = FindFirstBreakpointForMethod(m); |
| 3273 | if (existing_breakpoint == nullptr) { |
| 3274 | // There is no more breakpoint on this method: we need to undeoptimize. |
| 3275 | if (need_full_deoptimization) { |
| 3276 | // This method required full deoptimization: we need to undeoptimize everything. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3277 | req->SetKind(DeoptimizationRequest::kFullUndeoptimization); |
| 3278 | req->SetMethod(nullptr); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3279 | } else { |
| 3280 | // This method required selective deoptimization: we need to undeoptimize only that method. |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 3281 | req->SetKind(DeoptimizationRequest::kSelectiveUndeoptimization); |
| 3282 | req->SetMethod(m); |
Sebastien Hertz | a76a6d4 | 2014-03-20 16:40:17 +0100 | [diff] [blame] | 3283 | } |
| 3284 | } else { |
| 3285 | // 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] | 3286 | req->SetKind(DeoptimizationRequest::kNothing); |
| 3287 | req->SetMethod(nullptr); |
Sebastien Hertz | 4d1e9ab | 2014-09-18 16:03:34 +0200 | [diff] [blame] | 3288 | if (kIsDebugBuild) { |
| 3289 | SanityCheckExistingBreakpoints(m, need_full_deoptimization); |
| 3290 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3291 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3292 | } |
| 3293 | |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3294 | // Scoped utility class to suspend a thread so that we may do tasks such as walk its stack. Doesn't |
| 3295 | // cause suspension if the thread is the current thread. |
| 3296 | class ScopedThreadSuspension { |
| 3297 | public: |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3298 | ScopedThreadSuspension(Thread* self, JDWP::ObjectId thread_id) |
Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 3299 | LOCKS_EXCLUDED(Locks::thread_list_lock_) |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3300 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3301 | thread_(nullptr), |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3302 | error_(JDWP::ERR_NONE), |
| 3303 | self_suspend_(false), |
Ian Rogers | 33e9566 | 2013-05-20 20:29:14 -0700 | [diff] [blame] | 3304 | other_suspend_(false) { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3305 | ScopedObjectAccessUnchecked soa(self); |
| 3306 | { |
| 3307 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3308 | thread_ = DecodeThread(soa, thread_id, &error_); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3309 | } |
| 3310 | if (error_ == JDWP::ERR_NONE) { |
| 3311 | if (thread_ == soa.Self()) { |
| 3312 | self_suspend_ = true; |
| 3313 | } else { |
| 3314 | soa.Self()->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension); |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3315 | jobject thread_peer = Dbg::GetObjectRegistry()->GetJObject(thread_id); |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3316 | bool timed_out; |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3317 | Thread* suspended_thread; |
| 3318 | { |
| 3319 | // Take suspend thread lock to avoid races with threads trying to suspend this one. |
| 3320 | MutexLock mu(soa.Self(), *Locks::thread_list_suspend_thread_lock_); |
Brian Carlstrom | ba32de4 | 2014-08-27 23:43:46 -0700 | [diff] [blame] | 3321 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 3322 | suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out); |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3323 | } |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3324 | CHECK_EQ(soa.Self()->TransitionFromSuspendedToRunnable(), kWaitingForDebuggerSuspension); |
Ian Rogers | f3d874c | 2014-07-17 18:52:42 -0700 | [diff] [blame] | 3325 | if (suspended_thread == nullptr) { |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3326 | // Thread terminated from under us while suspending. |
| 3327 | error_ = JDWP::ERR_INVALID_THREAD; |
| 3328 | } else { |
| 3329 | CHECK_EQ(suspended_thread, thread_); |
| 3330 | other_suspend_ = true; |
| 3331 | } |
| 3332 | } |
| 3333 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3334 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3335 | |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3336 | Thread* GetThread() const { |
| 3337 | return thread_; |
| 3338 | } |
| 3339 | |
| 3340 | JDWP::JdwpError GetError() const { |
| 3341 | return error_; |
| 3342 | } |
| 3343 | |
| 3344 | ~ScopedThreadSuspension() { |
| 3345 | if (other_suspend_) { |
| 3346 | Runtime::Current()->GetThreadList()->Resume(thread_, true); |
| 3347 | } |
| 3348 | } |
| 3349 | |
| 3350 | private: |
| 3351 | Thread* thread_; |
| 3352 | JDWP::JdwpError error_; |
| 3353 | bool self_suspend_; |
| 3354 | bool other_suspend_; |
| 3355 | }; |
| 3356 | |
| 3357 | JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize step_size, |
| 3358 | JDWP::JdwpStepDepth step_depth) { |
| 3359 | Thread* self = Thread::Current(); |
| 3360 | ScopedThreadSuspension sts(self, thread_id); |
| 3361 | if (sts.GetError() != JDWP::ERR_NONE) { |
| 3362 | return sts.GetError(); |
| 3363 | } |
| 3364 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3365 | // |
| 3366 | // Work out what Method* we're in, the current line number, and how deep the stack currently |
| 3367 | // is for step-out. |
| 3368 | // |
| 3369 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3370 | struct SingleStepStackVisitor : public StackVisitor { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3371 | explicit SingleStepStackVisitor(Thread* thread, SingleStepControl* single_step_control, |
| 3372 | int32_t* line_number) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 3373 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3374 | : StackVisitor(thread, nullptr), single_step_control_(single_step_control), |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3375 | line_number_(line_number) { |
| 3376 | DCHECK_EQ(single_step_control_, thread->GetSingleStepControl()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3377 | single_step_control_->method = nullptr; |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3378 | single_step_control_->stack_depth = 0; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3379 | } |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 3380 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3381 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 3382 | // annotalysis. |
| 3383 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3384 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3385 | if (!m->IsRuntimeMethod()) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3386 | ++single_step_control_->stack_depth; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3387 | if (single_step_control_->method == nullptr) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 3388 | mirror::DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache(); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3389 | single_step_control_->method = m; |
| 3390 | *line_number_ = -1; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3391 | if (dex_cache != nullptr) { |
Ian Rogers | 4445a7e | 2012-10-05 17:19:13 -0700 | [diff] [blame] | 3392 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3393 | *line_number_ = dex_file.GetLineNumFromPC(m, GetDexPc()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3394 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3395 | } |
| 3396 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3397 | return true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3398 | } |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3399 | |
| 3400 | SingleStepControl* const single_step_control_; |
| 3401 | int32_t* const line_number_; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3402 | }; |
Jeff Hao | 449db33 | 2013-04-12 18:30:52 -0700 | [diff] [blame] | 3403 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3404 | Thread* const thread = sts.GetThread(); |
| 3405 | SingleStepControl* const single_step_control = thread->GetSingleStepControl(); |
| 3406 | DCHECK(single_step_control != nullptr); |
| 3407 | int32_t line_number = -1; |
| 3408 | SingleStepStackVisitor visitor(thread, single_step_control, &line_number); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3409 | visitor.WalkStack(); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3410 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3411 | // |
| 3412 | // Find the dex_pc values that correspond to the current line, for line-based single-stepping. |
| 3413 | // |
| 3414 | |
| 3415 | struct DebugCallbackContext { |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3416 | explicit DebugCallbackContext(SingleStepControl* single_step_control, int32_t line_number, |
| 3417 | const DexFile::CodeItem* code_item) |
| 3418 | : single_step_control_(single_step_control), line_number_(line_number), code_item_(code_item), |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3419 | last_pc_valid(false), last_pc(0) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3420 | } |
| 3421 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3422 | static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3423 | DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3424 | if (static_cast<int32_t>(line_number) == context->line_number_) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3425 | if (!context->last_pc_valid) { |
| 3426 | // Everything from this address until the next line change is ours. |
| 3427 | context->last_pc = address; |
| 3428 | context->last_pc_valid = true; |
| 3429 | } |
| 3430 | // Otherwise, if we're already in a valid range for this line, |
| 3431 | // just keep going (shouldn't really happen)... |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3432 | } else if (context->last_pc_valid) { // and the line number is new |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3433 | // Add everything from the last entry up until here to the set |
| 3434 | 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] | 3435 | context->single_step_control_->dex_pcs.insert(dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3436 | } |
| 3437 | context->last_pc_valid = false; |
| 3438 | } |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3439 | return false; // There may be multiple entries for any given line. |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3440 | } |
| 3441 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3442 | ~DebugCallbackContext() { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3443 | // If the line number was the last in the position table... |
| 3444 | if (last_pc_valid) { |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3445 | size_t end = code_item_->insns_size_in_code_units_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3446 | for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3447 | single_step_control_->dex_pcs.insert(dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3448 | } |
| 3449 | } |
| 3450 | } |
| 3451 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3452 | SingleStepControl* const single_step_control_; |
| 3453 | const int32_t line_number_; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3454 | const DexFile::CodeItem* const code_item_; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3455 | bool last_pc_valid; |
| 3456 | uint32_t last_pc; |
| 3457 | }; |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3458 | single_step_control->dex_pcs.clear(); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 3459 | mirror::ArtMethod* m = single_step_control->method; |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3460 | if (!m->IsNative()) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3461 | const DexFile::CodeItem* const code_item = m->GetCodeItem(); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3462 | DebugCallbackContext context(single_step_control, line_number, code_item); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3463 | m->GetDexFile()->DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3464 | DebugCallbackContext::Callback, nullptr, &context); |
Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 3465 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3466 | |
| 3467 | // |
| 3468 | // Everything else... |
| 3469 | // |
| 3470 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3471 | single_step_control->step_size = step_size; |
| 3472 | single_step_control->step_depth = step_depth; |
| 3473 | single_step_control->is_active = true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 3474 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3475 | if (VLOG_IS_ON(jdwp)) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3476 | VLOG(jdwp) << "Single-step thread: " << *thread; |
| 3477 | VLOG(jdwp) << "Single-step step size: " << single_step_control->step_size; |
| 3478 | VLOG(jdwp) << "Single-step step depth: " << single_step_control->step_depth; |
| 3479 | VLOG(jdwp) << "Single-step current method: " << PrettyMethod(single_step_control->method); |
| 3480 | VLOG(jdwp) << "Single-step current line: " << line_number; |
| 3481 | VLOG(jdwp) << "Single-step current stack depth: " << single_step_control->stack_depth; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3482 | VLOG(jdwp) << "Single-step dex_pc values:"; |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3483 | for (uint32_t dex_pc : single_step_control->dex_pcs) { |
| 3484 | VLOG(jdwp) << StringPrintf(" %#x", dex_pc); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 3485 | } |
| 3486 | } |
| 3487 | |
| 3488 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3489 | } |
| 3490 | |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3491 | void Dbg::UnconfigureStep(JDWP::ObjectId thread_id) { |
| 3492 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 3493 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3494 | JDWP::JdwpError error; |
| 3495 | Thread* thread = DecodeThread(soa, thread_id, &error); |
Sebastien Hertz | 87118ed | 2013-11-26 17:57:18 +0100 | [diff] [blame] | 3496 | if (error == JDWP::ERR_NONE) { |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3497 | SingleStepControl* single_step_control = thread->GetSingleStepControl(); |
| 3498 | DCHECK(single_step_control != nullptr); |
Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 3499 | single_step_control->Clear(); |
Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 3500 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3501 | } |
| 3502 | |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3503 | static char JdwpTagToShortyChar(JDWP::JdwpTag tag) { |
| 3504 | switch (tag) { |
| 3505 | default: |
| 3506 | LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag); |
| 3507 | |
| 3508 | // Primitives. |
| 3509 | case JDWP::JT_BYTE: return 'B'; |
| 3510 | case JDWP::JT_CHAR: return 'C'; |
| 3511 | case JDWP::JT_FLOAT: return 'F'; |
| 3512 | case JDWP::JT_DOUBLE: return 'D'; |
| 3513 | case JDWP::JT_INT: return 'I'; |
| 3514 | case JDWP::JT_LONG: return 'J'; |
| 3515 | case JDWP::JT_SHORT: return 'S'; |
| 3516 | case JDWP::JT_VOID: return 'V'; |
| 3517 | case JDWP::JT_BOOLEAN: return 'Z'; |
| 3518 | |
| 3519 | // Reference types. |
| 3520 | case JDWP::JT_ARRAY: |
| 3521 | case JDWP::JT_OBJECT: |
| 3522 | case JDWP::JT_STRING: |
| 3523 | case JDWP::JT_THREAD: |
| 3524 | case JDWP::JT_THREAD_GROUP: |
| 3525 | case JDWP::JT_CLASS_LOADER: |
| 3526 | case JDWP::JT_CLASS_OBJECT: |
| 3527 | return 'L'; |
| 3528 | } |
| 3529 | } |
| 3530 | |
Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 3531 | JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id, |
| 3532 | JDWP::RefTypeId class_id, JDWP::MethodId method_id, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3533 | uint32_t arg_count, uint64_t* arg_values, |
| 3534 | JDWP::JdwpTag* arg_types, uint32_t options, |
| 3535 | JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, |
| 3536 | JDWP::ObjectId* pExceptionId) { |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3537 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 3538 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3539 | Thread* targetThread = nullptr; |
| 3540 | DebugInvokeReq* req = nullptr; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3541 | Thread* self = Thread::Current(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3542 | { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3543 | ScopedObjectAccessUnchecked soa(self); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3544 | MutexLock mu(soa.Self(), *Locks::thread_list_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3545 | JDWP::JdwpError error; |
| 3546 | targetThread = DecodeThread(soa, thread_id, &error); |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 3547 | if (error != JDWP::ERR_NONE) { |
| 3548 | LOG(ERROR) << "InvokeMethod request for invalid thread id " << thread_id; |
| 3549 | return error; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3550 | } |
| 3551 | req = targetThread->GetInvokeReq(); |
| 3552 | if (!req->ready) { |
| 3553 | LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread; |
| 3554 | return JDWP::ERR_INVALID_THREAD; |
| 3555 | } |
| 3556 | |
| 3557 | /* |
| 3558 | * We currently have a bug where we don't successfully resume the |
| 3559 | * target thread if the suspend count is too deep. We're expected to |
| 3560 | * require one "resume" for each "suspend", but when asked to execute |
| 3561 | * a method we have to resume fully and then re-suspend it back to the |
| 3562 | * same level. (The easiest way to cause this is to type "suspend" |
| 3563 | * multiple times in jdb.) |
| 3564 | * |
| 3565 | * It's unclear what this means when the event specifies "resume all" |
| 3566 | * and some threads are suspended more deeply than others. This is |
| 3567 | * a rare problem, so for now we just prevent it from hanging forever |
| 3568 | * by rejecting the method invocation request. Without this, we will |
| 3569 | * be stuck waiting on a suspended thread. |
| 3570 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3571 | int suspend_count; |
| 3572 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3573 | MutexLock mu2(soa.Self(), *Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3574 | suspend_count = targetThread->GetSuspendCount(); |
| 3575 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3576 | if (suspend_count > 1) { |
| 3577 | LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 3578 | return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here. |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3579 | } |
| 3580 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3581 | mirror::Object* receiver = gRegistry->Get<mirror::Object*>(object_id, &error); |
| 3582 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3583 | return JDWP::ERR_INVALID_OBJECT; |
| 3584 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3585 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3586 | mirror::Object* thread = gRegistry->Get<mirror::Object*>(thread_id, &error); |
| 3587 | if (error != JDWP::ERR_NONE) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3588 | return JDWP::ERR_INVALID_OBJECT; |
| 3589 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3590 | // TODO: check that 'thread' is actually a java.lang.Thread! |
| 3591 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3592 | mirror::Class* c = DecodeClass(class_id, &error); |
| 3593 | if (c == nullptr) { |
| 3594 | return error; |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 3595 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3596 | |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 3597 | mirror::ArtMethod* m = FromMethodId(method_id); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3598 | if (m->IsStatic() != (receiver == nullptr)) { |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3599 | return JDWP::ERR_INVALID_METHODID; |
| 3600 | } |
| 3601 | if (m->IsStatic()) { |
| 3602 | if (m->GetDeclaringClass() != c) { |
| 3603 | return JDWP::ERR_INVALID_METHODID; |
| 3604 | } |
| 3605 | } else { |
| 3606 | if (!m->GetDeclaringClass()->IsAssignableFrom(c)) { |
| 3607 | return JDWP::ERR_INVALID_METHODID; |
| 3608 | } |
| 3609 | } |
| 3610 | |
| 3611 | // Check the argument list matches the method. |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3612 | uint32_t shorty_len = 0; |
| 3613 | const char* shorty = m->GetShorty(&shorty_len); |
| 3614 | if (shorty_len - 1 != arg_count) { |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3615 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3616 | } |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3617 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3618 | { |
| 3619 | StackHandleScope<3> hs(soa.Self()); |
| 3620 | MethodHelper mh(hs.NewHandle(m)); |
| 3621 | HandleWrapper<mirror::Object> h_obj(hs.NewHandleWrapper(&receiver)); |
| 3622 | HandleWrapper<mirror::Class> h_klass(hs.NewHandleWrapper(&c)); |
| 3623 | const DexFile::TypeList* types = m->GetParameterTypeList(); |
| 3624 | for (size_t i = 0; i < arg_count; ++i) { |
| 3625 | if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) { |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3626 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3627 | } |
| 3628 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3629 | if (shorty[i + 1] == 'L') { |
| 3630 | // Did we really get an argument of an appropriate reference type? |
| 3631 | mirror::Class* parameter_type = mh.GetClassFromTypeIdx(types->GetTypeItem(i).type_idx_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3632 | mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i], &error); |
| 3633 | if (error != JDWP::ERR_NONE) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3634 | return JDWP::ERR_INVALID_OBJECT; |
| 3635 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3636 | if (argument != nullptr && !argument->InstanceOf(parameter_type)) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3637 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 3638 | } |
| 3639 | |
| 3640 | // Turn the on-the-wire ObjectId into a jobject. |
| 3641 | jvalue& v = reinterpret_cast<jvalue&>(arg_values[i]); |
| 3642 | v.l = gRegistry->GetJObject(arg_values[i]); |
| 3643 | } |
Elliott Hughes | 0920163 | 2013-04-15 15:50:07 -0700 | [diff] [blame] | 3644 | } |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3645 | // Update in case it moved. |
| 3646 | m = mh.GetMethod(); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3647 | } |
| 3648 | |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 3649 | req->receiver = receiver; |
| 3650 | req->thread = thread; |
| 3651 | req->klass = c; |
| 3652 | req->method = m; |
| 3653 | req->arg_count = arg_count; |
| 3654 | req->arg_values = arg_values; |
| 3655 | req->options = options; |
| 3656 | req->invoke_needed = true; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3657 | } |
| 3658 | |
| 3659 | // The fact that we've released the thread list lock is a bit risky --- if the thread goes |
| 3660 | // away we're sitting high and dry -- but we must release this before the ResumeAllThreads |
| 3661 | // call, and it's unwise to hold it during WaitForSuspend. |
| 3662 | |
| 3663 | { |
| 3664 | /* |
| 3665 | * We change our (JDWP thread) status, which should be THREAD_RUNNING, |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 3666 | * 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] | 3667 | * run out of memory. It's also a good idea to change it before locking |
| 3668 | * the invokeReq mutex, although that should never be held for long. |
| 3669 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3670 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3671 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3672 | VLOG(jdwp) << " Transferring control to event thread"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3673 | { |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 3674 | MutexLock mu(self, req->lock); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3675 | |
| 3676 | if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3677 | VLOG(jdwp) << " Resuming all threads"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3678 | thread_list->UndoDebuggerSuspensions(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3679 | } else { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3680 | VLOG(jdwp) << " Resuming event thread only"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3681 | thread_list->Resume(targetThread, true); |
| 3682 | } |
| 3683 | |
| 3684 | // Wait for the request to finish executing. |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 3685 | while (req->invoke_needed) { |
| 3686 | req->cond.Wait(self); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3687 | } |
| 3688 | } |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3689 | VLOG(jdwp) << " Control has returned from event thread"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3690 | |
| 3691 | /* wait for thread to re-suspend itself */ |
Brian Carlstrom | df62950 | 2013-07-17 22:39:56 -0700 | [diff] [blame] | 3692 | SuspendThread(thread_id, false /* request_suspension */); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3693 | self->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3694 | } |
| 3695 | |
| 3696 | /* |
| 3697 | * Suspend the threads. We waited for the target thread to suspend |
| 3698 | * itself, so all we need to do is suspend the others. |
| 3699 | * |
| 3700 | * The suspendAllThreads() call will double-suspend the event thread, |
| 3701 | * so we want to resume the target thread once to keep the books straight. |
| 3702 | */ |
| 3703 | if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3704 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3705 | VLOG(jdwp) << " Suspending all threads"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3706 | thread_list->SuspendAllForDebugger(); |
| 3707 | self->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3708 | VLOG(jdwp) << " Resuming event thread to balance the count"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3709 | thread_list->Resume(targetThread, true); |
| 3710 | } |
| 3711 | |
| 3712 | // Copy the result. |
| 3713 | *pResultTag = req->result_tag; |
| 3714 | if (IsPrimitiveTag(req->result_tag)) { |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 3715 | *pResultValue = req->result_value.GetJ(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3716 | } else { |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 3717 | *pResultValue = gRegistry->Add(req->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3718 | } |
| 3719 | *pExceptionId = req->exception; |
| 3720 | return req->error; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3721 | } |
| 3722 | |
| 3723 | void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3724 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3725 | |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 3726 | // We can be called while an exception is pending. We need |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3727 | // to preserve that across the method invocation. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3728 | StackHandleScope<4> hs(soa.Self()); |
| 3729 | auto old_throw_this_object = hs.NewHandle<mirror::Object>(nullptr); |
| 3730 | auto old_throw_method = hs.NewHandle<mirror::ArtMethod>(nullptr); |
| 3731 | auto old_exception = hs.NewHandle<mirror::Throwable>(nullptr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3732 | uint32_t old_throw_dex_pc; |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 3733 | bool old_exception_report_flag; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3734 | { |
| 3735 | ThrowLocation old_throw_location; |
| 3736 | mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3737 | old_throw_this_object.Assign(old_throw_location.GetThis()); |
| 3738 | old_throw_method.Assign(old_throw_location.GetMethod()); |
| 3739 | old_exception.Assign(old_exception_obj); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3740 | old_throw_dex_pc = old_throw_location.GetDexPc(); |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 3741 | old_exception_report_flag = soa.Self()->IsExceptionReportedToInstrumentation(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3742 | soa.Self()->ClearException(); |
| 3743 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3744 | |
| 3745 | // 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] | 3746 | MutableHandle<mirror::ArtMethod> m(hs.NewHandle(pReq->method)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3747 | if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3748 | mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get()); |
| 3749 | if (actual_method != m.Get()) { |
| 3750 | VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m.Get()) << " to " << PrettyMethod(actual_method); |
| 3751 | m.Assign(actual_method); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 3752 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3753 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3754 | VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m.Get()) |
Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 3755 | << " receiver=" << pReq->receiver |
| 3756 | << " arg_count=" << pReq->arg_count; |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3757 | CHECK(m.Get() != nullptr); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3758 | |
| 3759 | CHECK_EQ(sizeof(jvalue), sizeof(uint64_t)); |
| 3760 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3761 | pReq->result_value = InvokeWithJValues(soa, pReq->receiver, soa.EncodeMethod(m.Get()), |
Ian Rogers | 53b8b09 | 2014-03-13 23:45:53 -0700 | [diff] [blame] | 3762 | reinterpret_cast<jvalue*>(pReq->arg_values)); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3763 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3764 | mirror::Throwable* exception = soa.Self()->GetException(nullptr); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3765 | soa.Self()->ClearException(); |
| 3766 | pReq->exception = gRegistry->Add(exception); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 3767 | pReq->result_tag = BasicTagFromDescriptor(m.Get()->GetShorty()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3768 | if (pReq->exception != 0) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 3769 | VLOG(jdwp) << " JDWP invocation returning with exception=" << exception |
| 3770 | << " " << exception->Dump(); |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 3771 | pReq->result_value.SetJ(0); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3772 | } else if (pReq->result_tag == JDWP::JT_OBJECT) { |
| 3773 | /* if no exception thrown, examine object result more closely */ |
Ian Rogers | 9837939 | 2014-02-24 16:53:16 -0800 | [diff] [blame] | 3774 | JDWP::JdwpTag new_tag = TagFromObject(soa, pReq->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3775 | if (new_tag != pReq->result_tag) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3776 | VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3777 | pReq->result_tag = new_tag; |
| 3778 | } |
| 3779 | |
| 3780 | /* |
| 3781 | * Register the object. We don't actually need an ObjectId yet, |
| 3782 | * but we do need to be sure that the GC won't move or discard the |
| 3783 | * object when we switch out of RUNNING. The ObjectId conversion |
| 3784 | * will add the object to the "do not touch" list. |
| 3785 | * |
| 3786 | * We can't use the "tracked allocation" mechanism here because |
| 3787 | * the object is going to be handed off to a different thread. |
| 3788 | */ |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 3789 | gRegistry->Add(pReq->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3790 | } |
| 3791 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3792 | if (old_exception.Get() != nullptr) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3793 | 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] | 3794 | old_throw_dex_pc); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3795 | soa.Self()->SetException(gc_safe_throw_location, old_exception.Get()); |
Sebastien Hertz | 9f10203 | 2014-05-23 08:59:42 +0200 | [diff] [blame] | 3796 | soa.Self()->SetExceptionReportedToInstrumentation(old_exception_report_flag); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3797 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3798 | } |
| 3799 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 3800 | /* |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3801 | * "request" contains a full JDWP packet, possibly with multiple chunks. We |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3802 | * need to process each, accumulate the replies, and ship the whole thing |
| 3803 | * back. |
| 3804 | * |
| 3805 | * Returns "true" if we have a reply. The reply buffer is newly allocated, |
| 3806 | * and includes the chunk type/length, followed by the data. |
| 3807 | * |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 3808 | * 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] | 3809 | * chunk. If this becomes inconvenient we will need to adapt. |
| 3810 | */ |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3811 | bool Dbg::DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3812 | Thread* self = Thread::Current(); |
| 3813 | JNIEnv* env = self->GetJniEnv(); |
| 3814 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3815 | uint32_t type = request->ReadUnsigned32("type"); |
| 3816 | uint32_t length = request->ReadUnsigned32("length"); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3817 | |
| 3818 | // Create a byte[] corresponding to 'request'. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3819 | size_t request_length = request->size(); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3820 | ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(request_length)); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3821 | if (dataArray.get() == nullptr) { |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3822 | LOG(WARNING) << "byte[] allocation failed: " << request_length; |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3823 | env->ExceptionClear(); |
| 3824 | return false; |
| 3825 | } |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3826 | env->SetByteArrayRegion(dataArray.get(), 0, request_length, |
| 3827 | reinterpret_cast<const jbyte*>(request->data())); |
| 3828 | request->Skip(request_length); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3829 | |
| 3830 | // Run through and find all chunks. [Currently just find the first.] |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3831 | ScopedByteArrayRO contents(env, dataArray.get()); |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3832 | if (length != request_length) { |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 3833 | 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] | 3834 | return false; |
| 3835 | } |
| 3836 | |
| 3837 | // 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] | 3838 | ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 3839 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch, |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3840 | type, dataArray.get(), 0, length)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3841 | if (env->ExceptionCheck()) { |
| 3842 | LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type); |
| 3843 | env->ExceptionDescribe(); |
| 3844 | env->ExceptionClear(); |
| 3845 | return false; |
| 3846 | } |
| 3847 | |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3848 | if (chunk.get() == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3849 | return false; |
| 3850 | } |
| 3851 | |
| 3852 | /* |
| 3853 | * Pull the pieces out of the chunk. We copy the results into a |
| 3854 | * newly-allocated buffer that the caller can free. We don't want to |
| 3855 | * continue using the Chunk object because nothing has a reference to it. |
| 3856 | * |
| 3857 | * We could avoid this by returning type/data/offset/length and having |
| 3858 | * the caller be aware of the object lifetime issues, but that |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 3859 | * 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] | 3860 | * if we have responses for multiple chunks. |
| 3861 | * |
| 3862 | * So we're pretty much stuck with copying data around multiple times. |
| 3863 | */ |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 3864 | 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] | 3865 | 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] | 3866 | 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] | 3867 | 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] | 3868 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3869 | 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] | 3870 | if (length == 0 || replyData.get() == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3871 | return false; |
| 3872 | } |
| 3873 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3874 | const int kChunkHdrLen = 8; |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3875 | uint8_t* reply = new uint8_t[length + kChunkHdrLen]; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3876 | if (reply == nullptr) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3877 | LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen); |
| 3878 | return false; |
| 3879 | } |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 3880 | JDWP::Set4BE(reply + 0, type); |
| 3881 | JDWP::Set4BE(reply + 4, length); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3882 | env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 3883 | |
| 3884 | *pReplyBuf = reply; |
| 3885 | *pReplyLen = length + kChunkHdrLen; |
| 3886 | |
Elliott Hughes | 4b9702c | 2013-02-20 18:13:24 -0800 | [diff] [blame] | 3887 | 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] | 3888 | return true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3889 | } |
| 3890 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3891 | void Dbg::DdmBroadcast(bool connect) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 3892 | VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3893 | |
| 3894 | Thread* self = Thread::Current(); |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3895 | if (self->GetState() != kRunnable) { |
| 3896 | LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); |
| 3897 | /* try anyway? */ |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3898 | } |
| 3899 | |
| 3900 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3901 | jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 3902 | env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 3903 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast, |
| 3904 | event); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3905 | if (env->ExceptionCheck()) { |
| 3906 | LOG(ERROR) << "DdmServer.broadcast " << event << " failed"; |
| 3907 | env->ExceptionDescribe(); |
| 3908 | env->ExceptionClear(); |
| 3909 | } |
| 3910 | } |
| 3911 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3912 | void Dbg::DdmConnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3913 | Dbg::DdmBroadcast(true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3914 | } |
| 3915 | |
| 3916 | void Dbg::DdmDisconnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3917 | Dbg::DdmBroadcast(false); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3918 | gDdmThreadNotification = false; |
| 3919 | } |
| 3920 | |
| 3921 | /* |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3922 | * Send a notification when a thread starts, stops, or changes its name. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3923 | * |
| 3924 | * Because we broadcast the full set of threads when the notifications are |
| 3925 | * first enabled, it's possible for "thread" to be actively executing. |
| 3926 | */ |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3927 | void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3928 | if (!gDdmThreadNotification) { |
| 3929 | return; |
| 3930 | } |
| 3931 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3932 | if (type == CHUNK_TYPE("THDE")) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3933 | uint8_t buf[4]; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 3934 | JDWP::Set4BE(&buf[0], t->GetThreadId()); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3935 | Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf); |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3936 | } else { |
| 3937 | CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3938 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 3939 | StackHandleScope<1> hs(soa.Self()); |
| 3940 | Handle<mirror::String> name(hs.NewHandle(t->GetThreadName(soa))); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 3941 | size_t char_count = (name.Get() != nullptr) ? name->GetLength() : 0; |
| 3942 | const jchar* chars = (name.Get() != nullptr) ? name->GetCharArray()->GetData() : nullptr; |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3943 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 3944 | std::vector<uint8_t> bytes; |
Ian Rogers | d9c4fc9 | 2013-10-01 19:45:43 -0700 | [diff] [blame] | 3945 | JDWP::Append4BE(bytes, t->GetThreadId()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3946 | JDWP::AppendUtf16BE(bytes, chars, char_count); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 3947 | CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2); |
| 3948 | Dbg::DdmSendChunk(type, bytes); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3949 | } |
| 3950 | } |
| 3951 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3952 | void Dbg::DdmSetThreadNotification(bool enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3953 | // Enable/disable thread notifications. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3954 | gDdmThreadNotification = enable; |
| 3955 | if (enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3956 | // Suspend the VM then post thread start notifications for all threads. Threads attaching will |
| 3957 | // see a suspension in progress and block until that ends. They then post their own start |
| 3958 | // notification. |
| 3959 | SuspendVM(); |
| 3960 | std::list<Thread*> threads; |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3961 | Thread* self = Thread::Current(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3962 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3963 | MutexLock mu(self, *Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3964 | threads = Runtime::Current()->GetThreadList()->GetList(); |
| 3965 | } |
| 3966 | { |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 3967 | ScopedObjectAccess soa(self); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 3968 | for (Thread* thread : threads) { |
| 3969 | Dbg::DdmSendThreadNotification(thread, CHUNK_TYPE("THCR")); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3970 | } |
| 3971 | } |
| 3972 | ResumeVM(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3973 | } |
| 3974 | } |
| 3975 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3976 | void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 3977 | if (IsDebuggerActive()) { |
Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 3978 | gJdwpState->PostThreadChange(t, type == CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3979 | } |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3980 | Dbg::DdmSendThreadNotification(t, type); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3981 | } |
| 3982 | |
| 3983 | void Dbg::PostThreadStart(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3984 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 3985 | } |
| 3986 | |
| 3987 | void Dbg::PostThreadDeath(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3988 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE")); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3989 | } |
| 3990 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 3991 | 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] | 3992 | CHECK(buf != nullptr); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 3993 | iovec vec[1]; |
| 3994 | vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf)); |
| 3995 | vec[0].iov_len = byte_count; |
| 3996 | Dbg::DdmSendChunkV(type, vec, 1); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3997 | } |
| 3998 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 3999 | void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) { |
| 4000 | DdmSendChunk(type, bytes.size(), &bytes[0]); |
| 4001 | } |
| 4002 | |
Brian Carlstrom | f529352 | 2013-07-19 00:24:00 -0700 | [diff] [blame] | 4003 | void Dbg::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4004 | if (gJdwpState == nullptr) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 4005 | VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4006 | } else { |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 4007 | gJdwpState->DdmSendChunkV(type, iov, iov_count); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 4008 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4009 | } |
| 4010 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4011 | int Dbg::DdmHandleHpifChunk(HpifWhen when) { |
| 4012 | if (when == HPIF_WHEN_NOW) { |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4013 | DdmSendHeapInfo(when); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4014 | return true; |
| 4015 | } |
| 4016 | |
| 4017 | if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) { |
| 4018 | LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when); |
| 4019 | return false; |
| 4020 | } |
| 4021 | |
| 4022 | gDdmHpifWhen = when; |
| 4023 | return true; |
| 4024 | } |
| 4025 | |
| 4026 | bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { |
| 4027 | if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) { |
| 4028 | LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when); |
| 4029 | return false; |
| 4030 | } |
| 4031 | |
| 4032 | if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { |
| 4033 | LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); |
| 4034 | return false; |
| 4035 | } |
| 4036 | |
| 4037 | if (native) { |
| 4038 | gDdmNhsgWhen = when; |
| 4039 | gDdmNhsgWhat = what; |
| 4040 | } else { |
| 4041 | gDdmHpsgWhen = when; |
| 4042 | gDdmHpsgWhat = what; |
| 4043 | } |
| 4044 | return true; |
| 4045 | } |
| 4046 | |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 4047 | void Dbg::DdmSendHeapInfo(HpifWhen reason) { |
| 4048 | // If there's a one-shot 'when', reset it. |
| 4049 | if (reason == gDdmHpifWhen) { |
| 4050 | if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) { |
| 4051 | gDdmHpifWhen = HPIF_WHEN_NEVER; |
| 4052 | } |
| 4053 | } |
| 4054 | |
| 4055 | /* |
| 4056 | * Chunk HPIF (client --> server) |
| 4057 | * |
| 4058 | * Heap Info. General information about the heap, |
| 4059 | * suitable for a summary display. |
| 4060 | * |
| 4061 | * [u4]: number of heaps |
| 4062 | * |
| 4063 | * For each heap: |
| 4064 | * [u4]: heap ID |
| 4065 | * [u8]: timestamp in ms since Unix epoch |
| 4066 | * [u1]: capture reason (same as 'when' value from server) |
| 4067 | * [u4]: max heap size in bytes (-Xmx) |
| 4068 | * [u4]: current heap size in bytes |
| 4069 | * [u4]: current number of bytes allocated |
| 4070 | * [u4]: current number of objects allocated |
| 4071 | */ |
| 4072 | uint8_t heap_count = 1; |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4073 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4074 | std::vector<uint8_t> bytes; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4075 | JDWP::Append4BE(bytes, heap_count); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4076 | JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap). |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4077 | JDWP::Append8BE(bytes, MilliTime()); |
| 4078 | JDWP::Append1BE(bytes, reason); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4079 | JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes. |
| 4080 | JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 4081 | JDWP::Append4BE(bytes, heap->GetBytesAllocated()); |
| 4082 | JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 4083 | CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4))); |
| 4084 | Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 4085 | } |
| 4086 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4087 | enum HpsgSolidity { |
| 4088 | SOLIDITY_FREE = 0, |
| 4089 | SOLIDITY_HARD = 1, |
| 4090 | SOLIDITY_SOFT = 2, |
| 4091 | SOLIDITY_WEAK = 3, |
| 4092 | SOLIDITY_PHANTOM = 4, |
| 4093 | SOLIDITY_FINALIZABLE = 5, |
| 4094 | SOLIDITY_SWEEP = 6, |
| 4095 | }; |
| 4096 | |
| 4097 | enum HpsgKind { |
| 4098 | KIND_OBJECT = 0, |
| 4099 | KIND_CLASS_OBJECT = 1, |
| 4100 | KIND_ARRAY_1 = 2, |
| 4101 | KIND_ARRAY_2 = 3, |
| 4102 | KIND_ARRAY_4 = 4, |
| 4103 | KIND_ARRAY_8 = 5, |
| 4104 | KIND_UNKNOWN = 6, |
| 4105 | KIND_NATIVE = 7, |
| 4106 | }; |
| 4107 | |
| 4108 | #define HPSG_PARTIAL (1<<7) |
| 4109 | #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7))) |
| 4110 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4111 | class HeapChunkContext { |
| 4112 | public: |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4113 | // Maximum chunk size. Obtain this from the formula: |
| 4114 | // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2 |
| 4115 | HeapChunkContext(bool merge, bool native) |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4116 | : buf_(16384 - 16), |
| 4117 | type_(0), |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4118 | merge_(merge), |
| 4119 | chunk_overhead_(0) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4120 | Reset(); |
| 4121 | if (native) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4122 | type_ = CHUNK_TYPE("NHSG"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4123 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4124 | type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4125 | } |
| 4126 | } |
| 4127 | |
| 4128 | ~HeapChunkContext() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4129 | if (p_ > &buf_[0]) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4130 | Flush(); |
| 4131 | } |
| 4132 | } |
| 4133 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4134 | void SetChunkOverhead(size_t chunk_overhead) { |
| 4135 | chunk_overhead_ = chunk_overhead; |
| 4136 | } |
| 4137 | |
| 4138 | void ResetStartOfNextChunk() { |
| 4139 | startOfNextMemoryChunk_ = nullptr; |
| 4140 | } |
| 4141 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4142 | void EnsureHeader(const void* chunk_ptr) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4143 | if (!needHeader_) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4144 | return; |
| 4145 | } |
| 4146 | |
| 4147 | // Start a new HPSx chunk. |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4148 | JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). |
| 4149 | JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4150 | |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4151 | JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. |
| 4152 | 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] | 4153 | // [u4]: length of piece, in allocation units |
| 4154 | // 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] | 4155 | pieceLenField_ = p_; |
| 4156 | JDWP::Write4BE(&p_, 0x55555555); |
| 4157 | needHeader_ = false; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4158 | } |
| 4159 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4160 | void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4161 | if (pieceLenField_ == nullptr) { |
Ian Rogers | d636b06 | 2013-01-18 17:51:18 -0800 | [diff] [blame] | 4162 | // Flush immediately post Reset (maybe back-to-back Flush). Ignore. |
| 4163 | CHECK(needHeader_); |
| 4164 | return; |
| 4165 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4166 | // Patch the "length of piece" field. |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4167 | CHECK_LE(&buf_[0], pieceLenField_); |
| 4168 | CHECK_LE(pieceLenField_, p_); |
| 4169 | JDWP::Set4BE(pieceLenField_, totalAllocationUnits_); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4170 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4171 | Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4172 | Reset(); |
| 4173 | } |
| 4174 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4175 | 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] | 4176 | SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, |
| 4177 | Locks::mutator_lock_) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4178 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4179 | } |
| 4180 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4181 | private: |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4182 | enum { ALLOCATION_UNIT_SIZE = 8 }; |
| 4183 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4184 | void Reset() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4185 | p_ = &buf_[0]; |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4186 | ResetStartOfNextChunk(); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4187 | totalAllocationUnits_ = 0; |
| 4188 | needHeader_ = true; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4189 | pieceLenField_ = nullptr; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4190 | } |
| 4191 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4192 | void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4193 | SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, |
| 4194 | Locks::mutator_lock_) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4195 | // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken |
| 4196 | // 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] | 4197 | if (used_bytes == 0) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4198 | if (start == nullptr) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4199 | // Reset for start of new heap. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4200 | startOfNextMemoryChunk_ = nullptr; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4201 | Flush(); |
| 4202 | } |
| 4203 | // Only process in use memory so that free region information |
| 4204 | // also includes dlmalloc book keeping. |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4205 | return; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4206 | } |
| 4207 | |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4208 | /* If we're looking at the native heap, we'll just return |
| 4209 | * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks |
| 4210 | */ |
| 4211 | bool native = type_ == CHUNK_TYPE("NHSG"); |
| 4212 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4213 | // TODO: I'm not sure using start of next chunk works well with multiple spaces. We shouldn't |
| 4214 | // count gaps inbetween spaces as free memory. |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4215 | if (startOfNextMemoryChunk_ != nullptr) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4216 | // Transmit any pending free memory. Native free memory of |
| 4217 | // over kMaxFreeLen could be because of the use of mmaps, so |
| 4218 | // don't report. If not free memory then start a new segment. |
| 4219 | bool flush = true; |
| 4220 | if (start > startOfNextMemoryChunk_) { |
| 4221 | const size_t kMaxFreeLen = 2 * kPageSize; |
| 4222 | void* freeStart = startOfNextMemoryChunk_; |
| 4223 | void* freeEnd = start; |
Brian Carlstrom | 2d88862 | 2013-07-18 17:02:00 -0700 | [diff] [blame] | 4224 | size_t freeLen = reinterpret_cast<char*>(freeEnd) - reinterpret_cast<char*>(freeStart); |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4225 | if (!native || freeLen < kMaxFreeLen) { |
| 4226 | AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen); |
| 4227 | flush = false; |
| 4228 | } |
| 4229 | } |
| 4230 | if (flush) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4231 | startOfNextMemoryChunk_ = nullptr; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4232 | Flush(); |
| 4233 | } |
| 4234 | } |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 4235 | mirror::Object* obj = reinterpret_cast<mirror::Object*>(start); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4236 | |
| 4237 | // Determine the type of this chunk. |
| 4238 | // OLD-TODO: if context.merge, see if this chunk is different from the last chunk. |
| 4239 | // If it's the same, we should combine them. |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4240 | uint8_t state = ExamineObject(obj, native); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4241 | AppendChunk(state, start, used_bytes + chunk_overhead_); |
| 4242 | startOfNextMemoryChunk_ = reinterpret_cast<char*>(start) + used_bytes + chunk_overhead_; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4243 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4244 | |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4245 | void AppendChunk(uint8_t state, void* ptr, size_t length) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4246 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4247 | // Make sure there's enough room left in the buffer. |
| 4248 | // We need to use two bytes for every fractional 256 allocation units used by the chunk plus |
| 4249 | // 17 bytes for any header. |
| 4250 | size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17; |
| 4251 | size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); |
| 4252 | if (bytesLeft < needed) { |
| 4253 | Flush(); |
| 4254 | } |
| 4255 | |
| 4256 | bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); |
| 4257 | if (bytesLeft < needed) { |
| 4258 | LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", " |
| 4259 | << needed << " bytes)"; |
| 4260 | return; |
| 4261 | } |
| 4262 | EnsureHeader(ptr); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4263 | // Write out the chunk description. |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4264 | length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units. |
| 4265 | totalAllocationUnits_ += length; |
| 4266 | while (length > 256) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4267 | *p_++ = state | HPSG_PARTIAL; |
| 4268 | *p_++ = 255; // length - 1 |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4269 | length -= 256; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4270 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4271 | *p_++ = state; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4272 | *p_++ = length - 1; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4273 | } |
| 4274 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 4275 | uint8_t ExamineObject(mirror::Object* o, bool is_native_heap) |
| 4276 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4277 | if (o == nullptr) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4278 | return HPSG_STATE(SOLIDITY_FREE, 0); |
| 4279 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4280 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4281 | // It's an allocated chunk. Figure out what it is. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4282 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4283 | // If we're looking at the native heap, we'll just return |
| 4284 | // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4285 | if (is_native_heap) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4286 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 4287 | } |
| 4288 | |
Ian Rogers | 5bfa60f | 2012-09-02 21:17:56 -0700 | [diff] [blame] | 4289 | if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4290 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4291 | } |
| 4292 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 4293 | mirror::Class* c = o->GetClass(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4294 | if (c == nullptr) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4295 | // The object was probably just created but hasn't been initialized yet. |
| 4296 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4297 | } |
| 4298 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 4299 | if (!Runtime::Current()->GetHeap()->IsValidObjectAddress(c)) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4300 | LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4301 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 4302 | } |
| 4303 | |
| 4304 | if (c->IsClassClass()) { |
| 4305 | return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT); |
| 4306 | } |
| 4307 | |
| 4308 | if (c->IsArrayClass()) { |
| 4309 | if (o->IsObjectArray()) { |
| 4310 | return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4311 | } |
| 4312 | switch (c->GetComponentSize()) { |
| 4313 | case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1); |
| 4314 | case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2); |
| 4315 | case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 4316 | case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8); |
| 4317 | } |
| 4318 | } |
| 4319 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4320 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 4321 | } |
| 4322 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4323 | std::vector<uint8_t> buf_; |
| 4324 | uint8_t* p_; |
| 4325 | uint8_t* pieceLenField_; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 4326 | void* startOfNextMemoryChunk_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4327 | size_t totalAllocationUnits_; |
| 4328 | uint32_t type_; |
| 4329 | bool merge_; |
| 4330 | bool needHeader_; |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4331 | size_t chunk_overhead_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 4332 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4333 | DISALLOW_COPY_AND_ASSIGN(HeapChunkContext); |
| 4334 | }; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4335 | |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4336 | static void BumpPointerSpaceCallback(mirror::Object* obj, void* arg) |
| 4337 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) { |
| 4338 | const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment); |
| 4339 | HeapChunkContext::HeapChunkCallback( |
| 4340 | obj, reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(obj) + size), size, arg); |
| 4341 | } |
| 4342 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4343 | void Dbg::DdmSendHeapSegments(bool native) { |
| 4344 | Dbg::HpsgWhen when; |
| 4345 | Dbg::HpsgWhat what; |
| 4346 | if (!native) { |
| 4347 | when = gDdmHpsgWhen; |
| 4348 | what = gDdmHpsgWhat; |
| 4349 | } else { |
| 4350 | when = gDdmNhsgWhen; |
| 4351 | what = gDdmNhsgWhat; |
| 4352 | } |
| 4353 | if (when == HPSG_WHEN_NEVER) { |
| 4354 | return; |
| 4355 | } |
| 4356 | |
| 4357 | // Figure out what kind of chunks we'll be sending. |
| 4358 | CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what); |
| 4359 | |
| 4360 | // First, send a heap start chunk. |
| 4361 | uint8_t heap_id[4]; |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4362 | 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] | 4363 | Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id); |
| 4364 | |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4365 | Thread* self = Thread::Current(); |
| 4366 | |
| 4367 | // To allow the Walk/InspectAll() below to exclusively-lock the |
| 4368 | // mutator lock, temporarily release the shared access to the |
| 4369 | // mutator lock here by transitioning to the suspended state. |
| 4370 | Locks::mutator_lock_->AssertSharedHeld(self); |
| 4371 | self->TransitionFromRunnableToSuspended(kSuspended); |
| 4372 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4373 | // Send a series of heap segment chunks. |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4374 | HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native); |
| 4375 | if (native) { |
Christopher Ferris | c4ddc04 | 2014-05-13 14:47:50 -0700 | [diff] [blame] | 4376 | #ifdef USE_DLMALLOC |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4377 | dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context); |
Christopher Ferris | c4ddc04 | 2014-05-13 14:47:50 -0700 | [diff] [blame] | 4378 | #else |
| 4379 | UNIMPLEMENTED(WARNING) << "Native heap inspection is only supported with dlmalloc"; |
| 4380 | #endif |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4381 | } else { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 4382 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4383 | for (const auto& space : heap->GetContinuousSpaces()) { |
| 4384 | if (space->IsDlMallocSpace()) { |
| 4385 | // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an |
| 4386 | // allocation then the first sizeof(size_t) may belong to it. |
| 4387 | context.SetChunkOverhead(sizeof(size_t)); |
| 4388 | space->AsDlMallocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); |
| 4389 | } else if (space->IsRosAllocSpace()) { |
| 4390 | context.SetChunkOverhead(0); |
| 4391 | space->AsRosAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); |
| 4392 | } else if (space->IsBumpPointerSpace()) { |
| 4393 | context.SetChunkOverhead(0); |
| 4394 | ReaderMutexLock mu(self, *Locks::mutator_lock_); |
| 4395 | WriterMutexLock mu2(self, *Locks::heap_bitmap_lock_); |
| 4396 | space->AsBumpPointerSpace()->Walk(BumpPointerSpaceCallback, &context); |
| 4397 | } else { |
| 4398 | UNIMPLEMENTED(WARNING) << "Not counting objects in space " << *space; |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4399 | } |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4400 | context.ResetStartOfNextChunk(); |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 4401 | } |
Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4402 | // Walk the large objects, these are not in the AllocSpace. |
Mathieu Chartier | 36dab36 | 2014-07-30 14:59:56 -0700 | [diff] [blame] | 4403 | context.SetChunkOverhead(0); |
Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 4404 | heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 4405 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4406 | |
Hiroshi Yamauchi | cf58d4a | 2013-09-26 14:21:22 -0700 | [diff] [blame] | 4407 | // Shared-lock the mutator lock back. |
| 4408 | self->TransitionFromSuspendedToRunnable(); |
| 4409 | Locks::mutator_lock_->AssertSharedHeld(self); |
| 4410 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 4411 | // Finally, send a heap end chunk. |
| 4412 | 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] | 4413 | } |
| 4414 | |
Elliott Hughes | b1a5879 | 2013-07-11 18:10:58 -0700 | [diff] [blame] | 4415 | static size_t GetAllocTrackerMax() { |
| 4416 | #ifdef HAVE_ANDROID_OS |
| 4417 | // Check whether there's a system property overriding the number of records. |
| 4418 | const char* propertyName = "dalvik.vm.allocTrackerMax"; |
| 4419 | char allocRecordMaxString[PROPERTY_VALUE_MAX]; |
| 4420 | if (property_get(propertyName, allocRecordMaxString, "") > 0) { |
| 4421 | char* end; |
| 4422 | size_t value = strtoul(allocRecordMaxString, &end, 10); |
| 4423 | if (*end != '\0') { |
Ruben Brunk | 3e47a74 | 2013-09-09 17:56:07 -0700 | [diff] [blame] | 4424 | LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString |
| 4425 | << "' --- invalid"; |
Elliott Hughes | b1a5879 | 2013-07-11 18:10:58 -0700 | [diff] [blame] | 4426 | return kDefaultNumAllocRecords; |
| 4427 | } |
| 4428 | if (!IsPowerOfTwo(value)) { |
Ruben Brunk | 3e47a74 | 2013-09-09 17:56:07 -0700 | [diff] [blame] | 4429 | LOG(ERROR) << "Ignoring " << propertyName << " '" << allocRecordMaxString |
| 4430 | << "' --- not power of two"; |
Elliott Hughes | b1a5879 | 2013-07-11 18:10:58 -0700 | [diff] [blame] | 4431 | return kDefaultNumAllocRecords; |
| 4432 | } |
| 4433 | return value; |
| 4434 | } |
| 4435 | #endif |
| 4436 | return kDefaultNumAllocRecords; |
| 4437 | } |
| 4438 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4439 | void Dbg::SetAllocTrackingEnabled(bool enable) { |
| 4440 | Thread* self = Thread::Current(); |
| 4441 | if (enable) { |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4442 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4443 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
| 4444 | if (recent_allocation_records_ != nullptr) { |
| 4445 | return; // Already enabled, bail. |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4446 | } |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4447 | alloc_record_max_ = GetAllocTrackerMax(); |
| 4448 | LOG(INFO) << "Enabling alloc tracker (" << alloc_record_max_ << " entries of " |
| 4449 | << kMaxAllocRecordStackDepth << " frames, taking " |
| 4450 | << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")"; |
| 4451 | DCHECK_EQ(alloc_record_head_, 0U); |
| 4452 | DCHECK_EQ(alloc_record_count_, 0U); |
| 4453 | recent_allocation_records_ = new AllocRecord[alloc_record_max_]; |
| 4454 | CHECK(recent_allocation_records_ != nullptr); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4455 | } |
Mathieu Chartier | 9ef78b5 | 2014-09-25 17:03:12 -0700 | [diff] [blame] | 4456 | Runtime::Current()->GetInstrumentation()->InstrumentQuickAllocEntryPoints(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4457 | } else { |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4458 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4459 | ScopedObjectAccess soa(self); // For type_cache_.Clear(); |
| 4460 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
| 4461 | if (recent_allocation_records_ == nullptr) { |
| 4462 | return; // Already disabled, bail. |
| 4463 | } |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4464 | LOG(INFO) << "Disabling alloc tracker"; |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4465 | delete[] recent_allocation_records_; |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4466 | recent_allocation_records_ = nullptr; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4467 | alloc_record_head_ = 0; |
| 4468 | alloc_record_count_ = 0; |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4469 | type_cache_.Clear(); |
Sebastien Hertz | b98063a | 2014-03-26 10:57:20 +0100 | [diff] [blame] | 4470 | } |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4471 | // 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] | 4472 | Runtime::Current()->GetInstrumentation()->UninstrumentQuickAllocEntryPoints(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4473 | } |
| 4474 | } |
| 4475 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 4476 | struct AllocRecordStackVisitor : public StackVisitor { |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 4477 | AllocRecordStackVisitor(Thread* thread, AllocRecord* record) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 4478 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4479 | : StackVisitor(thread, nullptr), record(record), depth(0) {} |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4480 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4481 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 4482 | // annotalysis. |
| 4483 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4484 | if (depth >= kMaxAllocRecordStackDepth) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 4485 | return false; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4486 | } |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 4487 | mirror::ArtMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 4488 | if (!m->IsRuntimeMethod()) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4489 | record->StackElement(depth)->SetMethod(m); |
| 4490 | record->StackElement(depth)->SetDexPc(GetDexPc()); |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 4491 | ++depth; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4492 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 4493 | return true; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4494 | } |
| 4495 | |
| 4496 | ~AllocRecordStackVisitor() { |
| 4497 | // Clear out any unused stack trace elements. |
| 4498 | for (; depth < kMaxAllocRecordStackDepth; ++depth) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4499 | record->StackElement(depth)->SetMethod(nullptr); |
| 4500 | record->StackElement(depth)->SetDexPc(0); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4501 | } |
| 4502 | } |
| 4503 | |
| 4504 | AllocRecord* record; |
| 4505 | size_t depth; |
| 4506 | }; |
| 4507 | |
Ian Rogers | 844506b | 2014-09-12 19:59:33 -0700 | [diff] [blame] | 4508 | void Dbg::RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4509 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4510 | if (recent_allocation_records_ == nullptr) { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4511 | // In the process of shutting down recording, bail. |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4512 | return; |
| 4513 | } |
| 4514 | |
| 4515 | // Advance and clip. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4516 | if (++alloc_record_head_ == alloc_record_max_) { |
| 4517 | alloc_record_head_ = 0; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4518 | } |
| 4519 | |
| 4520 | // Fill in the basics. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4521 | AllocRecord* record = &recent_allocation_records_[alloc_record_head_]; |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4522 | record->SetType(type); |
| 4523 | record->SetByteCount(byte_count); |
| 4524 | record->SetThinLockId(self->GetThreadId()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4525 | |
| 4526 | // Fill in the stack trace. |
Ian Rogers | 7a22fa6 | 2013-01-23 12:16:16 -0800 | [diff] [blame] | 4527 | AllocRecordStackVisitor visitor(self, record); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 4528 | visitor.WalkStack(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4529 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4530 | if (alloc_record_count_ < alloc_record_max_) { |
| 4531 | ++alloc_record_count_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4532 | } |
| 4533 | } |
| 4534 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4535 | // Returns the index of the head element. |
| 4536 | // |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4537 | // 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] | 4538 | // we want to use the current element. Take "head+1" and subtract count |
| 4539 | // from it. |
| 4540 | // |
| 4541 | // We need to handle underflow in our circular buffer, so we add |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4542 | // alloc_record_max_ and then mask it back down. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4543 | size_t Dbg::HeadIndex() { |
| 4544 | return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) & |
| 4545 | (Dbg::alloc_record_max_ - 1); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4546 | } |
| 4547 | |
| 4548 | void Dbg::DumpRecentAllocations() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 4549 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4550 | MutexLock mu(soa.Self(), *Locks::alloc_tracker_lock_); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4551 | if (recent_allocation_records_ == nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4552 | LOG(INFO) << "Not recording tracked allocations"; |
| 4553 | return; |
| 4554 | } |
| 4555 | |
| 4556 | // "i" is the head of the list. We want to start at the end of the |
| 4557 | // list and move forward to the tail. |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4558 | size_t i = HeadIndex(); |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4559 | const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_); |
| 4560 | uint16_t count = capped_count; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4561 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4562 | LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")"; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4563 | while (count--) { |
| 4564 | AllocRecord* record = &recent_allocation_records_[i]; |
| 4565 | |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4566 | LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount()) |
| 4567 | << PrettyClass(record->Type()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4568 | |
| 4569 | for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4570 | AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame); |
| 4571 | mirror::ArtMethod* m = stack_element->Method(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4572 | if (m == nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4573 | break; |
| 4574 | } |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4575 | LOG(INFO) << " " << PrettyMethod(m) << " line " << stack_element->LineNumber(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4576 | } |
| 4577 | |
| 4578 | // pause periodically to help logcat catch up |
| 4579 | if ((count % 5) == 0) { |
| 4580 | usleep(40000); |
| 4581 | } |
| 4582 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4583 | i = (i + 1) & (alloc_record_max_ - 1); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4584 | } |
| 4585 | } |
| 4586 | |
| 4587 | class StringTable { |
| 4588 | public: |
| 4589 | StringTable() { |
| 4590 | } |
| 4591 | |
Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 4592 | void Add(const std::string& str) { |
| 4593 | table_.insert(str); |
| 4594 | } |
| 4595 | |
| 4596 | void Add(const char* str) { |
| 4597 | table_.insert(str); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4598 | } |
| 4599 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4600 | size_t IndexOf(const char* s) const { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4601 | auto it = table_.find(s); |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4602 | if (it == table_.end()) { |
| 4603 | LOG(FATAL) << "IndexOf(\"" << s << "\") failed"; |
| 4604 | } |
| 4605 | return std::distance(table_.begin(), it); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4606 | } |
| 4607 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4608 | size_t Size() const { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4609 | return table_.size(); |
| 4610 | } |
| 4611 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4612 | void WriteTo(std::vector<uint8_t>& bytes) const { |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 4613 | for (const std::string& str : table_) { |
| 4614 | const char* s = str.c_str(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 4615 | size_t s_len = CountModifiedUtf8Chars(s); |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 4616 | std::unique_ptr<uint16_t> s_utf16(new uint16_t[s_len]); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 4617 | ConvertModifiedUtf8ToUtf16(s_utf16.get(), s); |
| 4618 | JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4619 | } |
| 4620 | } |
| 4621 | |
| 4622 | private: |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 4623 | std::set<std::string> table_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4624 | DISALLOW_COPY_AND_ASSIGN(StringTable); |
| 4625 | }; |
| 4626 | |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4627 | static const char* GetMethodSourceFile(mirror::ArtMethod* method) |
Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 4628 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4629 | DCHECK(method != nullptr); |
| 4630 | const char* source_file = method->GetDeclaringClassSourceFile(); |
Sebastien Hertz | 280286a | 2014-04-28 09:26:50 +0200 | [diff] [blame] | 4631 | return (source_file != nullptr) ? source_file : ""; |
| 4632 | } |
| 4633 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4634 | /* |
| 4635 | * The data we send to DDMS contains everything we have recorded. |
| 4636 | * |
| 4637 | * Message header (all values big-endian): |
| 4638 | * (1b) message header len (to allow future expansion); includes itself |
| 4639 | * (1b) entry header len |
| 4640 | * (1b) stack frame len |
| 4641 | * (2b) number of entries |
| 4642 | * (4b) offset to string table from start of message |
| 4643 | * (2b) number of class name strings |
| 4644 | * (2b) number of method name strings |
| 4645 | * (2b) number of source file name strings |
| 4646 | * For each entry: |
| 4647 | * (4b) total allocation size |
Elliott Hughes | 221229c | 2013-01-08 18:17:50 -0800 | [diff] [blame] | 4648 | * (2b) thread id |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4649 | * (2b) allocated object's class name index |
| 4650 | * (1b) stack depth |
| 4651 | * For each stack frame: |
| 4652 | * (2b) method's class name |
| 4653 | * (2b) method name |
| 4654 | * (2b) method source file |
| 4655 | * (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| 4656 | * (xb) class name strings |
| 4657 | * (xb) method name strings |
| 4658 | * (xb) source file strings |
| 4659 | * |
| 4660 | * As with other DDM traffic, strings are sent as a 4-byte length |
| 4661 | * followed by UTF-16 data. |
| 4662 | * |
| 4663 | * 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] | 4664 | * can be (kMaxAllocRecordStackDepth * alloc_record_max_) unique strings in |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4665 | * each table, but in practice there should be far fewer. |
| 4666 | * |
| 4667 | * The chief reason for using a string table here is to keep the size of |
| 4668 | * the DDMS message to a minimum. This is partly to make the protocol |
| 4669 | * efficient, but also because we have to form the whole thing up all at |
| 4670 | * once in a memory buffer. |
| 4671 | * |
| 4672 | * We use separate string tables for class names, method names, and source |
| 4673 | * files to keep the indexes small. There will generally be no overlap |
| 4674 | * between the contents of these tables. |
| 4675 | */ |
| 4676 | jbyteArray Dbg::GetRecentAllocations() { |
| 4677 | if (false) { |
| 4678 | DumpRecentAllocations(); |
| 4679 | } |
| 4680 | |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4681 | Thread* self = Thread::Current(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4682 | std::vector<uint8_t> bytes; |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4683 | { |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4684 | MutexLock mu(self, *Locks::alloc_tracker_lock_); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4685 | // |
| 4686 | // Part 1: generate string tables. |
| 4687 | // |
| 4688 | StringTable class_names; |
| 4689 | StringTable method_names; |
| 4690 | StringTable filenames; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4691 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4692 | const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_); |
| 4693 | uint16_t count = capped_count; |
| 4694 | size_t idx = HeadIndex(); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4695 | while (count--) { |
| 4696 | AllocRecord* record = &recent_allocation_records_[idx]; |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 4697 | std::string temp; |
| 4698 | class_names.Add(record->Type()->GetDescriptor(&temp)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4699 | for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) { |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4700 | mirror::ArtMethod* m = record->StackElement(i)->Method(); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4701 | if (m != nullptr) { |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4702 | class_names.Add(m->GetDeclaringClassDescriptor()); |
| 4703 | method_names.Add(m->GetName()); |
| 4704 | filenames.Add(GetMethodSourceFile(m)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4705 | } |
| 4706 | } |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4707 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4708 | idx = (idx + 1) & (alloc_record_max_ - 1); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4709 | } |
| 4710 | |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4711 | LOG(INFO) << "allocation records: " << capped_count; |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4712 | |
| 4713 | // |
| 4714 | // Part 2: Generate the output and store it in the buffer. |
| 4715 | // |
| 4716 | |
| 4717 | // (1b) message header len (to allow future expansion); includes itself |
| 4718 | // (1b) entry header len |
| 4719 | // (1b) stack frame len |
| 4720 | const int kMessageHeaderLen = 15; |
| 4721 | const int kEntryHeaderLen = 9; |
| 4722 | const int kStackFrameLen = 8; |
| 4723 | JDWP::Append1BE(bytes, kMessageHeaderLen); |
| 4724 | JDWP::Append1BE(bytes, kEntryHeaderLen); |
| 4725 | JDWP::Append1BE(bytes, kStackFrameLen); |
| 4726 | |
| 4727 | // (2b) number of entries |
| 4728 | // (4b) offset to string table from start of message |
| 4729 | // (2b) number of class name strings |
| 4730 | // (2b) number of method name strings |
| 4731 | // (2b) number of source file name strings |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4732 | JDWP::Append2BE(bytes, capped_count); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4733 | size_t string_table_offset = bytes.size(); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 4734 | JDWP::Append4BE(bytes, 0); // We'll patch this later... |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4735 | JDWP::Append2BE(bytes, class_names.Size()); |
| 4736 | JDWP::Append2BE(bytes, method_names.Size()); |
| 4737 | JDWP::Append2BE(bytes, filenames.Size()); |
| 4738 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4739 | idx = HeadIndex(); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 4740 | std::string temp; |
Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 4741 | for (count = capped_count; count != 0; --count) { |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4742 | // For each entry: |
| 4743 | // (4b) total allocation size |
| 4744 | // (2b) thread id |
| 4745 | // (2b) allocated object's class name index |
| 4746 | // (1b) stack depth |
| 4747 | AllocRecord* record = &recent_allocation_records_[idx]; |
| 4748 | size_t stack_depth = record->GetDepth(); |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 4749 | size_t allocated_object_class_name_index = |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 4750 | class_names.IndexOf(record->Type()->GetDescriptor(&temp)); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4751 | JDWP::Append4BE(bytes, record->ByteCount()); |
| 4752 | JDWP::Append2BE(bytes, record->ThinLockId()); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4753 | JDWP::Append2BE(bytes, allocated_object_class_name_index); |
| 4754 | JDWP::Append1BE(bytes, stack_depth); |
| 4755 | |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4756 | for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { |
| 4757 | // For each stack frame: |
| 4758 | // (2b) method's class name |
| 4759 | // (2b) method name |
| 4760 | // (2b) method source file |
| 4761 | // (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] | 4762 | mirror::ArtMethod* m = record->StackElement(stack_frame)->Method(); |
Mathieu Chartier | bfd9a43 | 2014-05-21 17:43:44 -0700 | [diff] [blame] | 4763 | size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); |
| 4764 | size_t method_name_index = method_names.IndexOf(m->GetName()); |
| 4765 | size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4766 | JDWP::Append2BE(bytes, class_name_index); |
| 4767 | JDWP::Append2BE(bytes, method_name_index); |
| 4768 | JDWP::Append2BE(bytes, file_name_index); |
Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 4769 | JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber()); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4770 | } |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 4771 | idx = (idx + 1) & (alloc_record_max_ - 1); |
Mathieu Chartier | 46e811b | 2013-07-10 17:09:14 -0700 | [diff] [blame] | 4772 | } |
| 4773 | |
| 4774 | // (xb) class name strings |
| 4775 | // (xb) method name strings |
| 4776 | // (xb) source file strings |
| 4777 | JDWP::Set4BE(&bytes[string_table_offset], bytes.size()); |
| 4778 | class_names.WriteTo(bytes); |
| 4779 | method_names.WriteTo(bytes); |
| 4780 | filenames.WriteTo(bytes); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4781 | } |
Ian Rogers | 50b35e2 | 2012-10-04 10:09:15 -0700 | [diff] [blame] | 4782 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4783 | jbyteArray result = env->NewByteArray(bytes.size()); |
Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 4784 | if (result != nullptr) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 4785 | env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); |
| 4786 | } |
| 4787 | return result; |
| 4788 | } |
| 4789 | |
Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 4790 | mirror::ArtMethod* DeoptimizationRequest::Method() const { |
| 4791 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 4792 | return soa.DecodeMethod(method_); |
| 4793 | } |
| 4794 | |
| 4795 | void DeoptimizationRequest::SetMethod(mirror::ArtMethod* m) { |
| 4796 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 4797 | method_ = soa.EncodeMethod(m); |
| 4798 | } |
| 4799 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 4800 | } // namespace art |