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 | |
| 23 | #include "class_linker.h" |
Elliott Hughes | 1bba14f | 2011-12-01 18:00:36 -0800 | [diff] [blame] | 24 | #include "class_loader.h" |
Ian Rogers | 776ac1f | 2012-04-13 23:36:36 -0700 | [diff] [blame] | 25 | #include "dex_instruction.h" |
| 26 | #if !defined(ART_USE_LLVM_COMPILER) |
| 27 | #include "oat/runtime/context.h" // For VmapTable |
| 28 | #endif |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 29 | #include "object_utils.h" |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 30 | #include "safe_map.h" |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 31 | #include "ScopedLocalRef.h" |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 32 | #include "ScopedPrimitiveArray.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 33 | #include "scoped_thread_state_change.h" |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame^] | 34 | #include "sirt_ref.h" |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 35 | #include "space.h" |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 36 | #include "stack_indirect_reference_table.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 37 | #include "thread_list.h" |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 38 | #include "well_known_classes.h" |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 39 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 40 | namespace art { |
| 41 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 42 | static const size_t kMaxAllocRecordStackDepth = 16; // Max 255. |
| 43 | static const size_t kNumAllocRecords = 512; // Must be power of 2. |
| 44 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 45 | static const uintptr_t kInvalidId = 1; |
| 46 | static const Object* kInvalidObject = reinterpret_cast<Object*>(kInvalidId); |
| 47 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 48 | class ObjectRegistry { |
| 49 | public: |
| 50 | ObjectRegistry() : lock_("ObjectRegistry lock") { |
| 51 | } |
| 52 | |
| 53 | JDWP::ObjectId Add(Object* o) { |
| 54 | if (o == NULL) { |
| 55 | return 0; |
| 56 | } |
| 57 | JDWP::ObjectId id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(o)); |
| 58 | MutexLock mu(lock_); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 59 | map_.Overwrite(id, o); |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 60 | return id; |
| 61 | } |
| 62 | |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 63 | void Clear() { |
| 64 | MutexLock mu(lock_); |
| 65 | LOG(DEBUG) << "Debugger has detached; object registry had " << map_.size() << " entries"; |
| 66 | map_.clear(); |
| 67 | } |
| 68 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 69 | bool Contains(JDWP::ObjectId id) { |
| 70 | MutexLock mu(lock_); |
| 71 | return map_.find(id) != map_.end(); |
| 72 | } |
| 73 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 74 | template<typename T> T Get(JDWP::ObjectId id) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 75 | if (id == 0) { |
| 76 | return NULL; |
| 77 | } |
| 78 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 79 | MutexLock mu(lock_); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 80 | typedef SafeMap<JDWP::ObjectId, Object*>::iterator It; // C++0x auto |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 81 | It it = map_.find(id); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 82 | return (it != map_.end()) ? reinterpret_cast<T>(it->second) : reinterpret_cast<T>(kInvalidId); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 83 | } |
| 84 | |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 85 | void VisitRoots(Heap::RootVisitor* visitor, void* arg) { |
| 86 | MutexLock mu(lock_); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 87 | typedef SafeMap<JDWP::ObjectId, Object*>::iterator It; // C++0x auto |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 88 | for (It it = map_.begin(); it != map_.end(); ++it) { |
| 89 | visitor(it->second, arg); |
| 90 | } |
| 91 | } |
| 92 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 93 | private: |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 94 | Mutex lock_ DEFAULT_MUTEX_ACQUIRED_AFTER; |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 95 | SafeMap<JDWP::ObjectId, Object*> map_; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 96 | }; |
| 97 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 98 | struct AllocRecordStackTraceElement { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 99 | AbstractMethod* method; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 100 | uint32_t dex_pc; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 101 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 102 | int32_t LineNumber() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 103 | return MethodHelper(method).GetLineNumFromDexPC(dex_pc); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 104 | } |
| 105 | }; |
| 106 | |
| 107 | struct AllocRecord { |
| 108 | Class* type; |
| 109 | size_t byte_count; |
| 110 | uint16_t thin_lock_id; |
| 111 | AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method. |
| 112 | |
| 113 | size_t GetDepth() { |
| 114 | size_t depth = 0; |
| 115 | while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) { |
| 116 | ++depth; |
| 117 | } |
| 118 | return depth; |
| 119 | } |
| 120 | }; |
| 121 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 122 | struct Breakpoint { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 123 | AbstractMethod* method; |
Elliott Hughes | a656a0f | 2012-02-21 18:03:44 -0800 | [diff] [blame] | 124 | uint32_t dex_pc; |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 125 | Breakpoint(AbstractMethod* method, uint32_t dex_pc) : method(method), dex_pc(dex_pc) {} |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 126 | }; |
| 127 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 128 | static std::ostream& operator<<(std::ostream& os, const Breakpoint& rhs) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 129 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 229feb7 | 2012-02-23 13:33:29 -0800 | [diff] [blame] | 130 | os << StringPrintf("Breakpoint[%s @%#x]", PrettyMethod(rhs.method).c_str(), rhs.dex_pc); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 131 | return os; |
| 132 | } |
| 133 | |
| 134 | struct SingleStepControl { |
| 135 | // Are we single-stepping right now? |
| 136 | bool is_active; |
| 137 | Thread* thread; |
| 138 | |
| 139 | JDWP::JdwpStepSize step_size; |
| 140 | JDWP::JdwpStepDepth step_depth; |
| 141 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 142 | const AbstractMethod* method; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 143 | int32_t line_number; // Or -1 for native methods. |
| 144 | std::set<uint32_t> dex_pcs; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 145 | int stack_depth; |
| 146 | }; |
| 147 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 148 | // JDWP is allowed unless the Zygote forbids it. |
| 149 | static bool gJdwpAllowed = true; |
| 150 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 151 | // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line? |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 152 | static bool gJdwpConfigured = false; |
| 153 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 154 | // Broken-down JDWP options. (Only valid if IsJdwpConfigured() is true.) |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 155 | static JDWP::JdwpOptions gJdwpOptions; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 156 | |
| 157 | // Runtime JDWP state. |
| 158 | static JDWP::JdwpState* gJdwpState = NULL; |
| 159 | static bool gDebuggerConnected; // debugger or DDMS is connected. |
| 160 | static bool gDebuggerActive; // debugger is making requests. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 161 | 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] | 162 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 163 | static bool gDdmThreadNotification = false; |
| 164 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 165 | // DDMS GC-related settings. |
| 166 | static Dbg::HpifWhen gDdmHpifWhen = Dbg::HPIF_WHEN_NEVER; |
| 167 | static Dbg::HpsgWhen gDdmHpsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 168 | static Dbg::HpsgWhat gDdmHpsgWhat; |
| 169 | static Dbg::HpsgWhen gDdmNhsgWhen = Dbg::HPSG_WHEN_NEVER; |
| 170 | static Dbg::HpsgWhat gDdmNhsgWhat; |
| 171 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 172 | static ObjectRegistry* gRegistry = NULL; |
| 173 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 174 | // Recent allocation tracking. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 175 | static Mutex gAllocTrackerLock DEFAULT_MUTEX_ACQUIRED_AFTER ("AllocTracker lock"); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 176 | AllocRecord* Dbg::recent_allocation_records_ PT_GUARDED_BY(gAllocTrackerLock) = NULL; // TODO: CircularBuffer<AllocRecord> |
| 177 | static size_t gAllocRecordHead GUARDED_BY(gAllocTrackerLock) = 0; |
| 178 | static size_t gAllocRecordCount GUARDED_BY(gAllocTrackerLock) = 0; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 179 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 180 | // Breakpoints and single-stepping. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 181 | static Mutex gBreakpointsLock DEFAULT_MUTEX_ACQUIRED_AFTER ("breakpoints lock"); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 182 | static std::vector<Breakpoint> gBreakpoints GUARDED_BY(gBreakpointsLock); |
| 183 | static SingleStepControl gSingleStepControl GUARDED_BY(gBreakpointsLock); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 184 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 185 | static bool IsBreakpoint(AbstractMethod* m, uint32_t dex_pc) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 186 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 187 | MutexLock mu(gBreakpointsLock); |
| 188 | for (size_t i = 0; i < gBreakpoints.size(); ++i) { |
Elliott Hughes | a656a0f | 2012-02-21 18:03:44 -0800 | [diff] [blame] | 189 | if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == dex_pc) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 190 | VLOG(jdwp) << "Hit breakpoint #" << i << ": " << gBreakpoints[i]; |
| 191 | return true; |
| 192 | } |
| 193 | } |
| 194 | return false; |
| 195 | } |
| 196 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 197 | static Array* DecodeArray(JDWP::RefTypeId id, JDWP::JdwpError& status) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 198 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 199 | Object* o = gRegistry->Get<Object*>(id); |
| 200 | if (o == NULL || o == kInvalidObject) { |
| 201 | status = JDWP::ERR_INVALID_OBJECT; |
| 202 | return NULL; |
| 203 | } |
| 204 | if (!o->IsArrayInstance()) { |
| 205 | status = JDWP::ERR_INVALID_ARRAY; |
| 206 | return NULL; |
| 207 | } |
| 208 | status = JDWP::ERR_NONE; |
| 209 | return o->AsArray(); |
| 210 | } |
| 211 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 212 | static Class* DecodeClass(JDWP::RefTypeId id, JDWP::JdwpError& status) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 213 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 214 | Object* o = gRegistry->Get<Object*>(id); |
| 215 | if (o == NULL || o == kInvalidObject) { |
| 216 | status = JDWP::ERR_INVALID_OBJECT; |
| 217 | return NULL; |
| 218 | } |
| 219 | if (!o->IsClass()) { |
| 220 | status = JDWP::ERR_INVALID_CLASS; |
| 221 | return NULL; |
| 222 | } |
| 223 | status = JDWP::ERR_NONE; |
| 224 | return o->AsClass(); |
| 225 | } |
| 226 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 227 | static Thread* DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId threadId) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 228 | LOCKS_EXCLUDED(Locks::thread_suspend_count_lock_) |
| 229 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 230 | Object* thread_peer = gRegistry->Get<Object*>(threadId); |
| 231 | if (thread_peer == NULL || thread_peer == kInvalidObject) { |
| 232 | return NULL; |
| 233 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 234 | Thread* thread = Thread::FromManagedThread(soa, thread_peer); |
| 235 | return thread; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 236 | } |
| 237 | |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 238 | static JDWP::JdwpTag BasicTagFromDescriptor(const char* descriptor) { |
| 239 | // JDWP deliberately uses the descriptor characters' ASCII values for its enum. |
| 240 | // Note that by "basic" we mean that we don't get more specific than JT_OBJECT. |
| 241 | return static_cast<JDWP::JdwpTag>(descriptor[0]); |
| 242 | } |
| 243 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 244 | static JDWP::JdwpTag TagFromClass(Class* c) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 245 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 86b0010 | 2011-12-05 17:54:26 -0800 | [diff] [blame] | 246 | CHECK(c != NULL); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 247 | if (c->IsArrayClass()) { |
| 248 | return JDWP::JT_ARRAY; |
| 249 | } |
| 250 | |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 251 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 252 | if (c->IsStringClass()) { |
| 253 | return JDWP::JT_STRING; |
| 254 | } else if (c->IsClassClass()) { |
| 255 | return JDWP::JT_CLASS_OBJECT; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 256 | } else if (class_linker->FindSystemClass("Ljava/lang/Thread;")->IsAssignableFrom(c)) { |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 257 | return JDWP::JT_THREAD; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 258 | } else if (class_linker->FindSystemClass("Ljava/lang/ThreadGroup;")->IsAssignableFrom(c)) { |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 259 | return JDWP::JT_THREAD_GROUP; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 260 | } else if (class_linker->FindSystemClass("Ljava/lang/ClassLoader;")->IsAssignableFrom(c)) { |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 261 | return JDWP::JT_CLASS_LOADER; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 262 | } else { |
| 263 | return JDWP::JT_OBJECT; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | /* |
| 268 | * Objects declared to hold Object might actually hold a more specific |
| 269 | * type. The debugger may take a special interest in these (e.g. it |
| 270 | * wants to display the contents of Strings), so we want to return an |
| 271 | * appropriate tag. |
| 272 | * |
| 273 | * Null objects are tagged JT_OBJECT. |
| 274 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 275 | static JDWP::JdwpTag TagFromObject(const Object* o) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 276 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 277 | return (o == NULL) ? JDWP::JT_OBJECT : TagFromClass(o->GetClass()); |
| 278 | } |
| 279 | |
| 280 | static bool IsPrimitiveTag(JDWP::JdwpTag tag) { |
| 281 | switch (tag) { |
| 282 | case JDWP::JT_BOOLEAN: |
| 283 | case JDWP::JT_BYTE: |
| 284 | case JDWP::JT_CHAR: |
| 285 | case JDWP::JT_FLOAT: |
| 286 | case JDWP::JT_DOUBLE: |
| 287 | case JDWP::JT_INT: |
| 288 | case JDWP::JT_LONG: |
| 289 | case JDWP::JT_SHORT: |
| 290 | case JDWP::JT_VOID: |
| 291 | return true; |
| 292 | default: |
| 293 | return false; |
| 294 | } |
| 295 | } |
| 296 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 297 | /* |
| 298 | * Handle one of the JDWP name/value pairs. |
| 299 | * |
| 300 | * JDWP options are: |
| 301 | * help: if specified, show help message and bail |
| 302 | * transport: may be dt_socket or dt_shmem |
| 303 | * address: for dt_socket, "host:port", or just "port" when listening |
| 304 | * server: if "y", wait for debugger to attach; if "n", attach to debugger |
| 305 | * timeout: how long to wait for debugger to connect / listen |
| 306 | * |
| 307 | * Useful with server=n (these aren't supported yet): |
| 308 | * onthrow=<exception-name>: connect to debugger when exception thrown |
| 309 | * onuncaught=y|n: connect to debugger when uncaught exception thrown |
| 310 | * launch=<command-line>: launch the debugger itself |
| 311 | * |
| 312 | * The "transport" option is required, as is "address" if server=n. |
| 313 | */ |
| 314 | static bool ParseJdwpOption(const std::string& name, const std::string& value) { |
| 315 | if (name == "transport") { |
| 316 | if (value == "dt_socket") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 317 | gJdwpOptions.transport = JDWP::kJdwpTransportSocket; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 318 | } else if (value == "dt_android_adb") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 319 | gJdwpOptions.transport = JDWP::kJdwpTransportAndroidAdb; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 320 | } else { |
| 321 | LOG(ERROR) << "JDWP transport not supported: " << value; |
| 322 | return false; |
| 323 | } |
| 324 | } else if (name == "server") { |
| 325 | if (value == "n") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 326 | gJdwpOptions.server = false; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 327 | } else if (value == "y") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 328 | gJdwpOptions.server = true; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 329 | } else { |
| 330 | LOG(ERROR) << "JDWP option 'server' must be 'y' or 'n'"; |
| 331 | return false; |
| 332 | } |
| 333 | } else if (name == "suspend") { |
| 334 | if (value == "n") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 335 | gJdwpOptions.suspend = false; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 336 | } else if (value == "y") { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 337 | gJdwpOptions.suspend = true; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 338 | } else { |
| 339 | LOG(ERROR) << "JDWP option 'suspend' must be 'y' or 'n'"; |
| 340 | return false; |
| 341 | } |
| 342 | } else if (name == "address") { |
| 343 | /* this is either <port> or <host>:<port> */ |
| 344 | std::string port_string; |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 345 | gJdwpOptions.host.clear(); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 346 | std::string::size_type colon = value.find(':'); |
| 347 | if (colon != std::string::npos) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 348 | gJdwpOptions.host = value.substr(0, colon); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 349 | port_string = value.substr(colon + 1); |
| 350 | } else { |
| 351 | port_string = value; |
| 352 | } |
| 353 | if (port_string.empty()) { |
| 354 | LOG(ERROR) << "JDWP address missing port: " << value; |
| 355 | return false; |
| 356 | } |
| 357 | char* end; |
Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 358 | uint64_t port = strtoul(port_string.c_str(), &end, 10); |
| 359 | if (*end != '\0' || port > 0xffff) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 360 | LOG(ERROR) << "JDWP address has junk in port field: " << value; |
| 361 | return false; |
| 362 | } |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 363 | gJdwpOptions.port = port; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 364 | } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") { |
| 365 | /* valid but unsupported */ |
| 366 | LOG(INFO) << "Ignoring JDWP option '" << name << "'='" << value << "'"; |
| 367 | } else { |
| 368 | LOG(INFO) << "Ignoring unrecognized JDWP option '" << name << "'='" << value << "'"; |
| 369 | } |
| 370 | |
| 371 | return true; |
| 372 | } |
| 373 | |
| 374 | /* |
| 375 | * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.: |
| 376 | * "transport=dt_socket,address=8000,server=y,suspend=n" |
| 377 | */ |
| 378 | bool Dbg::ParseJdwpOptions(const std::string& options) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 379 | VLOG(jdwp) << "ParseJdwpOptions: " << options; |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 380 | |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 381 | std::vector<std::string> pairs; |
| 382 | Split(options, ',', pairs); |
| 383 | |
| 384 | for (size_t i = 0; i < pairs.size(); ++i) { |
| 385 | std::string::size_type equals = pairs[i].find('='); |
| 386 | if (equals == std::string::npos) { |
| 387 | LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'"; |
| 388 | return false; |
| 389 | } |
| 390 | ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1)); |
| 391 | } |
| 392 | |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 393 | if (gJdwpOptions.transport == JDWP::kJdwpTransportUnknown) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 394 | LOG(ERROR) << "Must specify JDWP transport: " << options; |
| 395 | } |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 396 | if (!gJdwpOptions.server && (gJdwpOptions.host.empty() || gJdwpOptions.port == 0)) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 397 | LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options; |
| 398 | return false; |
| 399 | } |
| 400 | |
| 401 | gJdwpConfigured = true; |
| 402 | return true; |
| 403 | } |
| 404 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 405 | void Dbg::StartJdwp() { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 406 | if (!gJdwpAllowed || !IsJdwpConfigured()) { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 407 | // No JDWP for you! |
| 408 | return; |
| 409 | } |
| 410 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 411 | CHECK(gRegistry == NULL); |
| 412 | gRegistry = new ObjectRegistry; |
| 413 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 414 | // Init JDWP if the debugger is enabled. This may connect out to a |
| 415 | // debugger, passively listen for a debugger, or block waiting for a |
| 416 | // debugger. |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 417 | gJdwpState = JDWP::JdwpState::Create(&gJdwpOptions); |
| 418 | if (gJdwpState == NULL) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 419 | // We probably failed because some other process has the port already, which means that |
| 420 | // if we don't abort the user is likely to think they're talking to us when they're actually |
| 421 | // talking to that other process. |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 422 | LOG(FATAL) << "Debugger thread failed to initialize"; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | // If a debugger has already attached, send the "welcome" message. |
| 426 | // This may cause us to suspend all threads. |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 427 | if (gJdwpState->IsActive()) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 428 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 429 | if (!gJdwpState->PostVMStart()) { |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 430 | LOG(WARNING) << "Failed to post 'start' message to debugger"; |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 431 | } |
| 432 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 433 | } |
| 434 | |
Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 435 | void Dbg::StopJdwp() { |
Elliott Hughes | 376a7a0 | 2011-10-24 18:35:55 -0700 | [diff] [blame] | 436 | delete gJdwpState; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 437 | delete gRegistry; |
| 438 | gRegistry = NULL; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 439 | } |
| 440 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 441 | void Dbg::GcDidFinish() { |
| 442 | if (gDdmHpifWhen != HPIF_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 443 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 444 | LOG(DEBUG) << "Sending heap info to DDM"; |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 445 | DdmSendHeapInfo(gDdmHpifWhen); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 446 | } |
| 447 | if (gDdmHpsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 448 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 449 | LOG(DEBUG) << "Dumping heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 450 | DdmSendHeapSegments(false); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 451 | } |
| 452 | if (gDdmNhsgWhen != HPSG_WHEN_NEVER) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 453 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 454 | LOG(DEBUG) << "Dumping native heap to DDM"; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 455 | DdmSendHeapSegments(true); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 456 | } |
| 457 | } |
| 458 | |
Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 459 | void Dbg::SetJdwpAllowed(bool allowed) { |
| 460 | gJdwpAllowed = allowed; |
| 461 | } |
| 462 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 463 | DebugInvokeReq* Dbg::GetInvokeReq() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 464 | return Thread::Current()->GetInvokeReq(); |
| 465 | } |
| 466 | |
| 467 | Thread* Dbg::GetDebugThread() { |
| 468 | return (gJdwpState != NULL) ? gJdwpState->GetDebugThread() : NULL; |
| 469 | } |
| 470 | |
| 471 | void Dbg::ClearWaitForEventThread() { |
| 472 | gJdwpState->ClearWaitForEventThread(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | void Dbg::Connected() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 476 | CHECK(!gDebuggerConnected); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 477 | VLOG(jdwp) << "JDWP has attached"; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 478 | gDebuggerConnected = true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 479 | gDisposed = false; |
| 480 | } |
| 481 | |
| 482 | void Dbg::Disposed() { |
| 483 | gDisposed = true; |
| 484 | } |
| 485 | |
| 486 | bool Dbg::IsDisposed() { |
| 487 | return gDisposed; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 488 | } |
| 489 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 490 | static void SetDebuggerUpdatesEnabledCallback(Thread* t, void* user_data) { |
| 491 | t->SetDebuggerUpdatesEnabled(*reinterpret_cast<bool*>(user_data)); |
| 492 | } |
| 493 | |
| 494 | static void SetDebuggerUpdatesEnabled(bool enabled) { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 495 | MutexLock mu(*Locks::thread_list_lock_); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 496 | Runtime::Current()->GetThreadList()->ForEach(SetDebuggerUpdatesEnabledCallback, &enabled); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 497 | } |
| 498 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 499 | void Dbg::GoActive() { |
| 500 | // Enable all debugging features, including scans for breakpoints. |
| 501 | // This is a no-op if we're already active. |
| 502 | // Only called from the JDWP handler thread. |
| 503 | if (gDebuggerActive) { |
| 504 | return; |
| 505 | } |
| 506 | |
| 507 | LOG(INFO) << "Debugger is active"; |
| 508 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 509 | { |
| 510 | // TODO: dalvik only warned if there were breakpoints left over. clear in Dbg::Disconnected? |
| 511 | MutexLock mu(gBreakpointsLock); |
| 512 | CHECK_EQ(gBreakpoints.size(), 0U); |
| 513 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 514 | |
| 515 | gDebuggerActive = true; |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 516 | SetDebuggerUpdatesEnabled(true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | void Dbg::Disconnected() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 520 | CHECK(gDebuggerConnected); |
| 521 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 522 | LOG(INFO) << "Debugger is no longer active"; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 523 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 524 | gDebuggerActive = false; |
| 525 | SetDebuggerUpdatesEnabled(false); |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 526 | |
| 527 | gRegistry->Clear(); |
| 528 | gDebuggerConnected = false; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 529 | } |
| 530 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 531 | bool Dbg::IsDebuggerActive() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 532 | return gDebuggerActive; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 535 | bool Dbg::IsJdwpConfigured() { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 536 | return gJdwpConfigured; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | int64_t Dbg::LastDebuggerActivity() { |
Elliott Hughes | ca95152 | 2011-12-05 12:01:32 -0800 | [diff] [blame] | 540 | return gJdwpState->LastDebuggerActivity(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 543 | void Dbg::UndoDebuggerSuspensions() { |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 544 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | void Dbg::Exit(int status) { |
Elliott Hughes | 1bba14f | 2011-12-01 18:00:36 -0800 | [diff] [blame] | 548 | exit(status); // This is all dalvik did. |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 549 | } |
| 550 | |
Elliott Hughes | bfe487b | 2011-10-26 15:48:55 -0700 | [diff] [blame] | 551 | void Dbg::VisitRoots(Heap::RootVisitor* visitor, void* arg) { |
| 552 | if (gRegistry != NULL) { |
| 553 | gRegistry->VisitRoots(visitor, arg); |
| 554 | } |
| 555 | } |
| 556 | |
Elliott Hughes | c308a5d | 2012-02-16 17:12:06 -0800 | [diff] [blame] | 557 | std::string Dbg::GetClassName(JDWP::RefTypeId classId) { |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 558 | Object* o = gRegistry->Get<Object*>(classId); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 559 | if (o == NULL) { |
| 560 | return "NULL"; |
| 561 | } |
| 562 | if (o == kInvalidObject) { |
| 563 | return StringPrintf("invalid object %p", reinterpret_cast<void*>(classId)); |
| 564 | } |
| 565 | if (!o->IsClass()) { |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 566 | return StringPrintf("non-class %p", o); // This is only used for debugging output anyway. |
| 567 | } |
Elliott Hughes | c308a5d | 2012-02-16 17:12:06 -0800 | [diff] [blame] | 568 | return DescriptorToName(ClassHelper(o->AsClass()).GetDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 569 | } |
| 570 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 571 | JDWP::JdwpError Dbg::GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId& classObjectId) { |
| 572 | JDWP::JdwpError status; |
| 573 | Class* c = DecodeClass(id, status); |
| 574 | if (c == NULL) { |
| 575 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 576 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 577 | classObjectId = gRegistry->Add(c); |
| 578 | return JDWP::ERR_NONE; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 579 | } |
| 580 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 581 | JDWP::JdwpError Dbg::GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId& superclassId) { |
| 582 | JDWP::JdwpError status; |
| 583 | Class* c = DecodeClass(id, status); |
| 584 | if (c == NULL) { |
| 585 | return status; |
| 586 | } |
| 587 | if (c->IsInterface()) { |
| 588 | // http://code.google.com/p/android/issues/detail?id=20856 |
Elliott Hughes | a093362 | 2012-04-17 10:46:02 -0700 | [diff] [blame] | 589 | superclassId = 0; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 590 | } else { |
| 591 | superclassId = gRegistry->Add(c->GetSuperClass()); |
| 592 | } |
| 593 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 594 | } |
| 595 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 596 | JDWP::JdwpError Dbg::GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 1bba14f | 2011-12-01 18:00:36 -0800 | [diff] [blame] | 597 | Object* o = gRegistry->Get<Object*>(id); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 598 | if (o == NULL || o == kInvalidObject) { |
| 599 | return JDWP::ERR_INVALID_OBJECT; |
| 600 | } |
| 601 | expandBufAddObjectId(pReply, gRegistry->Add(o->GetClass()->GetClassLoader())); |
| 602 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 603 | } |
| 604 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 605 | JDWP::JdwpError Dbg::GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) { |
| 606 | JDWP::JdwpError status; |
| 607 | Class* c = DecodeClass(id, status); |
| 608 | if (c == NULL) { |
| 609 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 610 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 611 | |
| 612 | uint32_t access_flags = c->GetAccessFlags() & kAccJavaFlagsMask; |
| 613 | |
| 614 | // Set ACC_SUPER; dex files don't contain this flag, but all classes are supposed to have it set. |
| 615 | // Class.getModifiers doesn't return it, but JDWP does, so we set it here. |
| 616 | access_flags |= kAccSuper; |
| 617 | |
| 618 | expandBufAdd4BE(pReply, access_flags); |
| 619 | |
| 620 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 621 | } |
| 622 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 623 | JDWP::JdwpError Dbg::GetReflectedType(JDWP::RefTypeId classId, JDWP::ExpandBuf* pReply) { |
| 624 | JDWP::JdwpError status; |
| 625 | Class* c = DecodeClass(classId, status); |
| 626 | if (c == NULL) { |
| 627 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 628 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 629 | |
| 630 | expandBufAdd1(pReply, c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS); |
| 631 | expandBufAddRefTypeId(pReply, classId); |
| 632 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 633 | } |
| 634 | |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 635 | void Dbg::GetClassList(std::vector<JDWP::RefTypeId>& classes) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 636 | // Get the complete list of reference classes (i.e. all classes except |
| 637 | // the primitive types). |
| 638 | // Returns a newly-allocated buffer full of RefTypeId values. |
| 639 | struct ClassListCreator { |
Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 640 | explicit ClassListCreator(std::vector<JDWP::RefTypeId>& classes) : classes(classes) { |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 641 | } |
| 642 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 643 | static bool Visit(Class* c, void* arg) { |
| 644 | return reinterpret_cast<ClassListCreator*>(arg)->Visit(c); |
| 645 | } |
| 646 | |
| 647 | bool Visit(Class* c) { |
| 648 | if (!c->IsPrimitive()) { |
| 649 | classes.push_back(static_cast<JDWP::RefTypeId>(gRegistry->Add(c))); |
| 650 | } |
| 651 | return true; |
| 652 | } |
| 653 | |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 654 | std::vector<JDWP::RefTypeId>& classes; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 655 | }; |
| 656 | |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 657 | ClassListCreator clc(classes); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 658 | Runtime::Current()->GetClassLinker()->VisitClasses(ClassListCreator::Visit, &clc); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 659 | } |
| 660 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 661 | JDWP::JdwpError Dbg::GetClassInfo(JDWP::RefTypeId classId, JDWP::JdwpTypeTag* pTypeTag, uint32_t* pStatus, std::string* pDescriptor) { |
| 662 | JDWP::JdwpError status; |
| 663 | Class* c = DecodeClass(classId, status); |
| 664 | if (c == NULL) { |
| 665 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 666 | } |
| 667 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 668 | if (c->IsArrayClass()) { |
| 669 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 670 | *pTypeTag = JDWP::TT_ARRAY; |
| 671 | } else { |
| 672 | if (c->IsErroneous()) { |
| 673 | *pStatus = JDWP::CS_ERROR; |
| 674 | } else { |
| 675 | *pStatus = JDWP::CS_VERIFIED | JDWP::CS_PREPARED | JDWP::CS_INITIALIZED; |
| 676 | } |
| 677 | *pTypeTag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 678 | } |
| 679 | |
| 680 | if (pDescriptor != NULL) { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 681 | *pDescriptor = ClassHelper(c).GetDescriptor(); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 682 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 683 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 684 | } |
| 685 | |
Elliott Hughes | c3b77c7 | 2011-12-15 20:56:48 -0800 | [diff] [blame] | 686 | void Dbg::FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>& ids) { |
Elliott Hughes | 6fa602d | 2011-12-02 17:54:25 -0800 | [diff] [blame] | 687 | std::vector<Class*> classes; |
| 688 | Runtime::Current()->GetClassLinker()->LookupClasses(descriptor, classes); |
| 689 | ids.clear(); |
| 690 | for (size_t i = 0; i < classes.size(); ++i) { |
| 691 | ids.push_back(gRegistry->Add(classes[i])); |
| 692 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 693 | } |
| 694 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 695 | JDWP::JdwpError Dbg::GetReferenceType(JDWP::ObjectId objectId, JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 696 | Object* o = gRegistry->Get<Object*>(objectId); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 697 | if (o == NULL || o == kInvalidObject) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 698 | return JDWP::ERR_INVALID_OBJECT; |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 699 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 700 | |
| 701 | JDWP::JdwpTypeTag type_tag; |
| 702 | if (o->GetClass()->IsArrayClass()) { |
| 703 | type_tag = JDWP::TT_ARRAY; |
| 704 | } else if (o->GetClass()->IsInterface()) { |
| 705 | type_tag = JDWP::TT_INTERFACE; |
| 706 | } else { |
| 707 | type_tag = JDWP::TT_CLASS; |
| 708 | } |
| 709 | JDWP::RefTypeId type_id = gRegistry->Add(o->GetClass()); |
| 710 | |
| 711 | expandBufAdd1(pReply, type_tag); |
| 712 | expandBufAddRefTypeId(pReply, type_id); |
| 713 | |
| 714 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 715 | } |
| 716 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 717 | JDWP::JdwpError Dbg::GetSignature(JDWP::RefTypeId classId, std::string& signature) { |
Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 718 | JDWP::JdwpError status; |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 719 | Class* c = DecodeClass(classId, status); |
Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 720 | if (c == NULL) { |
| 721 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 722 | } |
Elliott Hughes | 1fe7afb | 2012-02-13 17:23:03 -0800 | [diff] [blame] | 723 | signature = ClassHelper(c).GetDescriptor(); |
| 724 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 725 | } |
| 726 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 727 | JDWP::JdwpError Dbg::GetSourceFile(JDWP::RefTypeId classId, std::string& result) { |
| 728 | JDWP::JdwpError status; |
| 729 | Class* c = DecodeClass(classId, status); |
| 730 | if (c == NULL) { |
| 731 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 732 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 733 | result = ClassHelper(c).GetSourceFile(); |
| 734 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 735 | } |
| 736 | |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 737 | JDWP::JdwpError Dbg::GetObjectTag(JDWP::ObjectId objectId, uint8_t& tag) { |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 738 | Object* o = gRegistry->Get<Object*>(objectId); |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 739 | if (o == kInvalidObject) { |
| 740 | return JDWP::ERR_INVALID_OBJECT; |
| 741 | } |
| 742 | tag = TagFromObject(o); |
| 743 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 744 | } |
| 745 | |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 746 | size_t Dbg::GetTagWidth(JDWP::JdwpTag tag) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 747 | switch (tag) { |
| 748 | case JDWP::JT_VOID: |
| 749 | return 0; |
| 750 | case JDWP::JT_BYTE: |
| 751 | case JDWP::JT_BOOLEAN: |
| 752 | return 1; |
| 753 | case JDWP::JT_CHAR: |
| 754 | case JDWP::JT_SHORT: |
| 755 | return 2; |
| 756 | case JDWP::JT_FLOAT: |
| 757 | case JDWP::JT_INT: |
| 758 | return 4; |
| 759 | case JDWP::JT_ARRAY: |
| 760 | case JDWP::JT_OBJECT: |
| 761 | case JDWP::JT_STRING: |
| 762 | case JDWP::JT_THREAD: |
| 763 | case JDWP::JT_THREAD_GROUP: |
| 764 | case JDWP::JT_CLASS_LOADER: |
| 765 | case JDWP::JT_CLASS_OBJECT: |
| 766 | return sizeof(JDWP::ObjectId); |
| 767 | case JDWP::JT_DOUBLE: |
| 768 | case JDWP::JT_LONG: |
| 769 | return 8; |
| 770 | default: |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 771 | LOG(FATAL) << "Unknown tag " << tag; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 772 | return -1; |
| 773 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 774 | } |
| 775 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 776 | JDWP::JdwpError Dbg::GetArrayLength(JDWP::ObjectId arrayId, int& length) { |
| 777 | JDWP::JdwpError status; |
| 778 | Array* a = DecodeArray(arrayId, status); |
| 779 | if (a == NULL) { |
| 780 | return status; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 781 | } |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 782 | length = a->GetLength(); |
| 783 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 784 | } |
| 785 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 786 | JDWP::JdwpError Dbg::OutputArray(JDWP::ObjectId arrayId, int offset, int count, JDWP::ExpandBuf* pReply) { |
| 787 | JDWP::JdwpError status; |
| 788 | Array* a = DecodeArray(arrayId, status); |
| 789 | if (a == NULL) { |
| 790 | return status; |
| 791 | } |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 792 | |
| 793 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 794 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 795 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 796 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 797 | std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor()); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 798 | JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1); |
| 799 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 800 | expandBufAdd1(pReply, tag); |
| 801 | expandBufAdd4BE(pReply, count); |
| 802 | |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 803 | if (IsPrimitiveTag(tag)) { |
| 804 | size_t width = GetTagWidth(tag); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 805 | uint8_t* dst = expandBufAddSpace(pReply, count * width); |
| 806 | if (width == 8) { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 807 | const uint64_t* src8 = reinterpret_cast<uint64_t*>(a->GetRawData(sizeof(uint64_t))); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 808 | for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]); |
| 809 | } else if (width == 4) { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 810 | const uint32_t* src4 = reinterpret_cast<uint32_t*>(a->GetRawData(sizeof(uint32_t))); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 811 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]); |
| 812 | } else if (width == 2) { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 813 | const uint16_t* src2 = reinterpret_cast<uint16_t*>(a->GetRawData(sizeof(uint16_t))); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 814 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]); |
| 815 | } else { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 816 | const uint8_t* src = reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t))); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 817 | memcpy(dst, &src[offset * width], count * width); |
| 818 | } |
| 819 | } else { |
| 820 | ObjectArray<Object>* oa = a->AsObjectArray<Object>(); |
| 821 | for (int i = 0; i < count; ++i) { |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 822 | Object* element = oa->Get(offset + i); |
Elliott Hughes | 2443799 | 2011-11-30 14:49:33 -0800 | [diff] [blame] | 823 | JDWP::JdwpTag specific_tag = (element != NULL) ? TagFromObject(element) : tag; |
| 824 | expandBufAdd1(pReply, specific_tag); |
| 825 | expandBufAddObjectId(pReply, gRegistry->Add(element)); |
| 826 | } |
| 827 | } |
| 828 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 829 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 832 | JDWP::JdwpError Dbg::SetArrayElements(JDWP::ObjectId arrayId, int offset, int count, |
| 833 | const uint8_t* src) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 834 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 835 | JDWP::JdwpError status; |
| 836 | Array* a = DecodeArray(arrayId, status); |
| 837 | if (a == NULL) { |
| 838 | return status; |
| 839 | } |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 840 | |
| 841 | if (offset < 0 || count < 0 || offset > a->GetLength() || a->GetLength() - offset < count) { |
| 842 | LOG(WARNING) << __FUNCTION__ << " access out of bounds: offset=" << offset << "; count=" << count; |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 843 | return JDWP::ERR_INVALID_LENGTH; |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 844 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 845 | std::string descriptor(ClassHelper(a->GetClass()).GetDescriptor()); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 846 | JDWP::JdwpTag tag = BasicTagFromDescriptor(descriptor.c_str() + 1); |
| 847 | |
| 848 | if (IsPrimitiveTag(tag)) { |
| 849 | size_t width = GetTagWidth(tag); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 850 | if (width == 8) { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 851 | uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint64_t)))[offset * width]); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 852 | for (int i = 0; i < count; ++i) { |
| 853 | // Handle potentially non-aligned memory access one byte at a time for ARM's benefit. |
| 854 | uint64_t value; |
| 855 | for (size_t j = 0; j < sizeof(uint64_t); ++j) reinterpret_cast<uint8_t*>(&value)[j] = src[j]; |
| 856 | src += sizeof(uint64_t); |
| 857 | JDWP::Write8BE(&dst, value); |
| 858 | } |
| 859 | } else if (width == 4) { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 860 | uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint32_t)))[offset * width]); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 861 | const uint32_t* src4 = reinterpret_cast<const uint32_t*>(src); |
| 862 | for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[i]); |
| 863 | } else if (width == 2) { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 864 | uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint16_t)))[offset * width]); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 865 | const uint16_t* src2 = reinterpret_cast<const uint16_t*>(src); |
| 866 | for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[i]); |
| 867 | } else { |
Ian Rogers | a15e67d | 2012-02-28 13:51:55 -0800 | [diff] [blame] | 868 | uint8_t* dst = &(reinterpret_cast<uint8_t*>(a->GetRawData(sizeof(uint8_t)))[offset * width]); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 869 | memcpy(&dst[offset * width], src, count * width); |
| 870 | } |
| 871 | } else { |
| 872 | ObjectArray<Object>* oa = a->AsObjectArray<Object>(); |
| 873 | for (int i = 0; i < count; ++i) { |
| 874 | JDWP::ObjectId id = JDWP::ReadObjectId(&src); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 875 | Object* o = gRegistry->Get<Object*>(id); |
| 876 | if (o == kInvalidObject) { |
| 877 | return JDWP::ERR_INVALID_OBJECT; |
| 878 | } |
| 879 | oa->Set(offset + i, o); |
Elliott Hughes | f03b8f6 | 2011-12-02 14:26:25 -0800 | [diff] [blame] | 880 | } |
| 881 | } |
| 882 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 883 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 886 | JDWP::ObjectId Dbg::CreateString(const std::string& str) { |
| 887 | return gRegistry->Add(String::AllocFromModifiedUtf8(str.c_str())); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 888 | } |
| 889 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 890 | JDWP::JdwpError Dbg::CreateObject(JDWP::RefTypeId classId, JDWP::ObjectId& new_object) { |
| 891 | JDWP::JdwpError status; |
| 892 | Class* c = DecodeClass(classId, status); |
| 893 | if (c == NULL) { |
| 894 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 895 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 896 | new_object = gRegistry->Add(c->AllocObject()); |
| 897 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 898 | } |
| 899 | |
Elliott Hughes | bf13d36 | 2011-12-08 15:51:37 -0800 | [diff] [blame] | 900 | /* |
| 901 | * Used by Eclipse's "Display" view to evaluate "new byte[5]" to get "(byte[]) [0, 0, 0, 0, 0]". |
| 902 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 903 | JDWP::JdwpError Dbg::CreateArrayObject(JDWP::RefTypeId arrayClassId, uint32_t length, |
| 904 | JDWP::ObjectId& new_array) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 905 | JDWP::JdwpError status; |
| 906 | Class* c = DecodeClass(arrayClassId, status); |
| 907 | if (c == NULL) { |
| 908 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 909 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 910 | new_array = gRegistry->Add(Array::Alloc(c, length)); |
| 911 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | bool Dbg::MatchType(JDWP::RefTypeId instClassId, JDWP::RefTypeId classId) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 915 | JDWP::JdwpError status; |
| 916 | Class* c1 = DecodeClass(instClassId, status); |
Elliott Hughes | a656a0f | 2012-02-21 18:03:44 -0800 | [diff] [blame] | 917 | CHECK(c1 != NULL); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 918 | Class* c2 = DecodeClass(classId, status); |
Elliott Hughes | a656a0f | 2012-02-21 18:03:44 -0800 | [diff] [blame] | 919 | CHECK(c2 != NULL); |
| 920 | return c1->IsAssignableFrom(c2); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 921 | } |
| 922 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 923 | static JDWP::FieldId ToFieldId(const Field* f) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 924 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 925 | #ifdef MOVING_GARBAGE_COLLECTOR |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 926 | UNIMPLEMENTED(FATAL); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 927 | #else |
| 928 | return static_cast<JDWP::FieldId>(reinterpret_cast<uintptr_t>(f)); |
| 929 | #endif |
| 930 | } |
| 931 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 932 | static JDWP::MethodId ToMethodId(const AbstractMethod* m) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 933 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 934 | #ifdef MOVING_GARBAGE_COLLECTOR |
| 935 | UNIMPLEMENTED(FATAL); |
| 936 | #else |
| 937 | return static_cast<JDWP::MethodId>(reinterpret_cast<uintptr_t>(m)); |
| 938 | #endif |
| 939 | } |
| 940 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 941 | static Field* FromFieldId(JDWP::FieldId fid) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 942 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 943 | #ifdef MOVING_GARBAGE_COLLECTOR |
| 944 | UNIMPLEMENTED(FATAL); |
| 945 | #else |
| 946 | return reinterpret_cast<Field*>(static_cast<uintptr_t>(fid)); |
| 947 | #endif |
| 948 | } |
| 949 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 950 | static AbstractMethod* FromMethodId(JDWP::MethodId mid) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 951 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 952 | #ifdef MOVING_GARBAGE_COLLECTOR |
| 953 | UNIMPLEMENTED(FATAL); |
| 954 | #else |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 955 | return reinterpret_cast<AbstractMethod*>(static_cast<uintptr_t>(mid)); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 956 | #endif |
| 957 | } |
| 958 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 959 | static void SetLocation(JDWP::JdwpLocation& location, AbstractMethod* m, uint32_t dex_pc) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 960 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 961 | if (m == NULL) { |
| 962 | memset(&location, 0, sizeof(location)); |
| 963 | } else { |
| 964 | Class* c = m->GetDeclaringClass(); |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 965 | location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 966 | location.class_id = gRegistry->Add(c); |
| 967 | location.method_id = ToMethodId(m); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 968 | location.dex_pc = dex_pc; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 969 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 970 | } |
| 971 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 972 | std::string Dbg::GetMethodName(JDWP::RefTypeId, JDWP::MethodId methodId) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 973 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 974 | AbstractMethod* m = FromMethodId(methodId); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 975 | return MethodHelper(m).GetName(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 976 | } |
| 977 | |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 978 | /* |
| 979 | * Augment the access flags for synthetic methods and fields by setting |
| 980 | * the (as described by the spec) "0xf0000000 bit". Also, strip out any |
| 981 | * flags not specified by the Java programming language. |
| 982 | */ |
| 983 | static uint32_t MangleAccessFlags(uint32_t accessFlags) { |
| 984 | accessFlags &= kAccJavaFlagsMask; |
| 985 | if ((accessFlags & kAccSynthetic) != 0) { |
| 986 | accessFlags |= 0xf0000000; |
| 987 | } |
| 988 | return accessFlags; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 989 | } |
| 990 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 991 | static const uint16_t kEclipseWorkaroundSlot = 1000; |
| 992 | |
| 993 | /* |
| 994 | * Eclipse appears to expect that the "this" reference is in slot zero. |
| 995 | * If it's not, the "variables" display will show two copies of "this", |
| 996 | * possibly because it gets "this" from SF.ThisObject and then displays |
| 997 | * all locals with nonzero slot numbers. |
| 998 | * |
| 999 | * So, we remap the item in slot 0 to 1000, and remap "this" to zero. On |
| 1000 | * SF.GetValues / SF.SetValues we map them back. |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1001 | * |
| 1002 | * TODO: jdb uses the value to determine whether a variable is a local or an argument, |
| 1003 | * by checking whether it's less than the number of arguments. To make that work, we'd |
| 1004 | * have to "mangle" all the arguments to come first, not just the implicit argument 'this'. |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1005 | */ |
| 1006 | static uint16_t MangleSlot(uint16_t slot, const char* name) { |
| 1007 | uint16_t newSlot = slot; |
| 1008 | if (strcmp(name, "this") == 0) { |
| 1009 | newSlot = 0; |
| 1010 | } else if (slot == 0) { |
| 1011 | newSlot = kEclipseWorkaroundSlot; |
| 1012 | } |
| 1013 | return newSlot; |
| 1014 | } |
| 1015 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1016 | static uint16_t DemangleSlot(uint16_t slot, AbstractMethod* m) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1017 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1018 | if (slot == kEclipseWorkaroundSlot) { |
Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1019 | return 0; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1020 | } else if (slot == 0) { |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1021 | const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem(); |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1022 | CHECK(code_item != NULL) << PrettyMethod(m); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1023 | return code_item->registers_size_ - code_item->ins_size_; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1024 | } |
Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1025 | return slot; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1026 | } |
| 1027 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1028 | JDWP::JdwpError Dbg::OutputDeclaredFields(JDWP::RefTypeId classId, bool with_generic, JDWP::ExpandBuf* pReply) { |
| 1029 | JDWP::JdwpError status; |
| 1030 | Class* c = DecodeClass(classId, status); |
| 1031 | if (c == NULL) { |
| 1032 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1033 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1034 | |
| 1035 | size_t instance_field_count = c->NumInstanceFields(); |
| 1036 | size_t static_field_count = c->NumStaticFields(); |
| 1037 | |
| 1038 | expandBufAdd4BE(pReply, instance_field_count + static_field_count); |
| 1039 | |
| 1040 | for (size_t i = 0; i < instance_field_count + static_field_count; ++i) { |
| 1041 | Field* f = (i < instance_field_count) ? c->GetInstanceField(i) : c->GetStaticField(i - instance_field_count); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1042 | FieldHelper fh(f); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1043 | expandBufAddFieldId(pReply, ToFieldId(f)); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1044 | expandBufAddUtf8String(pReply, fh.GetName()); |
| 1045 | expandBufAddUtf8String(pReply, fh.GetTypeDescriptor()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1046 | if (with_generic) { |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1047 | static const char genericSignature[1] = ""; |
| 1048 | expandBufAddUtf8String(pReply, genericSignature); |
| 1049 | } |
| 1050 | expandBufAdd4BE(pReply, MangleAccessFlags(f->GetAccessFlags())); |
| 1051 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1052 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1053 | } |
| 1054 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1055 | JDWP::JdwpError Dbg::OutputDeclaredMethods(JDWP::RefTypeId classId, bool with_generic, |
| 1056 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1057 | JDWP::JdwpError status; |
| 1058 | Class* c = DecodeClass(classId, status); |
| 1059 | if (c == NULL) { |
| 1060 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1061 | } |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1062 | |
| 1063 | size_t direct_method_count = c->NumDirectMethods(); |
| 1064 | size_t virtual_method_count = c->NumVirtualMethods(); |
| 1065 | |
| 1066 | expandBufAdd4BE(pReply, direct_method_count + virtual_method_count); |
| 1067 | |
| 1068 | for (size_t i = 0; i < direct_method_count + virtual_method_count; ++i) { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1069 | AbstractMethod* m = (i < direct_method_count) ? c->GetDirectMethod(i) : c->GetVirtualMethod(i - direct_method_count); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1070 | MethodHelper mh(m); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1071 | expandBufAddMethodId(pReply, ToMethodId(m)); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1072 | expandBufAddUtf8String(pReply, mh.GetName()); |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 1073 | expandBufAddUtf8String(pReply, mh.GetSignature()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1074 | if (with_generic) { |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1075 | static const char genericSignature[1] = ""; |
| 1076 | expandBufAddUtf8String(pReply, genericSignature); |
| 1077 | } |
| 1078 | expandBufAdd4BE(pReply, MangleAccessFlags(m->GetAccessFlags())); |
| 1079 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1080 | return JDWP::ERR_NONE; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1081 | } |
| 1082 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1083 | JDWP::JdwpError Dbg::OutputDeclaredInterfaces(JDWP::RefTypeId classId, JDWP::ExpandBuf* pReply) { |
| 1084 | JDWP::JdwpError status; |
| 1085 | Class* c = DecodeClass(classId, status); |
| 1086 | if (c == NULL) { |
| 1087 | return status; |
Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 1088 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1089 | |
| 1090 | ClassHelper kh(c); |
Ian Rogers | d24e264 | 2012-06-06 21:21:43 -0700 | [diff] [blame] | 1091 | size_t interface_count = kh.NumDirectInterfaces(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1092 | expandBufAdd4BE(pReply, interface_count); |
| 1093 | for (size_t i = 0; i < interface_count; ++i) { |
Ian Rogers | d24e264 | 2012-06-06 21:21:43 -0700 | [diff] [blame] | 1094 | expandBufAddRefTypeId(pReply, gRegistry->Add(kh.GetDirectInterface(i))); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1095 | } |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1096 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1097 | } |
| 1098 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1099 | void Dbg::OutputLineTable(JDWP::RefTypeId, JDWP::MethodId methodId, JDWP::ExpandBuf* pReply) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1100 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1101 | struct DebugCallbackContext { |
| 1102 | int numItems; |
| 1103 | JDWP::ExpandBuf* pReply; |
| 1104 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1105 | static bool Callback(void* context, uint32_t address, uint32_t line_number) { |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1106 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1107 | expandBufAdd8BE(pContext->pReply, address); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1108 | expandBufAdd4BE(pContext->pReply, line_number); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1109 | pContext->numItems++; |
| 1110 | return true; |
| 1111 | } |
| 1112 | }; |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1113 | AbstractMethod* m = FromMethodId(methodId); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1114 | MethodHelper mh(m); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1115 | uint64_t start, end; |
| 1116 | if (m->IsNative()) { |
| 1117 | start = -1; |
| 1118 | end = -1; |
| 1119 | } else { |
| 1120 | start = 0; |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1121 | // TODO: what are the units supposed to be? *2? |
| 1122 | end = mh.GetCodeItem()->insns_size_in_code_units_; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1123 | } |
| 1124 | |
| 1125 | expandBufAdd8BE(pReply, start); |
| 1126 | expandBufAdd8BE(pReply, end); |
| 1127 | |
| 1128 | // Add numLines later |
| 1129 | size_t numLinesOffset = expandBufGetLength(pReply); |
| 1130 | expandBufAdd4BE(pReply, 0); |
| 1131 | |
| 1132 | DebugCallbackContext context; |
| 1133 | context.numItems = 0; |
| 1134 | context.pReply = pReply; |
| 1135 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1136 | mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(), |
| 1137 | DebugCallbackContext::Callback, NULL, &context); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1138 | |
| 1139 | JDWP::Set4BE(expandBufGetBuffer(pReply) + numLinesOffset, context.numItems); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1140 | } |
| 1141 | |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1142 | void Dbg::OutputVariableTable(JDWP::RefTypeId, JDWP::MethodId methodId, bool with_generic, JDWP::ExpandBuf* pReply) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1143 | struct DebugCallbackContext { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1144 | JDWP::ExpandBuf* pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1145 | size_t variable_count; |
| 1146 | bool with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1147 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1148 | static void Callback(void* context, uint16_t slot, uint32_t startAddress, uint32_t endAddress, const char* name, const char* descriptor, const char* signature) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1149 | DebugCallbackContext* pContext = reinterpret_cast<DebugCallbackContext*>(context); |
| 1150 | |
Elliott Hughes | ad3da69 | 2012-02-24 16:51:35 -0800 | [diff] [blame] | 1151 | VLOG(jdwp) << StringPrintf(" %2zd: %d(%d) '%s' '%s' '%s' actual slot=%d mangled slot=%d", pContext->variable_count, startAddress, endAddress - startAddress, name, descriptor, signature, slot, MangleSlot(slot, name)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1152 | |
Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1153 | slot = MangleSlot(slot, name); |
| 1154 | |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1155 | expandBufAdd8BE(pContext->pReply, startAddress); |
| 1156 | expandBufAddUtf8String(pContext->pReply, name); |
| 1157 | expandBufAddUtf8String(pContext->pReply, descriptor); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1158 | if (pContext->with_generic) { |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1159 | expandBufAddUtf8String(pContext->pReply, signature); |
| 1160 | } |
| 1161 | expandBufAdd4BE(pContext->pReply, endAddress - startAddress); |
| 1162 | expandBufAdd4BE(pContext->pReply, slot); |
| 1163 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1164 | ++pContext->variable_count; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1165 | } |
| 1166 | }; |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1167 | AbstractMethod* m = FromMethodId(methodId); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1168 | MethodHelper mh(m); |
| 1169 | const DexFile::CodeItem* code_item = mh.GetCodeItem(); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1170 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1171 | // arg_count considers doubles and longs to take 2 units. |
| 1172 | // variable_count considers everything to take 1 unit. |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1173 | std::string shorty(mh.GetShorty()); |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1174 | expandBufAdd4BE(pReply, m->NumArgRegisters(shorty)); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1175 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1176 | // We don't know the total number of variables yet, so leave a blank and update it later. |
| 1177 | size_t variable_count_offset = expandBufGetLength(pReply); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1178 | expandBufAdd4BE(pReply, 0); |
| 1179 | |
| 1180 | DebugCallbackContext context; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1181 | context.pReply = pReply; |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1182 | context.variable_count = 0; |
| 1183 | context.with_generic = with_generic; |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1184 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1185 | mh.GetDexFile().DecodeDebugInfo(code_item, m->IsStatic(), m->GetDexMethodIndex(), NULL, |
| 1186 | DebugCallbackContext::Callback, &context); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1187 | |
Elliott Hughes | c5b734a | 2011-12-01 17:20:58 -0800 | [diff] [blame] | 1188 | JDWP::Set4BE(expandBufGetBuffer(pReply) + variable_count_offset, context.variable_count); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1191 | JDWP::JdwpTag Dbg::GetFieldBasicTag(JDWP::FieldId fieldId) { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1192 | return BasicTagFromDescriptor(FieldHelper(FromFieldId(fieldId)).GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1193 | } |
| 1194 | |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1195 | JDWP::JdwpTag Dbg::GetStaticFieldBasicTag(JDWP::FieldId fieldId) { |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1196 | return BasicTagFromDescriptor(FieldHelper(FromFieldId(fieldId)).GetTypeDescriptor()); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1197 | } |
| 1198 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1199 | static JDWP::JdwpError GetFieldValueImpl(JDWP::RefTypeId refTypeId, JDWP::ObjectId objectId, |
| 1200 | JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply, |
| 1201 | bool is_static) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1202 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1203 | JDWP::JdwpError status; |
| 1204 | Class* c = DecodeClass(refTypeId, status); |
| 1205 | if (refTypeId != 0 && c == NULL) { |
| 1206 | return status; |
| 1207 | } |
| 1208 | |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1209 | Object* o = gRegistry->Get<Object*>(objectId); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1210 | if ((!is_static && o == NULL) || o == kInvalidObject) { |
| 1211 | return JDWP::ERR_INVALID_OBJECT; |
| 1212 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1213 | Field* f = FromFieldId(fieldId); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1214 | |
| 1215 | Class* receiver_class = c; |
| 1216 | if (receiver_class == NULL && o != NULL) { |
| 1217 | receiver_class = o->GetClass(); |
| 1218 | } |
| 1219 | // TODO: should we give up now if receiver_class is NULL? |
| 1220 | if (receiver_class != NULL && !f->GetDeclaringClass()->IsAssignableFrom(receiver_class)) { |
| 1221 | LOG(INFO) << "ERR_INVALID_FIELDID: " << PrettyField(f) << " " << PrettyClass(receiver_class); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1222 | return JDWP::ERR_INVALID_FIELDID; |
| 1223 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1224 | |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1225 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1226 | // TODO: should we change the tests and check both? |
| 1227 | if (is_static) { |
| 1228 | if (!f->IsStatic()) { |
| 1229 | return JDWP::ERR_INVALID_FIELDID; |
| 1230 | } |
| 1231 | } else { |
| 1232 | if (f->IsStatic()) { |
| 1233 | LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f); |
| 1234 | o = NULL; |
| 1235 | } |
| 1236 | } |
| 1237 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1238 | JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor()); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1239 | |
| 1240 | if (IsPrimitiveTag(tag)) { |
| 1241 | expandBufAdd1(pReply, tag); |
| 1242 | if (tag == JDWP::JT_BOOLEAN || tag == JDWP::JT_BYTE) { |
| 1243 | expandBufAdd1(pReply, f->Get32(o)); |
| 1244 | } else if (tag == JDWP::JT_CHAR || tag == JDWP::JT_SHORT) { |
| 1245 | expandBufAdd2BE(pReply, f->Get32(o)); |
| 1246 | } else if (tag == JDWP::JT_FLOAT || tag == JDWP::JT_INT) { |
| 1247 | expandBufAdd4BE(pReply, f->Get32(o)); |
| 1248 | } else if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
| 1249 | expandBufAdd8BE(pReply, f->Get64(o)); |
| 1250 | } else { |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1251 | LOG(FATAL) << "Unknown tag: " << tag; |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1252 | } |
| 1253 | } else { |
| 1254 | Object* value = f->GetObject(o); |
| 1255 | expandBufAdd1(pReply, TagFromObject(value)); |
| 1256 | expandBufAddObjectId(pReply, gRegistry->Add(value)); |
| 1257 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1258 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1259 | } |
| 1260 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1261 | JDWP::JdwpError Dbg::GetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, |
| 1262 | JDWP::ExpandBuf* pReply) { |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1263 | return GetFieldValueImpl(0, objectId, fieldId, pReply, false); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1264 | } |
| 1265 | |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1266 | JDWP::JdwpError Dbg::GetStaticFieldValue(JDWP::RefTypeId refTypeId, JDWP::FieldId fieldId, JDWP::ExpandBuf* pReply) { |
| 1267 | return GetFieldValueImpl(refTypeId, 0, fieldId, pReply, true); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1268 | } |
| 1269 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1270 | static JDWP::JdwpError SetFieldValueImpl(JDWP::ObjectId objectId, JDWP::FieldId fieldId, |
| 1271 | uint64_t value, int width, bool is_static) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1272 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1273 | Object* o = gRegistry->Get<Object*>(objectId); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1274 | if ((!is_static && o == NULL) || o == kInvalidObject) { |
| 1275 | return JDWP::ERR_INVALID_OBJECT; |
| 1276 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1277 | Field* f = FromFieldId(fieldId); |
Elliott Hughes | 0cf7433 | 2012-02-23 23:14:00 -0800 | [diff] [blame] | 1278 | |
| 1279 | // The RI only enforces the static/non-static mismatch in one direction. |
| 1280 | // TODO: should we change the tests and check both? |
| 1281 | if (is_static) { |
| 1282 | if (!f->IsStatic()) { |
| 1283 | return JDWP::ERR_INVALID_FIELDID; |
| 1284 | } |
| 1285 | } else { |
| 1286 | if (f->IsStatic()) { |
| 1287 | LOG(WARNING) << "Ignoring non-NULL receiver for ObjectReference.SetValues on static field " << PrettyField(f); |
| 1288 | o = NULL; |
| 1289 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1290 | } |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1291 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 1292 | JDWP::JdwpTag tag = BasicTagFromDescriptor(FieldHelper(f).GetTypeDescriptor()); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1293 | |
| 1294 | if (IsPrimitiveTag(tag)) { |
| 1295 | if (tag == JDWP::JT_DOUBLE || tag == JDWP::JT_LONG) { |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1296 | CHECK_EQ(width, 8); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1297 | f->Set64(o, value); |
| 1298 | } else { |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 1299 | CHECK_LE(width, 4); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1300 | f->Set32(o, value); |
| 1301 | } |
| 1302 | } else { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1303 | Object* v = gRegistry->Get<Object*>(value); |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1304 | if (v == kInvalidObject) { |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1305 | return JDWP::ERR_INVALID_OBJECT; |
| 1306 | } |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1307 | if (v != NULL) { |
| 1308 | Class* field_type = FieldHelper(f).GetType(); |
| 1309 | if (!field_type->IsAssignableFrom(v->GetClass())) { |
| 1310 | return JDWP::ERR_INVALID_OBJECT; |
| 1311 | } |
| 1312 | } |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1313 | f->SetObject(o, v); |
Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 1314 | } |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1315 | |
| 1316 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1317 | } |
| 1318 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1319 | JDWP::JdwpError Dbg::SetFieldValue(JDWP::ObjectId objectId, JDWP::FieldId fieldId, uint64_t value, |
| 1320 | int width) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1321 | return SetFieldValueImpl(objectId, fieldId, value, width, false); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1322 | } |
| 1323 | |
Elliott Hughes | 3d1ca6d | 2012-02-13 15:43:19 -0800 | [diff] [blame] | 1324 | JDWP::JdwpError Dbg::SetStaticFieldValue(JDWP::FieldId fieldId, uint64_t value, int width) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 1325 | return SetFieldValueImpl(0, fieldId, value, width, true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1326 | } |
| 1327 | |
Elliott Hughes | 68fdbd0 | 2011-11-29 19:22:47 -0800 | [diff] [blame] | 1328 | std::string Dbg::StringToUtf8(JDWP::ObjectId strId) { |
| 1329 | String* s = gRegistry->Get<String*>(strId); |
| 1330 | return s->ToModifiedUtf8(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1331 | } |
| 1332 | |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1333 | bool Dbg::GetThreadName(JDWP::ObjectId threadId, std::string& name) { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1334 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1335 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1336 | Thread* thread = DecodeThread(soa, threadId); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1337 | if (thread == NULL) { |
| 1338 | return false; |
| 1339 | } |
Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 1340 | thread->GetThreadName(name); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1341 | return true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1342 | } |
| 1343 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1344 | JDWP::JdwpError Dbg::GetThreadGroup(JDWP::ObjectId threadId, JDWP::ExpandBuf* pReply) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1345 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1346 | Object* thread = gRegistry->Get<Object*>(threadId); |
Elliott Hughes | 436e372 | 2012-02-17 20:01:47 -0800 | [diff] [blame] | 1347 | if (thread == kInvalidObject) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1348 | return JDWP::ERR_INVALID_OBJECT; |
| 1349 | } |
| 1350 | |
| 1351 | // Okay, so it's an object, but is it actually a thread? |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1352 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1353 | if (DecodeThread(soa, threadId) == NULL) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1354 | return JDWP::ERR_INVALID_THREAD; |
| 1355 | } |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1356 | |
| 1357 | Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/Thread;"); |
| 1358 | CHECK(c != NULL); |
| 1359 | Field* f = c->FindInstanceField("group", "Ljava/lang/ThreadGroup;"); |
| 1360 | CHECK(f != NULL); |
| 1361 | Object* group = f->GetObject(thread); |
| 1362 | CHECK(group != NULL); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1363 | JDWP::ObjectId thread_group_id = gRegistry->Add(group); |
| 1364 | |
| 1365 | expandBufAddObjectId(pReply, thread_group_id); |
| 1366 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1367 | } |
| 1368 | |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1369 | std::string Dbg::GetThreadGroupName(JDWP::ObjectId threadGroupId) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1370 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1371 | Object* thread_group = gRegistry->Get<Object*>(threadGroupId); |
| 1372 | CHECK(thread_group != NULL); |
| 1373 | |
| 1374 | Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;"); |
| 1375 | CHECK(c != NULL); |
| 1376 | Field* f = c->FindInstanceField("name", "Ljava/lang/String;"); |
| 1377 | CHECK(f != NULL); |
| 1378 | String* s = reinterpret_cast<String*>(f->GetObject(thread_group)); |
| 1379 | return s->ToModifiedUtf8(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1380 | } |
| 1381 | |
| 1382 | JDWP::ObjectId Dbg::GetThreadGroupParent(JDWP::ObjectId threadGroupId) { |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 1383 | Object* thread_group = gRegistry->Get<Object*>(threadGroupId); |
| 1384 | CHECK(thread_group != NULL); |
| 1385 | |
| 1386 | Class* c = Runtime::Current()->GetClassLinker()->FindSystemClass("Ljava/lang/ThreadGroup;"); |
| 1387 | CHECK(c != NULL); |
| 1388 | Field* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;"); |
| 1389 | CHECK(f != NULL); |
| 1390 | Object* parent = f->GetObject(thread_group); |
| 1391 | return gRegistry->Add(parent); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1392 | } |
| 1393 | |
| 1394 | JDWP::ObjectId Dbg::GetSystemThreadGroupId() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1395 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1396 | Object* group = |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1397 | soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_systemThreadGroup)->GetObject(NULL); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1398 | return gRegistry->Add(group); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1399 | } |
| 1400 | |
| 1401 | JDWP::ObjectId Dbg::GetMainThreadGroupId() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1402 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1403 | Object* group = |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1404 | soa.DecodeField(WellKnownClasses::java_lang_ThreadGroup_mainThreadGroup)->GetObject(NULL); |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1405 | return gRegistry->Add(group); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1406 | } |
| 1407 | |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1408 | bool Dbg::GetThreadStatus(JDWP::ObjectId threadId, JDWP::JdwpThreadStatus* pThreadStatus, JDWP::JdwpSuspendStatus* pSuspendStatus) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1409 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1410 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1411 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1412 | Thread* thread = DecodeThread(soa, threadId); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1413 | if (thread == NULL) { |
| 1414 | return false; |
| 1415 | } |
| 1416 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1417 | MutexLock mu2(*Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1418 | |
Elliott Hughes | 3ce4b26 | 2012-02-24 11:24:02 -0800 | [diff] [blame] | 1419 | // TODO: if we're in Thread.sleep(long), we should return TS_SLEEPING, |
| 1420 | // even if it's implemented using Object.wait(long). |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1421 | switch (thread->GetState()) { |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 1422 | case kTerminated: *pThreadStatus = JDWP::TS_ZOMBIE; break; |
| 1423 | case kRunnable: *pThreadStatus = JDWP::TS_RUNNING; break; |
| 1424 | case kTimedWaiting: *pThreadStatus = JDWP::TS_WAIT; break; |
| 1425 | case kBlocked: *pThreadStatus = JDWP::TS_MONITOR; break; |
| 1426 | case kWaiting: *pThreadStatus = JDWP::TS_WAIT; break; |
| 1427 | case kStarting: *pThreadStatus = JDWP::TS_ZOMBIE; break; |
| 1428 | case kNative: *pThreadStatus = JDWP::TS_RUNNING; break; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1429 | case kWaitingForGcToComplete: // Fall-through. |
| 1430 | case kWaitingPerformingGc: // Fall-through. |
| 1431 | case kWaitingForDebuggerSend: // Fall-through. |
| 1432 | case kWaitingForDebuggerToAttach: // Fall-through. |
| 1433 | case kWaitingInMainDebuggerLoop: // Fall-through. |
| 1434 | case kWaitingForDebuggerSuspension: // Fall-through. |
| 1435 | case kWaitingForJniOnLoad: // Fall-through. |
| 1436 | case kWaitingForSignalCatcherOutput: // Fall-through. |
| 1437 | case kWaitingInMainSignalCatcherLoop: |
| 1438 | *pThreadStatus = JDWP::TS_WAIT; break; |
Elliott Hughes | 34e0696 | 2012-04-09 13:55:55 -0700 | [diff] [blame] | 1439 | case kSuspended: *pThreadStatus = JDWP::TS_RUNNING; break; |
Elliott Hughes | cf2b2d4 | 2012-03-27 17:11:42 -0700 | [diff] [blame] | 1440 | // Don't add a 'default' here so the compiler can spot incompatible enum changes. |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1441 | } |
| 1442 | |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1443 | *pSuspendStatus = (thread->IsSuspended() ? JDWP::SUSPEND_STATUS_SUSPENDED : JDWP::SUSPEND_STATUS_NOT_SUSPENDED); |
Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 1444 | |
| 1445 | return true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1446 | } |
| 1447 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1448 | JDWP::JdwpError Dbg::GetThreadDebugSuspendCount(JDWP::ObjectId threadId, JDWP::ExpandBuf* pReply) { |
| 1449 | ScopedObjectAccess soa(Thread::Current()); |
| 1450 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1451 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1452 | Thread* thread = DecodeThread(soa, threadId); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1453 | if (thread == NULL) { |
| 1454 | return JDWP::ERR_INVALID_THREAD; |
| 1455 | } |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1456 | MutexLock mu2(*Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1457 | expandBufAdd4BE(pReply, thread->GetDebugSuspendCount()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 1458 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1459 | } |
| 1460 | |
| 1461 | bool Dbg::ThreadExists(JDWP::ObjectId threadId) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1462 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1463 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1464 | return DecodeThread(soa, threadId) != NULL; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1465 | } |
| 1466 | |
| 1467 | bool Dbg::IsSuspended(JDWP::ObjectId threadId) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1468 | ScopedObjectAccess soa(Thread::Current()); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1469 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1470 | Thread* thread = DecodeThread(soa, threadId); |
| 1471 | CHECK(thread != NULL); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1472 | MutexLock mu2(*Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1473 | return thread->IsSuspended(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1474 | } |
| 1475 | |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1476 | void Dbg::GetThreads(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& thread_ids) { |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1477 | class ThreadListVisitor { |
| 1478 | public: |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 1479 | ThreadListVisitor(const ScopedObjectAccessUnchecked& soa, Object* thread_group, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1480 | std::vector<JDWP::ObjectId>& thread_ids) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1481 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 1482 | : soa_(soa), thread_group_(thread_group), thread_ids_(thread_ids) {} |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1483 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1484 | static void Visit(Thread* t, void* arg) { |
| 1485 | reinterpret_cast<ThreadListVisitor*>(arg)->Visit(t); |
| 1486 | } |
| 1487 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1488 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 1489 | // annotalysis. |
| 1490 | void Visit(Thread* t) NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1491 | if (t == Dbg::GetDebugThread()) { |
| 1492 | // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and |
| 1493 | // query all threads, so it's easier if we just don't tell them about this thread. |
| 1494 | return; |
| 1495 | } |
Ian Rogers | 120f1c7 | 2012-09-28 17:17:10 -0700 | [diff] [blame] | 1496 | bool should_add = (thread_group_ == NULL); |
| 1497 | Object* peer = soa_.Decode<Object*>(t->GetPeer()); |
| 1498 | if (!should_add) { |
| 1499 | Object* group = soa_.DecodeField(WellKnownClasses::java_lang_Thread_group)->GetObject(peer); |
| 1500 | should_add = (group == thread_group_); |
| 1501 | } |
| 1502 | if (should_add) { |
| 1503 | thread_ids_.push_back(gRegistry->Add(peer)); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1504 | } |
| 1505 | } |
| 1506 | |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1507 | private: |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 1508 | const ScopedObjectAccessUnchecked& soa_; |
Ian Rogers | 365c102 | 2012-06-22 15:05:28 -0700 | [diff] [blame] | 1509 | Object* const thread_group_; |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1510 | std::vector<JDWP::ObjectId>& thread_ids_; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1511 | }; |
| 1512 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1513 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1514 | Object* thread_group = gRegistry->Get<Object*>(thread_group_id); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1515 | ThreadListVisitor tlv(soa, thread_group, thread_ids); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1516 | MutexLock mu(*Locks::thread_list_lock_); |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 1517 | Runtime::Current()->GetThreadList()->ForEach(ThreadListVisitor::Visit, &tlv); |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1518 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1519 | |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1520 | void Dbg::GetChildThreadGroups(JDWP::ObjectId thread_group_id, std::vector<JDWP::ObjectId>& child_thread_group_ids) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1521 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1522 | Object* thread_group = gRegistry->Get<Object*>(thread_group_id); |
| 1523 | |
| 1524 | // Get the ArrayList<ThreadGroup> "groups" out of this thread group... |
| 1525 | Field* groups_field = thread_group->GetClass()->FindInstanceField("groups", "Ljava/util/List;"); |
| 1526 | Object* groups_array_list = groups_field->GetObject(thread_group); |
| 1527 | |
| 1528 | // Get the array and size out of the ArrayList<ThreadGroup>... |
| 1529 | Field* array_field = groups_array_list->GetClass()->FindInstanceField("array", "[Ljava/lang/Object;"); |
| 1530 | Field* size_field = groups_array_list->GetClass()->FindInstanceField("size", "I"); |
| 1531 | ObjectArray<Object>* groups_array = array_field->GetObject(groups_array_list)->AsObjectArray<Object>(); |
| 1532 | const int32_t size = size_field->GetInt(groups_array_list); |
| 1533 | |
| 1534 | // Copy the first 'size' elements out of the array into the result. |
| 1535 | for (int32_t i = 0; i < size; ++i) { |
| 1536 | child_thread_group_ids.push_back(gRegistry->Add(groups_array->Get(i))); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 1537 | } |
| 1538 | } |
| 1539 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1540 | static int GetStackDepth(Thread* thread) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1541 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1542 | struct CountStackDepthVisitor : public StackVisitor { |
| 1543 | CountStackDepthVisitor(const ManagedStack* stack, |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 1544 | const std::vector<TraceStackFrame>* trace_stack) |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1545 | : StackVisitor(stack, trace_stack, NULL), depth(0) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1546 | |
| 1547 | bool VisitFrame() { |
| 1548 | if (!GetMethod()->IsRuntimeMethod()) { |
Elliott Hughes | f8a2df7 | 2011-12-01 12:19:54 -0800 | [diff] [blame] | 1549 | ++depth; |
| 1550 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1551 | return true; |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1552 | } |
| 1553 | size_t depth; |
| 1554 | }; |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1555 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1556 | if (kIsDebugBuild) { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1557 | MutexLock mu(*Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1558 | CHECK(thread->IsSuspended()); |
| 1559 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1560 | CountStackDepthVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack()); |
| 1561 | visitor.WalkStack(); |
Elliott Hughes | a2e54f6 | 2011-11-17 13:01:30 -0800 | [diff] [blame] | 1562 | return visitor.depth; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1563 | } |
| 1564 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 1565 | int Dbg::GetThreadFrameCount(JDWP::ObjectId threadId) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1566 | ScopedObjectAccess soa(Thread::Current()); |
| 1567 | return GetStackDepth(DecodeThread(soa, threadId)); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 1568 | } |
| 1569 | |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1570 | JDWP::JdwpError Dbg::GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1571 | class GetFrameVisitor : public StackVisitor { |
| 1572 | public: |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1573 | GetFrameVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack, |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1574 | size_t start_frame, size_t frame_count, JDWP::ExpandBuf* buf) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1575 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1576 | : StackVisitor(stack, trace_stack, NULL), depth_(0), |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1577 | start_frame_(start_frame), frame_count_(frame_count), buf_(buf) { |
| 1578 | expandBufAdd4BE(buf_, frame_count_); |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1579 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1580 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1581 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 1582 | // annotalysis. |
| 1583 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1584 | if (GetMethod()->IsRuntimeMethod()) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1585 | 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] | 1586 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1587 | if (depth_ >= start_frame_ + frame_count_) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1588 | return false; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1589 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1590 | if (depth_ >= start_frame_) { |
| 1591 | JDWP::FrameId frame_id(GetFrameId()); |
| 1592 | JDWP::JdwpLocation location; |
| 1593 | SetLocation(location, GetMethod(), GetDexPc()); |
Elliott Hughes | 7baf96f | 2012-06-22 16:33:50 -0700 | [diff] [blame] | 1594 | VLOG(jdwp) << StringPrintf(" Frame %3zd: id=%3lld ", depth_, frame_id) << location; |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1595 | expandBufAdd8BE(buf_, frame_id); |
| 1596 | expandBufAddLocation(buf_, location); |
| 1597 | } |
| 1598 | ++depth_; |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 1599 | return true; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1600 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1601 | |
| 1602 | private: |
| 1603 | size_t depth_; |
| 1604 | const size_t start_frame_; |
| 1605 | const size_t frame_count_; |
| 1606 | JDWP::ExpandBuf* buf_; |
Elliott Hughes | 03181a8 | 2011-11-17 17:22:21 -0800 | [diff] [blame] | 1607 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1608 | |
| 1609 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1610 | Thread* thread = DecodeThread(soa, thread_id); // Caller already checked thread is suspended. |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1611 | GetFrameVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), start_frame, frame_count, buf); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1612 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1613 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1614 | } |
| 1615 | |
| 1616 | JDWP::ObjectId Dbg::GetThreadSelfId() { |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 1617 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1618 | return gRegistry->Add(soa.Decode<Object*>(Thread::Current()->GetPeer())); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1619 | } |
| 1620 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 1621 | void Dbg::SuspendVM() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1622 | Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1623 | } |
| 1624 | |
| 1625 | void Dbg::ResumeVM() { |
Elliott Hughes | c61a267 | 2012-06-21 14:52:29 -0700 | [diff] [blame] | 1626 | Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1627 | } |
| 1628 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1629 | JDWP::JdwpError Dbg::SuspendThread(JDWP::ObjectId threadId, bool request_suspension) { |
| 1630 | |
| 1631 | bool timeout; |
| 1632 | ScopedLocalRef<jobject> peer(Thread::Current()->GetJniEnv(), NULL); |
| 1633 | { |
| 1634 | ScopedObjectAccess soa(Thread::Current()); |
| 1635 | peer.reset(soa.AddLocalReference<jobject>(gRegistry->Get<Object*>(threadId))); |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 1636 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1637 | if (peer.get() == NULL) { |
| 1638 | LOG(WARNING) << "No such thread for suspend: " << threadId; |
| 1639 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 1640 | } |
| 1641 | // Suspend thread to build stack trace. |
| 1642 | Thread* thread = Thread::SuspendForDebugger(peer.get(), request_suspension, &timeout); |
| 1643 | if (thread != NULL) { |
| 1644 | return JDWP::ERR_NONE; |
| 1645 | } else if (timeout) { |
| 1646 | return JDWP::ERR_INTERNAL; |
| 1647 | } else { |
| 1648 | return JDWP::ERR_THREAD_NOT_ALIVE; |
| 1649 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1650 | } |
| 1651 | |
| 1652 | void Dbg::ResumeThread(JDWP::ObjectId threadId) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1653 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 1654 | Object* peer = gRegistry->Get<Object*>(threadId); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1655 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1656 | Thread* thread = Thread::FromManagedThread(soa, peer); |
Elliott Hughes | 4e23531 | 2011-12-02 11:34:15 -0800 | [diff] [blame] | 1657 | if (thread == NULL) { |
| 1658 | LOG(WARNING) << "No such thread for resume: " << peer; |
| 1659 | return; |
| 1660 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1661 | bool needs_resume; |
| 1662 | { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1663 | MutexLock mu2(*Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1664 | needs_resume = thread->GetSuspendCount() > 0; |
| 1665 | } |
| 1666 | if (needs_resume) { |
Elliott Hughes | 546b986 | 2012-06-20 16:06:13 -0700 | [diff] [blame] | 1667 | Runtime::Current()->GetThreadList()->Resume(thread, true); |
| 1668 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1669 | } |
| 1670 | |
| 1671 | void Dbg::SuspendSelf() { |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 1672 | Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1673 | } |
| 1674 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1675 | struct GetThisVisitor : public StackVisitor { |
| 1676 | GetThisVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack, |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1677 | Context* context, JDWP::FrameId frameId) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1678 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1679 | : StackVisitor(stack, trace_stack, context), this_object(NULL), frame_id(frameId) {} |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1680 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1681 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 1682 | // annotalysis. |
| 1683 | virtual bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1684 | if (frame_id != GetFrameId()) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1685 | return true; // continue |
| 1686 | } |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1687 | AbstractMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1688 | if (m->IsNative() || m->IsStatic()) { |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1689 | this_object = NULL; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1690 | } else { |
| 1691 | uint16_t reg = DemangleSlot(0, m); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1692 | this_object = reinterpret_cast<Object*>(GetVReg(m, reg)); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1693 | } |
| 1694 | return false; |
Elliott Hughes | 86b0010 | 2011-12-05 17:54:26 -0800 | [diff] [blame] | 1695 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1696 | |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1697 | Object* this_object; |
| 1698 | JDWP::FrameId frame_id; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1699 | }; |
| 1700 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1701 | static Object* GetThis(Thread* self, AbstractMethod* m, size_t frame_id) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1702 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1703 | // TODO: should we return the 'this' we passed through to non-static native methods? |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1704 | if (m->IsNative() || m->IsStatic()) { |
| 1705 | return NULL; |
| 1706 | } |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1707 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1708 | UniquePtr<Context> context(Context::Create()); |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1709 | GetThisVisitor visitor(self->GetManagedStack(), self->GetTraceStack(), context.get(), frame_id); |
| 1710 | visitor.WalkStack(); |
| 1711 | return visitor.this_object; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1712 | } |
| 1713 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1714 | JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, |
| 1715 | JDWP::ObjectId* result) { |
| 1716 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1717 | Thread* thread; |
| 1718 | { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1719 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1720 | thread = DecodeThread(soa, thread_id); |
| 1721 | if (thread == NULL) { |
| 1722 | return JDWP::ERR_INVALID_THREAD; |
| 1723 | } |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1724 | MutexLock mu2(*Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1725 | if (!thread->IsSuspended()) { |
| 1726 | return JDWP::ERR_THREAD_NOT_SUSPENDED; |
| 1727 | } |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1728 | } |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1729 | UniquePtr<Context> context(Context::Create()); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1730 | GetThisVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), context.get(), frame_id); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1731 | visitor.WalkStack(); |
Elliott Hughes | 6e9d22c | 2012-06-22 15:02:37 -0700 | [diff] [blame] | 1732 | *result = gRegistry->Add(visitor.this_object); |
| 1733 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1734 | } |
| 1735 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1736 | void Dbg::GetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, JDWP::JdwpTag tag, |
| 1737 | uint8_t* buf, size_t width) { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1738 | struct GetLocalVisitor : public StackVisitor { |
| 1739 | GetLocalVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack, |
| 1740 | Context* context, JDWP::FrameId frameId, int slot, JDWP::JdwpTag tag, |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 1741 | uint8_t* buf, size_t width) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1742 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 1743 | : StackVisitor(stack, trace_stack, context), frame_id_(frameId), slot_(slot), tag_(tag), |
| 1744 | buf_(buf), width_(width) {} |
| 1745 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1746 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 1747 | // annotalysis. |
| 1748 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1749 | if (GetFrameId() != frame_id_) { |
| 1750 | return true; // Not our frame, carry on. |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1751 | } |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1752 | // TODO: check that the tag is compatible with the actual type of the slot! |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1753 | AbstractMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1754 | uint16_t reg = DemangleSlot(slot_, m); |
Elliott Hughes | dbb4079 | 2011-11-18 17:05:22 -0800 | [diff] [blame] | 1755 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1756 | switch (tag_) { |
| 1757 | case JDWP::JT_BOOLEAN: |
| 1758 | { |
| 1759 | CHECK_EQ(width_, 1U); |
| 1760 | uint32_t intVal = GetVReg(m, reg); |
| 1761 | VLOG(jdwp) << "get boolean local " << reg << " = " << intVal; |
| 1762 | JDWP::Set1(buf_+1, intVal != 0); |
| 1763 | } |
| 1764 | break; |
| 1765 | case JDWP::JT_BYTE: |
| 1766 | { |
| 1767 | CHECK_EQ(width_, 1U); |
| 1768 | uint32_t intVal = GetVReg(m, reg); |
| 1769 | VLOG(jdwp) << "get byte local " << reg << " = " << intVal; |
| 1770 | JDWP::Set1(buf_+1, intVal); |
| 1771 | } |
| 1772 | break; |
| 1773 | case JDWP::JT_SHORT: |
| 1774 | case JDWP::JT_CHAR: |
| 1775 | { |
| 1776 | CHECK_EQ(width_, 2U); |
| 1777 | uint32_t intVal = GetVReg(m, reg); |
| 1778 | VLOG(jdwp) << "get short/char local " << reg << " = " << intVal; |
| 1779 | JDWP::Set2BE(buf_+1, intVal); |
| 1780 | } |
| 1781 | break; |
| 1782 | case JDWP::JT_INT: |
| 1783 | case JDWP::JT_FLOAT: |
| 1784 | { |
| 1785 | CHECK_EQ(width_, 4U); |
| 1786 | uint32_t intVal = GetVReg(m, reg); |
| 1787 | VLOG(jdwp) << "get int/float local " << reg << " = " << intVal; |
| 1788 | JDWP::Set4BE(buf_+1, intVal); |
| 1789 | } |
| 1790 | break; |
| 1791 | case JDWP::JT_ARRAY: |
| 1792 | { |
| 1793 | CHECK_EQ(width_, sizeof(JDWP::ObjectId)); |
| 1794 | Object* o = reinterpret_cast<Object*>(GetVReg(m, reg)); |
| 1795 | VLOG(jdwp) << "get array local " << reg << " = " << o; |
| 1796 | if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) { |
| 1797 | LOG(FATAL) << "Register " << reg << " expected to hold array: " << o; |
| 1798 | } |
| 1799 | JDWP::SetObjectId(buf_+1, gRegistry->Add(o)); |
| 1800 | } |
| 1801 | break; |
| 1802 | case JDWP::JT_CLASS_LOADER: |
| 1803 | case JDWP::JT_CLASS_OBJECT: |
| 1804 | case JDWP::JT_OBJECT: |
| 1805 | case JDWP::JT_STRING: |
| 1806 | case JDWP::JT_THREAD: |
| 1807 | case JDWP::JT_THREAD_GROUP: |
| 1808 | { |
| 1809 | CHECK_EQ(width_, sizeof(JDWP::ObjectId)); |
| 1810 | Object* o = reinterpret_cast<Object*>(GetVReg(m, reg)); |
| 1811 | VLOG(jdwp) << "get object local " << reg << " = " << o; |
| 1812 | if (!Runtime::Current()->GetHeap()->IsHeapAddress(o)) { |
| 1813 | LOG(FATAL) << "Register " << reg << " expected to hold object: " << o; |
| 1814 | } |
| 1815 | tag_ = TagFromObject(o); |
| 1816 | JDWP::SetObjectId(buf_+1, gRegistry->Add(o)); |
| 1817 | } |
| 1818 | break; |
| 1819 | case JDWP::JT_DOUBLE: |
| 1820 | case JDWP::JT_LONG: |
| 1821 | { |
| 1822 | CHECK_EQ(width_, 8U); |
| 1823 | uint32_t lo = GetVReg(m, reg); |
| 1824 | uint64_t hi = GetVReg(m, reg + 1); |
| 1825 | uint64_t longVal = (hi << 32) | lo; |
| 1826 | VLOG(jdwp) << "get double/long local " << hi << ":" << lo << " = " << longVal; |
| 1827 | JDWP::Set8BE(buf_+1, longVal); |
| 1828 | } |
| 1829 | break; |
| 1830 | default: |
| 1831 | LOG(FATAL) << "Unknown tag " << tag_; |
| 1832 | break; |
| 1833 | } |
| 1834 | |
| 1835 | // Prepend tag, which may have been updated. |
| 1836 | JDWP::Set1(buf_, tag_); |
| 1837 | return false; |
| 1838 | } |
| 1839 | |
| 1840 | const JDWP::FrameId frame_id_; |
| 1841 | const int slot_; |
| 1842 | JDWP::JdwpTag tag_; |
| 1843 | uint8_t* const buf_; |
| 1844 | const size_t width_; |
| 1845 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1846 | |
| 1847 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1848 | Thread* thread = DecodeThread(soa, threadId); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1849 | UniquePtr<Context> context(Context::Create()); |
| 1850 | GetLocalVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), context.get(), |
| 1851 | frameId, slot, tag, buf, width); |
| 1852 | visitor.WalkStack(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1853 | } |
| 1854 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1855 | void Dbg::SetLocalValue(JDWP::ObjectId threadId, JDWP::FrameId frameId, int slot, JDWP::JdwpTag tag, |
| 1856 | uint64_t value, size_t width) { |
| 1857 | struct SetLocalVisitor : public StackVisitor { |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1858 | SetLocalVisitor(const ManagedStack* stack, const std::vector<TraceStackFrame>* trace_stack, Context* context, |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1859 | JDWP::FrameId frame_id, int slot, JDWP::JdwpTag tag, uint64_t value, |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 1860 | size_t width) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 1861 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1862 | : StackVisitor(stack, trace_stack, context), |
| 1863 | frame_id_(frame_id), slot_(slot), tag_(tag), value_(value), width_(width) {} |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 1864 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1865 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 1866 | // annotalysis. |
| 1867 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1868 | if (GetFrameId() != frame_id_) { |
| 1869 | return true; // Not our frame, carry on. |
| 1870 | } |
| 1871 | // TODO: check that the tag is compatible with the actual type of the slot! |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1872 | AbstractMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1873 | uint16_t reg = DemangleSlot(slot_, m); |
| 1874 | |
| 1875 | switch (tag_) { |
| 1876 | case JDWP::JT_BOOLEAN: |
| 1877 | case JDWP::JT_BYTE: |
| 1878 | CHECK_EQ(width_, 1U); |
| 1879 | SetVReg(m, reg, static_cast<uint32_t>(value_)); |
| 1880 | break; |
| 1881 | case JDWP::JT_SHORT: |
| 1882 | case JDWP::JT_CHAR: |
| 1883 | CHECK_EQ(width_, 2U); |
| 1884 | SetVReg(m, reg, static_cast<uint32_t>(value_)); |
| 1885 | break; |
| 1886 | case JDWP::JT_INT: |
| 1887 | case JDWP::JT_FLOAT: |
| 1888 | CHECK_EQ(width_, 4U); |
| 1889 | SetVReg(m, reg, static_cast<uint32_t>(value_)); |
| 1890 | break; |
| 1891 | case JDWP::JT_ARRAY: |
| 1892 | case JDWP::JT_OBJECT: |
| 1893 | case JDWP::JT_STRING: |
| 1894 | { |
| 1895 | CHECK_EQ(width_, sizeof(JDWP::ObjectId)); |
| 1896 | Object* o = gRegistry->Get<Object*>(static_cast<JDWP::ObjectId>(value_)); |
| 1897 | if (o == kInvalidObject) { |
| 1898 | UNIMPLEMENTED(FATAL) << "return an error code when given an invalid object to store"; |
| 1899 | } |
| 1900 | SetVReg(m, reg, static_cast<uint32_t>(reinterpret_cast<uintptr_t>(o))); |
| 1901 | } |
| 1902 | break; |
| 1903 | case JDWP::JT_DOUBLE: |
| 1904 | case JDWP::JT_LONG: |
| 1905 | CHECK_EQ(width_, 8U); |
| 1906 | SetVReg(m, reg, static_cast<uint32_t>(value_)); |
| 1907 | SetVReg(m, reg + 1, static_cast<uint32_t>(value_ >> 32)); |
| 1908 | break; |
| 1909 | default: |
| 1910 | LOG(FATAL) << "Unknown tag " << tag_; |
| 1911 | break; |
| 1912 | } |
| 1913 | return false; |
| 1914 | } |
| 1915 | |
| 1916 | const JDWP::FrameId frame_id_; |
| 1917 | const int slot_; |
| 1918 | const JDWP::JdwpTag tag_; |
| 1919 | const uint64_t value_; |
| 1920 | const size_t width_; |
| 1921 | }; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 1922 | |
| 1923 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 1924 | Thread* thread = DecodeThread(soa, threadId); |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 1925 | UniquePtr<Context> context(Context::Create()); |
| 1926 | SetLocalVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), context.get(), |
| 1927 | frameId, slot, tag, value, width); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 1928 | visitor.WalkStack(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1929 | } |
| 1930 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1931 | void Dbg::PostLocationEvent(const AbstractMethod* m, int dex_pc, Object* this_object, int event_flags) { |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1932 | Class* c = m->GetDeclaringClass(); |
| 1933 | |
| 1934 | JDWP::JdwpLocation location; |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 1935 | location.type_tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 1936 | location.class_id = gRegistry->Add(c); |
| 1937 | location.method_id = ToMethodId(m); |
Elliott Hughes | 972a47b | 2012-02-21 18:16:06 -0800 | [diff] [blame] | 1938 | location.dex_pc = m->IsNative() ? -1 : dex_pc; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 1939 | |
| 1940 | // Note we use "NoReg" so we don't keep track of references that are |
| 1941 | // never actually sent to the debugger. 'this_id' is only used to |
| 1942 | // compare against registered events... |
| 1943 | JDWP::ObjectId this_id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(this_object)); |
| 1944 | if (gJdwpState->PostLocationEvent(&location, this_id, event_flags)) { |
| 1945 | // ...unless there's a registered event, in which case we |
| 1946 | // need to really track the class and 'this'. |
| 1947 | gRegistry->Add(c); |
| 1948 | gRegistry->Add(this_object); |
| 1949 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1950 | } |
| 1951 | |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1952 | void Dbg::PostException(Thread* thread, |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 1953 | JDWP::FrameId throw_frame_id, AbstractMethod* throw_method, uint32_t throw_dex_pc, |
| 1954 | AbstractMethod* catch_method, uint32_t catch_dex_pc, Throwable* exception) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 1955 | if (!IsDebuggerActive()) { |
Ian Rogers | 0ad5bb8 | 2011-12-07 10:16:32 -0800 | [diff] [blame] | 1956 | return; |
| 1957 | } |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 1958 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1959 | JDWP::JdwpLocation throw_location; |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1960 | SetLocation(throw_location, throw_method, throw_dex_pc); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1961 | JDWP::JdwpLocation catch_location; |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1962 | SetLocation(catch_location, catch_method, catch_dex_pc); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1963 | |
| 1964 | // We need 'this' for InstanceOnly filters. |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1965 | UniquePtr<Context> context(Context::Create()); |
| 1966 | GetThisVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack(), context.get(), throw_frame_id); |
| 1967 | visitor.WalkStack(); |
| 1968 | JDWP::ObjectId this_id = gRegistry->Add(visitor.this_object); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 1969 | |
| 1970 | /* |
| 1971 | * Hand the event to the JDWP exception handler. Note we're using the |
| 1972 | * "NoReg" objectID on the exception, which is not strictly correct -- |
| 1973 | * the exception object WILL be passed up to the debugger if the |
| 1974 | * debugger is interested in the event. We do this because the current |
| 1975 | * implementation of the debugger object registry never throws anything |
| 1976 | * away, and some people were experiencing a fatal build up of exception |
| 1977 | * objects when dealing with certain libraries. |
| 1978 | */ |
| 1979 | JDWP::ObjectId exception_id = static_cast<JDWP::ObjectId>(reinterpret_cast<uintptr_t>(exception)); |
| 1980 | JDWP::RefTypeId exception_class_id = gRegistry->Add(exception->GetClass()); |
| 1981 | |
| 1982 | gJdwpState->PostException(&throw_location, exception_id, exception_class_id, &catch_location, this_id); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1983 | } |
| 1984 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1985 | void Dbg::PostClassPrepare(Class* c) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 1986 | if (!IsDebuggerActive()) { |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 1987 | return; |
| 1988 | } |
| 1989 | |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 1990 | // OLD-TODO - we currently always send both "verified" and "prepared" since |
Elliott Hughes | 4740cdf | 2011-12-07 14:07:12 -0800 | [diff] [blame] | 1991 | // debuggers seem to like that. There might be some advantage to honesty, |
| 1992 | // since the class may not yet be verified. |
| 1993 | int state = JDWP::CS_VERIFIED | JDWP::CS_PREPARED; |
| 1994 | JDWP::JdwpTypeTag tag = c->IsInterface() ? JDWP::TT_INTERFACE : JDWP::TT_CLASS; |
| 1995 | gJdwpState->PostClassPrepare(tag, gRegistry->Add(c), ClassHelper(c).GetDescriptor(), state); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1996 | } |
| 1997 | |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 1998 | void Dbg::UpdateDebugger(int32_t dex_pc, Thread* self) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 1999 | if (!IsDebuggerActive() || dex_pc == -2 /* fake method exit */) { |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2000 | return; |
| 2001 | } |
| 2002 | |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2003 | size_t frame_id; |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 2004 | AbstractMethod* m = self->GetCurrentMethod(NULL, &frame_id); |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2005 | //LOG(INFO) << "UpdateDebugger " << PrettyMethod(m) << "@" << dex_pc << " frame " << frame_id; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2006 | |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2007 | if (dex_pc == -1) { |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 2008 | // We use a pc of -1 to represent method entry, since we might branch back to pc 0 later. |
| 2009 | // This means that for this special notification, there can't be anything else interesting |
| 2010 | // going on, so we're done already. |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2011 | Dbg::PostLocationEvent(m, 0, GetThis(self, m, frame_id), kMethodEntry); |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 2012 | return; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2013 | } |
| 2014 | |
Elliott Hughes | 2aa2e39 | 2012-02-17 17:15:43 -0800 | [diff] [blame] | 2015 | int event_flags = 0; |
| 2016 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2017 | if (IsBreakpoint(m, dex_pc)) { |
| 2018 | event_flags |= kBreakpoint; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2019 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2020 | |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2021 | // If the debugger is single-stepping one of our threads, check to |
| 2022 | // see if we're that thread and we've reached a step point. |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 2023 | MutexLock mu(gBreakpointsLock); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2024 | if (gSingleStepControl.is_active && gSingleStepControl.thread == self) { |
| 2025 | CHECK(!m->IsNative()); |
| 2026 | if (gSingleStepControl.step_depth == JDWP::SD_INTO) { |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2027 | // Step into method calls. We break when the line number |
| 2028 | // or method pointer changes. If we're in SS_MIN mode, we |
| 2029 | // always stop. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2030 | if (gSingleStepControl.method != m) { |
| 2031 | event_flags |= kSingleStep; |
| 2032 | VLOG(jdwp) << "SS new method"; |
| 2033 | } else if (gSingleStepControl.step_size == JDWP::SS_MIN) { |
| 2034 | event_flags |= kSingleStep; |
| 2035 | VLOG(jdwp) << "SS new instruction"; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2036 | } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) { |
| 2037 | event_flags |= kSingleStep; |
| 2038 | VLOG(jdwp) << "SS new line"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2039 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2040 | } else if (gSingleStepControl.step_depth == JDWP::SD_OVER) { |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2041 | // Step over method calls. We break when the line number is |
| 2042 | // different and the frame depth is <= the original frame |
| 2043 | // depth. (We can't just compare on the method, because we |
| 2044 | // might get unrolled past it by an exception, and it's tricky |
| 2045 | // to identify recursion.) |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2046 | |
| 2047 | // TODO: can we just use the value of 'sp'? |
| 2048 | int stack_depth = GetStackDepth(self); |
| 2049 | |
| 2050 | if (stack_depth < gSingleStepControl.stack_depth) { |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2051 | // popped up one or more frames, always trigger |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2052 | event_flags |= kSingleStep; |
| 2053 | VLOG(jdwp) << "SS method pop"; |
| 2054 | } else if (stack_depth == gSingleStepControl.stack_depth) { |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2055 | // same depth, see if we moved |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2056 | if (gSingleStepControl.step_size == JDWP::SS_MIN) { |
| 2057 | event_flags |= kSingleStep; |
| 2058 | VLOG(jdwp) << "SS new instruction"; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2059 | } else if (gSingleStepControl.dex_pcs.find(dex_pc) == gSingleStepControl.dex_pcs.end()) { |
| 2060 | event_flags |= kSingleStep; |
| 2061 | VLOG(jdwp) << "SS new line"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2062 | } |
| 2063 | } |
| 2064 | } else { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2065 | CHECK_EQ(gSingleStepControl.step_depth, JDWP::SD_OUT); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2066 | // Return from the current method. We break when the frame |
| 2067 | // depth pops up. |
| 2068 | |
| 2069 | // This differs from the "method exit" break in that it stops |
| 2070 | // with the PC at the next instruction in the returned-to |
| 2071 | // function, rather than the end of the returning function. |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2072 | |
| 2073 | // TODO: can we just use the value of 'sp'? |
| 2074 | int stack_depth = GetStackDepth(self); |
| 2075 | if (stack_depth < gSingleStepControl.stack_depth) { |
| 2076 | event_flags |= kSingleStep; |
| 2077 | VLOG(jdwp) << "SS method pop"; |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2078 | } |
| 2079 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2080 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2081 | |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2082 | // Check to see if this is a "return" instruction. JDWP says we should |
| 2083 | // send the event *after* the code has been executed, but it also says |
| 2084 | // the location we provide is the last instruction. Since the "return" |
| 2085 | // instruction has no interesting side effects, we should be safe. |
| 2086 | // (We can't just move this down to the returnFromMethod label because |
| 2087 | // we potentially need to combine it with other events.) |
| 2088 | // We're also not supposed to generate a method exit event if the method |
| 2089 | // terminates "with a thrown exception". |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2090 | if (dex_pc >= 0) { |
| 2091 | const DexFile::CodeItem* code_item = MethodHelper(m).GetCodeItem(); |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2092 | CHECK(code_item != NULL) << PrettyMethod(m) << " @" << dex_pc; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2093 | CHECK_LT(dex_pc, static_cast<int32_t>(code_item->insns_size_in_code_units_)); |
| 2094 | if (Instruction::At(&code_item->insns_[dex_pc])->IsReturn()) { |
| 2095 | event_flags |= kMethodExit; |
| 2096 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2097 | } |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2098 | |
| 2099 | // If there's something interesting going on, see if it matches one |
| 2100 | // of the debugger filters. |
| 2101 | if (event_flags != 0) { |
Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 2102 | Dbg::PostLocationEvent(m, dex_pc, GetThis(self, m, frame_id), event_flags); |
Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 2103 | } |
| 2104 | } |
| 2105 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2106 | void Dbg::WatchLocation(const JDWP::JdwpLocation* location) { |
| 2107 | MutexLock mu(gBreakpointsLock); |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 2108 | AbstractMethod* m = FromMethodId(location->method_id); |
Elliott Hughes | 972a47b | 2012-02-21 18:16:06 -0800 | [diff] [blame] | 2109 | gBreakpoints.push_back(Breakpoint(m, location->dex_pc)); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2110 | VLOG(jdwp) << "Set breakpoint #" << (gBreakpoints.size() - 1) << ": " << gBreakpoints[gBreakpoints.size() - 1]; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2111 | } |
| 2112 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2113 | void Dbg::UnwatchLocation(const JDWP::JdwpLocation* location) { |
| 2114 | MutexLock mu(gBreakpointsLock); |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 2115 | AbstractMethod* m = FromMethodId(location->method_id); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2116 | for (size_t i = 0; i < gBreakpoints.size(); ++i) { |
Elliott Hughes | 972a47b | 2012-02-21 18:16:06 -0800 | [diff] [blame] | 2117 | if (gBreakpoints[i].method == m && gBreakpoints[i].dex_pc == location->dex_pc) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2118 | VLOG(jdwp) << "Removed breakpoint #" << i << ": " << gBreakpoints[i]; |
| 2119 | gBreakpoints.erase(gBreakpoints.begin() + i); |
| 2120 | return; |
| 2121 | } |
| 2122 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2123 | } |
| 2124 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2125 | JDWP::JdwpError Dbg::ConfigureStep(JDWP::ObjectId threadId, JDWP::JdwpStepSize step_size, |
| 2126 | JDWP::JdwpStepDepth step_depth) { |
| 2127 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2128 | Thread* thread = DecodeThread(soa, threadId); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2129 | if (thread == NULL) { |
| 2130 | return JDWP::ERR_INVALID_THREAD; |
| 2131 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2132 | |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 2133 | MutexLock mu(gBreakpointsLock); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2134 | // TODO: there's no theoretical reason why we couldn't support single-stepping |
| 2135 | // of multiple threads at once, but we never did so historically. |
| 2136 | if (gSingleStepControl.thread != NULL && thread != gSingleStepControl.thread) { |
| 2137 | LOG(WARNING) << "single-step already active for " << *gSingleStepControl.thread |
| 2138 | << "; switching to " << *thread; |
| 2139 | } |
| 2140 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2141 | // |
| 2142 | // Work out what Method* we're in, the current line number, and how deep the stack currently |
| 2143 | // is for step-out. |
| 2144 | // |
| 2145 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2146 | struct SingleStepStackVisitor : public StackVisitor { |
| 2147 | SingleStepStackVisitor(const ManagedStack* stack, |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 2148 | const std::vector<TraceStackFrame>* trace_stack) |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2149 | EXCLUSIVE_LOCKS_REQUIRED(gBreakpointsLock) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2150 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 2151 | : StackVisitor(stack, trace_stack, NULL) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2152 | gBreakpointsLock.AssertHeld(); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2153 | gSingleStepControl.method = NULL; |
| 2154 | gSingleStepControl.stack_depth = 0; |
| 2155 | } |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 2156 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2157 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 2158 | // annotalysis. |
| 2159 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
| 2160 | gBreakpointsLock.AssertHeld(); |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 2161 | const AbstractMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2162 | if (!m->IsRuntimeMethod()) { |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2163 | ++gSingleStepControl.stack_depth; |
| 2164 | if (gSingleStepControl.method == NULL) { |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2165 | const DexCache* dex_cache = m->GetDeclaringClass()->GetDexCache(); |
| 2166 | gSingleStepControl.method = m; |
| 2167 | gSingleStepControl.line_number = -1; |
| 2168 | if (dex_cache != NULL) { |
| 2169 | const DexFile& dex_file = Runtime::Current()->GetClassLinker()->FindDexFile(dex_cache); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2170 | gSingleStepControl.line_number = dex_file.GetLineNumFromPC(m, GetDexPc()); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2171 | } |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2172 | } |
| 2173 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 2174 | return true; |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2175 | } |
| 2176 | }; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 2177 | SingleStepStackVisitor visitor(thread->GetManagedStack(), thread->GetTraceStack()); |
| 2178 | visitor.WalkStack(); |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2179 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2180 | // |
| 2181 | // Find the dex_pc values that correspond to the current line, for line-based single-stepping. |
| 2182 | // |
| 2183 | |
| 2184 | struct DebugCallbackContext { |
| 2185 | DebugCallbackContext() { |
| 2186 | last_pc_valid = false; |
| 2187 | last_pc = 0; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2188 | } |
| 2189 | |
| 2190 | static bool Callback(void* raw_context, uint32_t address, uint32_t line_number) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 2191 | MutexLock mu(gBreakpointsLock); // Keep GCC happy. |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2192 | DebugCallbackContext* context = reinterpret_cast<DebugCallbackContext*>(raw_context); |
| 2193 | if (static_cast<int32_t>(line_number) == gSingleStepControl.line_number) { |
| 2194 | if (!context->last_pc_valid) { |
| 2195 | // Everything from this address until the next line change is ours. |
| 2196 | context->last_pc = address; |
| 2197 | context->last_pc_valid = true; |
| 2198 | } |
| 2199 | // Otherwise, if we're already in a valid range for this line, |
| 2200 | // just keep going (shouldn't really happen)... |
| 2201 | } else if (context->last_pc_valid) { // and the line number is new |
| 2202 | // Add everything from the last entry up until here to the set |
| 2203 | for (uint32_t dex_pc = context->last_pc; dex_pc < address; ++dex_pc) { |
| 2204 | gSingleStepControl.dex_pcs.insert(dex_pc); |
| 2205 | } |
| 2206 | context->last_pc_valid = false; |
| 2207 | } |
| 2208 | return false; // There may be multiple entries for any given line. |
| 2209 | } |
| 2210 | |
| 2211 | ~DebugCallbackContext() { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 2212 | MutexLock mu(gBreakpointsLock); // Keep GCC happy. |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2213 | // If the line number was the last in the position table... |
| 2214 | if (last_pc_valid) { |
| 2215 | size_t end = MethodHelper(gSingleStepControl.method).GetCodeItem()->insns_size_in_code_units_; |
| 2216 | for (uint32_t dex_pc = last_pc; dex_pc < end; ++dex_pc) { |
| 2217 | gSingleStepControl.dex_pcs.insert(dex_pc); |
| 2218 | } |
| 2219 | } |
| 2220 | } |
| 2221 | |
| 2222 | bool last_pc_valid; |
| 2223 | uint32_t last_pc; |
| 2224 | }; |
Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 2225 | gSingleStepControl.dex_pcs.clear(); |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 2226 | const AbstractMethod* m = gSingleStepControl.method; |
Elliott Hughes | 3e2e1a2 | 2012-02-21 11:33:41 -0800 | [diff] [blame] | 2227 | if (m->IsNative()) { |
| 2228 | gSingleStepControl.line_number = -1; |
| 2229 | } else { |
| 2230 | DebugCallbackContext context; |
| 2231 | MethodHelper mh(m); |
| 2232 | mh.GetDexFile().DecodeDebugInfo(mh.GetCodeItem(), m->IsStatic(), m->GetDexMethodIndex(), |
| 2233 | DebugCallbackContext::Callback, NULL, &context); |
| 2234 | } |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2235 | |
| 2236 | // |
| 2237 | // Everything else... |
| 2238 | // |
| 2239 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2240 | gSingleStepControl.thread = thread; |
| 2241 | gSingleStepControl.step_size = step_size; |
| 2242 | gSingleStepControl.step_depth = step_depth; |
| 2243 | gSingleStepControl.is_active = true; |
| 2244 | |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2245 | if (VLOG_IS_ON(jdwp)) { |
| 2246 | VLOG(jdwp) << "Single-step thread: " << *gSingleStepControl.thread; |
| 2247 | VLOG(jdwp) << "Single-step step size: " << gSingleStepControl.step_size; |
| 2248 | VLOG(jdwp) << "Single-step step depth: " << gSingleStepControl.step_depth; |
| 2249 | VLOG(jdwp) << "Single-step current method: " << PrettyMethod(gSingleStepControl.method); |
| 2250 | VLOG(jdwp) << "Single-step current line: " << gSingleStepControl.line_number; |
| 2251 | VLOG(jdwp) << "Single-step current stack depth: " << gSingleStepControl.stack_depth; |
| 2252 | VLOG(jdwp) << "Single-step dex_pc values:"; |
| 2253 | for (std::set<uint32_t>::iterator it = gSingleStepControl.dex_pcs.begin() ; it != gSingleStepControl.dex_pcs.end(); ++it) { |
Elliott Hughes | 229feb7 | 2012-02-23 13:33:29 -0800 | [diff] [blame] | 2254 | VLOG(jdwp) << StringPrintf(" %#x", *it); |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2255 | } |
| 2256 | } |
| 2257 | |
| 2258 | return JDWP::ERR_NONE; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2259 | } |
| 2260 | |
Elliott Hughes | 1bac54f | 2012-03-16 12:48:31 -0700 | [diff] [blame] | 2261 | void Dbg::UnconfigureStep(JDWP::ObjectId /*threadId*/) { |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 2262 | MutexLock mu(gBreakpointsLock); |
| 2263 | |
Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 2264 | gSingleStepControl.is_active = false; |
| 2265 | gSingleStepControl.thread = NULL; |
Elliott Hughes | 2435a57 | 2012-02-17 16:07:41 -0800 | [diff] [blame] | 2266 | gSingleStepControl.dex_pcs.clear(); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2267 | } |
| 2268 | |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 2269 | static char JdwpTagToShortyChar(JDWP::JdwpTag tag) { |
| 2270 | switch (tag) { |
| 2271 | default: |
| 2272 | LOG(FATAL) << "unknown JDWP tag: " << PrintableChar(tag); |
| 2273 | |
| 2274 | // Primitives. |
| 2275 | case JDWP::JT_BYTE: return 'B'; |
| 2276 | case JDWP::JT_CHAR: return 'C'; |
| 2277 | case JDWP::JT_FLOAT: return 'F'; |
| 2278 | case JDWP::JT_DOUBLE: return 'D'; |
| 2279 | case JDWP::JT_INT: return 'I'; |
| 2280 | case JDWP::JT_LONG: return 'J'; |
| 2281 | case JDWP::JT_SHORT: return 'S'; |
| 2282 | case JDWP::JT_VOID: return 'V'; |
| 2283 | case JDWP::JT_BOOLEAN: return 'Z'; |
| 2284 | |
| 2285 | // Reference types. |
| 2286 | case JDWP::JT_ARRAY: |
| 2287 | case JDWP::JT_OBJECT: |
| 2288 | case JDWP::JT_STRING: |
| 2289 | case JDWP::JT_THREAD: |
| 2290 | case JDWP::JT_THREAD_GROUP: |
| 2291 | case JDWP::JT_CLASS_LOADER: |
| 2292 | case JDWP::JT_CLASS_OBJECT: |
| 2293 | return 'L'; |
| 2294 | } |
| 2295 | } |
| 2296 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2297 | JDWP::JdwpError Dbg::InvokeMethod(JDWP::ObjectId threadId, JDWP::ObjectId objectId, |
| 2298 | JDWP::RefTypeId classId, JDWP::MethodId methodId, |
| 2299 | uint32_t arg_count, uint64_t* arg_values, |
| 2300 | JDWP::JdwpTag* arg_types, uint32_t options, |
| 2301 | JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, |
| 2302 | JDWP::ObjectId* pExceptionId) { |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2303 | ThreadList* thread_list = Runtime::Current()->GetThreadList(); |
| 2304 | |
| 2305 | Thread* targetThread = NULL; |
| 2306 | DebugInvokeReq* req = NULL; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2307 | Thread* self = Thread::Current(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2308 | { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2309 | ScopedObjectAccessUnchecked soa(self); |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2310 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2311 | targetThread = DecodeThread(soa, threadId); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2312 | if (targetThread == NULL) { |
| 2313 | LOG(ERROR) << "InvokeMethod request for non-existent thread " << threadId; |
| 2314 | return JDWP::ERR_INVALID_THREAD; |
| 2315 | } |
| 2316 | req = targetThread->GetInvokeReq(); |
| 2317 | if (!req->ready) { |
| 2318 | LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread; |
| 2319 | return JDWP::ERR_INVALID_THREAD; |
| 2320 | } |
| 2321 | |
| 2322 | /* |
| 2323 | * We currently have a bug where we don't successfully resume the |
| 2324 | * target thread if the suspend count is too deep. We're expected to |
| 2325 | * require one "resume" for each "suspend", but when asked to execute |
| 2326 | * a method we have to resume fully and then re-suspend it back to the |
| 2327 | * same level. (The easiest way to cause this is to type "suspend" |
| 2328 | * multiple times in jdb.) |
| 2329 | * |
| 2330 | * It's unclear what this means when the event specifies "resume all" |
| 2331 | * and some threads are suspended more deeply than others. This is |
| 2332 | * a rare problem, so for now we just prevent it from hanging forever |
| 2333 | * by rejecting the method invocation request. Without this, we will |
| 2334 | * be stuck waiting on a suspended thread. |
| 2335 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2336 | int suspend_count; |
| 2337 | { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2338 | MutexLock mu2(*Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2339 | suspend_count = targetThread->GetSuspendCount(); |
| 2340 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2341 | if (suspend_count > 1) { |
| 2342 | LOG(ERROR) << *targetThread << " suspend count too deep for method invocation: " << suspend_count; |
| 2343 | return JDWP::ERR_THREAD_SUSPENDED; // Probably not expected here. |
| 2344 | } |
| 2345 | |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 2346 | JDWP::JdwpError status; |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 2347 | Object* receiver = gRegistry->Get<Object*>(objectId); |
| 2348 | if (receiver == kInvalidObject) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 2349 | return JDWP::ERR_INVALID_OBJECT; |
| 2350 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 2351 | |
| 2352 | Object* thread = gRegistry->Get<Object*>(threadId); |
| 2353 | if (thread == kInvalidObject) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 2354 | return JDWP::ERR_INVALID_OBJECT; |
| 2355 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 2356 | // TODO: check that 'thread' is actually a java.lang.Thread! |
| 2357 | |
| 2358 | Class* c = DecodeClass(classId, status); |
| 2359 | if (c == NULL) { |
Elliott Hughes | 3f4d58f | 2012-02-18 20:05:37 -0800 | [diff] [blame] | 2360 | return status; |
| 2361 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 2362 | |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 2363 | AbstractMethod* m = FromMethodId(methodId); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 2364 | if (m->IsStatic() != (receiver == NULL)) { |
| 2365 | return JDWP::ERR_INVALID_METHODID; |
| 2366 | } |
| 2367 | if (m->IsStatic()) { |
| 2368 | if (m->GetDeclaringClass() != c) { |
| 2369 | return JDWP::ERR_INVALID_METHODID; |
| 2370 | } |
| 2371 | } else { |
| 2372 | if (!m->GetDeclaringClass()->IsAssignableFrom(c)) { |
| 2373 | return JDWP::ERR_INVALID_METHODID; |
| 2374 | } |
| 2375 | } |
| 2376 | |
| 2377 | // Check the argument list matches the method. |
| 2378 | MethodHelper mh(m); |
| 2379 | if (mh.GetShortyLength() - 1 != arg_count) { |
| 2380 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 2381 | } |
| 2382 | const char* shorty = mh.GetShorty(); |
| 2383 | for (size_t i = 0; i < arg_count; ++i) { |
| 2384 | if (shorty[i + 1] != JdwpTagToShortyChar(arg_types[i])) { |
| 2385 | return JDWP::ERR_ILLEGAL_ARGUMENT; |
| 2386 | } |
| 2387 | } |
| 2388 | |
| 2389 | req->receiver_ = receiver; |
| 2390 | req->thread_ = thread; |
| 2391 | req->class_ = c; |
| 2392 | req->method_ = m; |
| 2393 | req->arg_count_ = arg_count; |
| 2394 | req->arg_values_ = arg_values; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2395 | req->options_ = options; |
| 2396 | req->invoke_needed_ = true; |
| 2397 | } |
| 2398 | |
| 2399 | // The fact that we've released the thread list lock is a bit risky --- if the thread goes |
| 2400 | // away we're sitting high and dry -- but we must release this before the ResumeAllThreads |
| 2401 | // call, and it's unwise to hold it during WaitForSuspend. |
| 2402 | |
| 2403 | { |
| 2404 | /* |
| 2405 | * We change our (JDWP thread) status, which should be THREAD_RUNNING, |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 2406 | * 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] | 2407 | * run out of memory. It's also a good idea to change it before locking |
| 2408 | * the invokeReq mutex, although that should never be held for long. |
| 2409 | */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2410 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSend); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2411 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2412 | VLOG(jdwp) << " Transferring control to event thread"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2413 | { |
| 2414 | MutexLock mu(req->lock_); |
| 2415 | |
| 2416 | if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2417 | VLOG(jdwp) << " Resuming all threads"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2418 | thread_list->UndoDebuggerSuspensions(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2419 | } else { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2420 | VLOG(jdwp) << " Resuming event thread only"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2421 | thread_list->Resume(targetThread, true); |
| 2422 | } |
| 2423 | |
| 2424 | // Wait for the request to finish executing. |
| 2425 | while (req->invoke_needed_) { |
Ian Rogers | 81d425b | 2012-09-27 16:03:43 -0700 | [diff] [blame] | 2426 | req->cond_.Wait(self, req->lock_); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2427 | } |
| 2428 | } |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2429 | VLOG(jdwp) << " Control has returned from event thread"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2430 | |
| 2431 | /* wait for thread to re-suspend itself */ |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2432 | SuspendThread(threadId, false /* request_suspension */ ); |
| 2433 | self->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2434 | } |
| 2435 | |
| 2436 | /* |
| 2437 | * Suspend the threads. We waited for the target thread to suspend |
| 2438 | * itself, so all we need to do is suspend the others. |
| 2439 | * |
| 2440 | * The suspendAllThreads() call will double-suspend the event thread, |
| 2441 | * so we want to resume the target thread once to keep the books straight. |
| 2442 | */ |
| 2443 | if ((options & JDWP::INVOKE_SINGLE_THREADED) == 0) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2444 | self->TransitionFromRunnableToSuspended(kWaitingForDebuggerSuspension); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2445 | VLOG(jdwp) << " Suspending all threads"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2446 | thread_list->SuspendAllForDebugger(); |
| 2447 | self->TransitionFromSuspendedToRunnable(); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2448 | VLOG(jdwp) << " Resuming event thread to balance the count"; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2449 | thread_list->Resume(targetThread, true); |
| 2450 | } |
| 2451 | |
| 2452 | // Copy the result. |
| 2453 | *pResultTag = req->result_tag; |
| 2454 | if (IsPrimitiveTag(req->result_tag)) { |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 2455 | *pResultValue = req->result_value.GetJ(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2456 | } else { |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 2457 | *pResultValue = gRegistry->Add(req->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2458 | } |
| 2459 | *pExceptionId = req->exception; |
| 2460 | return req->error; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2461 | } |
| 2462 | |
| 2463 | void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2464 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2465 | |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 2466 | // We can be called while an exception is pending. We need |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2467 | // to preserve that across the method invocation. |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame^] | 2468 | SirtRef<Throwable> old_exception(soa.Self(), soa.Self()->GetException()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2469 | soa.Self()->ClearException(); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2470 | |
| 2471 | // Translate the method through the vtable, unless the debugger wants to suppress it. |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 2472 | AbstractMethod* m = pReq->method_; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2473 | if ((pReq->options_ & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver_ != NULL) { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 2474 | AbstractMethod* actual_method = pReq->class_->FindVirtualMethodForVirtualOrInterface(pReq->method_); |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 2475 | if (actual_method != m) { |
| 2476 | VLOG(jdwp) << "ExecuteMethod translated " << PrettyMethod(m) << " to " << PrettyMethod(actual_method); |
| 2477 | m = actual_method; |
| 2478 | } |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2479 | } |
Elliott Hughes | 45651fd | 2012-02-21 15:48:20 -0800 | [diff] [blame] | 2480 | VLOG(jdwp) << "ExecuteMethod " << PrettyMethod(m); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2481 | CHECK(m != NULL); |
| 2482 | |
| 2483 | CHECK_EQ(sizeof(jvalue), sizeof(uint64_t)); |
| 2484 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2485 | LOG(INFO) << "self=" << soa.Self() << " pReq->receiver_=" << pReq->receiver_ << " m=" << m |
| 2486 | << " #" << pReq->arg_count_ << " " << pReq->arg_values_; |
| 2487 | pReq->result_value = InvokeWithJValues(soa, pReq->receiver_, m, |
| 2488 | reinterpret_cast<JValue*>(pReq->arg_values_)); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2489 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2490 | pReq->exception = gRegistry->Add(soa.Self()->GetException()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2491 | pReq->result_tag = BasicTagFromDescriptor(MethodHelper(m).GetShorty()); |
| 2492 | if (pReq->exception != 0) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2493 | Object* exc = soa.Self()->GetException(); |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2494 | VLOG(jdwp) << " JDWP invocation returning with exception=" << exc << " " << PrettyTypeOf(exc); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2495 | soa.Self()->ClearException(); |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 2496 | pReq->result_value.SetJ(0); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2497 | } else if (pReq->result_tag == JDWP::JT_OBJECT) { |
| 2498 | /* if no exception thrown, examine object result more closely */ |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 2499 | JDWP::JdwpTag new_tag = TagFromObject(pReq->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2500 | if (new_tag != pReq->result_tag) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2501 | VLOG(jdwp) << " JDWP promoted result from " << pReq->result_tag << " to " << new_tag; |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2502 | pReq->result_tag = new_tag; |
| 2503 | } |
| 2504 | |
| 2505 | /* |
| 2506 | * Register the object. We don't actually need an ObjectId yet, |
| 2507 | * but we do need to be sure that the GC won't move or discard the |
| 2508 | * object when we switch out of RUNNING. The ObjectId conversion |
| 2509 | * will add the object to the "do not touch" list. |
| 2510 | * |
| 2511 | * We can't use the "tracked allocation" mechanism here because |
| 2512 | * the object is going to be handed off to a different thread. |
| 2513 | */ |
Elliott Hughes | f24d3ce | 2012-04-11 17:43:37 -0700 | [diff] [blame] | 2514 | gRegistry->Add(pReq->result_value.GetL()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2515 | } |
| 2516 | |
| 2517 | if (old_exception.get() != NULL) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2518 | soa.Self()->SetException(old_exception.get()); |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2519 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2520 | } |
| 2521 | |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2522 | /* |
| 2523 | * Register an object ID that might not have been registered previously. |
| 2524 | * |
| 2525 | * Normally this wouldn't happen -- the conversion to an ObjectId would |
| 2526 | * have added the object to the registry -- but in some cases (e.g. |
| 2527 | * throwing exceptions) we really want to do the registration late. |
| 2528 | */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2529 | void Dbg::RegisterObjectId(JDWP::ObjectId id) { |
Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 2530 | gRegistry->Add(reinterpret_cast<Object*>(id)); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2531 | } |
| 2532 | |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2533 | /* |
| 2534 | * "buf" contains a full JDWP packet, possibly with multiple chunks. We |
| 2535 | * need to process each, accumulate the replies, and ship the whole thing |
| 2536 | * back. |
| 2537 | * |
| 2538 | * Returns "true" if we have a reply. The reply buffer is newly allocated, |
| 2539 | * and includes the chunk type/length, followed by the data. |
| 2540 | * |
Elliott Hughes | 3d30d9b | 2011-12-07 17:35:48 -0800 | [diff] [blame] | 2541 | * 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] | 2542 | * chunk. If this becomes inconvenient we will need to adapt. |
| 2543 | */ |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2544 | bool Dbg::DdmHandlePacket(const uint8_t* buf, int dataLen, uint8_t** pReplyBuf, int* pReplyLen) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2545 | CHECK_GE(dataLen, 0); |
| 2546 | |
| 2547 | Thread* self = Thread::Current(); |
| 2548 | JNIEnv* env = self->GetJniEnv(); |
| 2549 | |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2550 | // Create a byte[] corresponding to 'buf'. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2551 | ScopedLocalRef<jbyteArray> dataArray(env, env->NewByteArray(dataLen)); |
| 2552 | if (dataArray.get() == NULL) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2553 | LOG(WARNING) << "byte[] allocation failed: " << dataLen; |
| 2554 | env->ExceptionClear(); |
| 2555 | return false; |
| 2556 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2557 | env->SetByteArrayRegion(dataArray.get(), 0, dataLen, reinterpret_cast<const jbyte*>(buf)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2558 | |
| 2559 | const int kChunkHdrLen = 8; |
| 2560 | |
| 2561 | // Run through and find all chunks. [Currently just find the first.] |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2562 | ScopedByteArrayRO contents(env, dataArray.get()); |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 2563 | jint type = JDWP::Get4BE(reinterpret_cast<const uint8_t*>(&contents[0])); |
| 2564 | jint length = JDWP::Get4BE(reinterpret_cast<const uint8_t*>(&contents[4])); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2565 | jint offset = kChunkHdrLen; |
| 2566 | if (offset + length > dataLen) { |
| 2567 | LOG(WARNING) << StringPrintf("bad chunk found (len=%u pktLen=%d)", length, dataLen); |
| 2568 | return false; |
| 2569 | } |
| 2570 | |
| 2571 | // 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] | 2572 | ScopedLocalRef<jobject> chunk(env, env->CallStaticObjectMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 2573 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_dispatch, |
| 2574 | type, dataArray.get(), offset, length)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2575 | if (env->ExceptionCheck()) { |
| 2576 | LOG(INFO) << StringPrintf("Exception thrown by dispatcher for 0x%08x", type); |
| 2577 | env->ExceptionDescribe(); |
| 2578 | env->ExceptionClear(); |
| 2579 | return false; |
| 2580 | } |
| 2581 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2582 | if (chunk.get() == NULL) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2583 | return false; |
| 2584 | } |
| 2585 | |
| 2586 | /* |
| 2587 | * Pull the pieces out of the chunk. We copy the results into a |
| 2588 | * newly-allocated buffer that the caller can free. We don't want to |
| 2589 | * continue using the Chunk object because nothing has a reference to it. |
| 2590 | * |
| 2591 | * We could avoid this by returning type/data/offset/length and having |
| 2592 | * the caller be aware of the object lifetime issues, but that |
Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 2593 | * 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] | 2594 | * if we have responses for multiple chunks. |
| 2595 | * |
| 2596 | * So we're pretty much stuck with copying data around multiple times. |
| 2597 | */ |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 2598 | ScopedLocalRef<jbyteArray> replyData(env, reinterpret_cast<jbyteArray>(env->GetObjectField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_data))); |
| 2599 | length = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_length); |
| 2600 | offset = env->GetIntField(chunk.get(), WellKnownClasses::org_apache_harmony_dalvik_ddmc_Chunk_offset); |
| 2601 | 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] | 2602 | |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2603 | VLOG(jdwp) << StringPrintf("DDM reply: type=0x%08x data=%p offset=%d length=%d", type, replyData.get(), offset, length); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2604 | if (length == 0 || replyData.get() == NULL) { |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2605 | return false; |
| 2606 | } |
| 2607 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2608 | jsize replyLength = env->GetArrayLength(replyData.get()); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2609 | if (offset + length > replyLength) { |
| 2610 | LOG(WARNING) << StringPrintf("chunk off=%d len=%d exceeds reply array len %d", offset, length, replyLength); |
| 2611 | return false; |
| 2612 | } |
| 2613 | |
| 2614 | uint8_t* reply = new uint8_t[length + kChunkHdrLen]; |
| 2615 | if (reply == NULL) { |
| 2616 | LOG(WARNING) << "malloc failed: " << (length + kChunkHdrLen); |
| 2617 | return false; |
| 2618 | } |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 2619 | JDWP::Set4BE(reply + 0, type); |
| 2620 | JDWP::Set4BE(reply + 4, length); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2621 | env->GetByteArrayRegion(replyData.get(), offset, length, reinterpret_cast<jbyte*>(reply + kChunkHdrLen)); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2622 | |
| 2623 | *pReplyBuf = reply; |
| 2624 | *pReplyLen = length + kChunkHdrLen; |
| 2625 | |
Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 2626 | VLOG(jdwp) << StringPrintf("dvmHandleDdm returning type=%.4s buf=%p len=%d", reinterpret_cast<char*>(reply), reply, length); |
Elliott Hughes | f6a1e1e | 2011-10-25 16:28:04 -0700 | [diff] [blame] | 2627 | return true; |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2628 | } |
| 2629 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2630 | void Dbg::DdmBroadcast(bool connect) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2631 | VLOG(jdwp) << "Broadcasting DDM " << (connect ? "connect" : "disconnect") << "..."; |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2632 | |
| 2633 | Thread* self = Thread::Current(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2634 | { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2635 | MutexLock mu(*Locks::thread_suspend_count_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2636 | if (self->GetState() != kRunnable) { |
| 2637 | LOG(ERROR) << "DDM broadcast in thread state " << self->GetState(); |
| 2638 | /* try anyway? */ |
| 2639 | } |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2640 | } |
| 2641 | |
| 2642 | JNIEnv* env = self->GetJniEnv(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2643 | jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/; |
Elliott Hughes | eac7667 | 2012-05-24 21:56:51 -0700 | [diff] [blame] | 2644 | env->CallStaticVoidMethod(WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer, |
| 2645 | WellKnownClasses::org_apache_harmony_dalvik_ddmc_DdmServer_broadcast, |
| 2646 | event); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2647 | if (env->ExceptionCheck()) { |
| 2648 | LOG(ERROR) << "DdmServer.broadcast " << event << " failed"; |
| 2649 | env->ExceptionDescribe(); |
| 2650 | env->ExceptionClear(); |
| 2651 | } |
| 2652 | } |
| 2653 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2654 | void Dbg::DdmConnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2655 | Dbg::DdmBroadcast(true); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2656 | } |
| 2657 | |
| 2658 | void Dbg::DdmDisconnected() { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2659 | Dbg::DdmBroadcast(false); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2660 | gDdmThreadNotification = false; |
| 2661 | } |
| 2662 | |
| 2663 | /* |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 2664 | * Send a notification when a thread starts, stops, or changes its name. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2665 | * |
| 2666 | * Because we broadcast the full set of threads when the notifications are |
| 2667 | * first enabled, it's possible for "thread" to be actively executing. |
| 2668 | */ |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 2669 | void Dbg::DdmSendThreadNotification(Thread* t, uint32_t type) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2670 | if (!gDdmThreadNotification) { |
| 2671 | return; |
| 2672 | } |
| 2673 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 2674 | if (type == CHUNK_TYPE("THDE")) { |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2675 | uint8_t buf[4]; |
Elliott Hughes | f7c3b66 | 2011-10-27 12:04:56 -0700 | [diff] [blame] | 2676 | JDWP::Set4BE(&buf[0], t->GetThinLockId()); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2677 | Dbg::DdmSendChunk(CHUNK_TYPE("THDE"), 4, buf); |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 2678 | } else { |
| 2679 | CHECK(type == CHUNK_TYPE("THCR") || type == CHUNK_TYPE("THNM")) << type; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2680 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame^] | 2681 | SirtRef<String> name(soa.Self(), t->GetThreadName(soa)); |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 2682 | size_t char_count = (name.get() != NULL) ? name->GetLength() : 0; |
| 2683 | const jchar* chars = name->GetCharArray()->GetData(); |
| 2684 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 2685 | std::vector<uint8_t> bytes; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 2686 | JDWP::Append4BE(bytes, t->GetThinLockId()); |
| 2687 | JDWP::AppendUtf16BE(bytes, chars, char_count); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 2688 | CHECK_EQ(bytes.size(), char_count*2 + sizeof(uint32_t)*2); |
| 2689 | Dbg::DdmSendChunk(type, bytes); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2690 | } |
| 2691 | } |
| 2692 | |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2693 | void Dbg::DdmSetThreadNotification(bool enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2694 | // Enable/disable thread notifications. |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2695 | gDdmThreadNotification = enable; |
| 2696 | if (enable) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2697 | // Suspend the VM then post thread start notifications for all threads. Threads attaching will |
| 2698 | // see a suspension in progress and block until that ends. They then post their own start |
| 2699 | // notification. |
| 2700 | SuspendVM(); |
| 2701 | std::list<Thread*> threads; |
| 2702 | { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2703 | MutexLock mu(*Locks::thread_list_lock_); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2704 | threads = Runtime::Current()->GetThreadList()->GetList(); |
| 2705 | } |
| 2706 | { |
| 2707 | ScopedObjectAccess soa(Thread::Current()); |
| 2708 | typedef std::list<Thread*>::const_iterator It; // TODO: C++0x auto |
| 2709 | for (It it = threads.begin(), end = threads.end(); it != end; ++it) { |
| 2710 | Dbg::DdmSendThreadNotification(*it, CHUNK_TYPE("THCR")); |
| 2711 | } |
| 2712 | } |
| 2713 | ResumeVM(); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2714 | } |
| 2715 | } |
| 2716 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2717 | void Dbg::PostThreadStartOrStop(Thread* t, uint32_t type) { |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2718 | if (IsDebuggerActive()) { |
Mathieu Chartier | dbe6f46 | 2012-09-25 16:54:50 -0700 | [diff] [blame] | 2719 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 2720 | JDWP::ObjectId id = gRegistry->Add(soa.Decode<Object*>(t->GetPeer())); |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 2721 | gJdwpState->PostThreadChange(id, type == CHUNK_TYPE("THCR")); |
Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 2722 | // If this thread's just joined the party while we're already debugging, make sure it knows |
| 2723 | // to give us updates when it's running. |
| 2724 | t->SetDebuggerUpdatesEnabled(true); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2725 | } |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 2726 | Dbg::DdmSendThreadNotification(t, type); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2727 | } |
| 2728 | |
| 2729 | void Dbg::PostThreadStart(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2730 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THCR")); |
Elliott Hughes | 47fce01 | 2011-10-25 18:37:19 -0700 | [diff] [blame] | 2731 | } |
| 2732 | |
| 2733 | void Dbg::PostThreadDeath(Thread* t) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2734 | Dbg::PostThreadStartOrStop(t, CHUNK_TYPE("THDE")); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2735 | } |
| 2736 | |
Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 2737 | void Dbg::DdmSendChunk(uint32_t type, size_t byte_count, const uint8_t* buf) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 2738 | CHECK(buf != NULL); |
| 2739 | iovec vec[1]; |
| 2740 | vec[0].iov_base = reinterpret_cast<void*>(const_cast<uint8_t*>(buf)); |
| 2741 | vec[0].iov_len = byte_count; |
| 2742 | Dbg::DdmSendChunkV(type, vec, 1); |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2743 | } |
| 2744 | |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 2745 | void Dbg::DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) { |
| 2746 | DdmSendChunk(type, bytes.size(), &bytes[0]); |
| 2747 | } |
| 2748 | |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 2749 | void Dbg::DdmSendChunkV(uint32_t type, const struct iovec* iov, int iov_count) { |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 2750 | if (gJdwpState == NULL) { |
Elliott Hughes | 4dd9b4d | 2011-12-12 18:29:24 -0800 | [diff] [blame] | 2751 | VLOG(jdwp) << "Debugger thread not active, ignoring DDM send: " << type; |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 2752 | } else { |
Elliott Hughes | cccd84f | 2011-12-05 16:51:54 -0800 | [diff] [blame] | 2753 | gJdwpState->DdmSendChunkV(type, iov, iov_count); |
Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 2754 | } |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 2755 | } |
| 2756 | |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 2757 | int Dbg::DdmHandleHpifChunk(HpifWhen when) { |
| 2758 | if (when == HPIF_WHEN_NOW) { |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 2759 | DdmSendHeapInfo(when); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 2760 | return true; |
| 2761 | } |
| 2762 | |
| 2763 | if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) { |
| 2764 | LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when); |
| 2765 | return false; |
| 2766 | } |
| 2767 | |
| 2768 | gDdmHpifWhen = when; |
| 2769 | return true; |
| 2770 | } |
| 2771 | |
| 2772 | bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) { |
| 2773 | if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) { |
| 2774 | LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when); |
| 2775 | return false; |
| 2776 | } |
| 2777 | |
| 2778 | if (what != HPSG_WHAT_MERGED_OBJECTS && what != HPSG_WHAT_DISTINCT_OBJECTS) { |
| 2779 | LOG(ERROR) << "invalid HpsgWhat value: " << static_cast<int>(what); |
| 2780 | return false; |
| 2781 | } |
| 2782 | |
| 2783 | if (native) { |
| 2784 | gDdmNhsgWhen = when; |
| 2785 | gDdmNhsgWhat = what; |
| 2786 | } else { |
| 2787 | gDdmHpsgWhen = when; |
| 2788 | gDdmHpsgWhat = what; |
| 2789 | } |
| 2790 | return true; |
| 2791 | } |
| 2792 | |
Elliott Hughes | 7162ad9 | 2011-10-27 14:08:42 -0700 | [diff] [blame] | 2793 | void Dbg::DdmSendHeapInfo(HpifWhen reason) { |
| 2794 | // If there's a one-shot 'when', reset it. |
| 2795 | if (reason == gDdmHpifWhen) { |
| 2796 | if (gDdmHpifWhen == HPIF_WHEN_NEXT_GC) { |
| 2797 | gDdmHpifWhen = HPIF_WHEN_NEVER; |
| 2798 | } |
| 2799 | } |
| 2800 | |
| 2801 | /* |
| 2802 | * Chunk HPIF (client --> server) |
| 2803 | * |
| 2804 | * Heap Info. General information about the heap, |
| 2805 | * suitable for a summary display. |
| 2806 | * |
| 2807 | * [u4]: number of heaps |
| 2808 | * |
| 2809 | * For each heap: |
| 2810 | * [u4]: heap ID |
| 2811 | * [u8]: timestamp in ms since Unix epoch |
| 2812 | * [u1]: capture reason (same as 'when' value from server) |
| 2813 | * [u4]: max heap size in bytes (-Xmx) |
| 2814 | * [u4]: current heap size in bytes |
| 2815 | * [u4]: current number of bytes allocated |
| 2816 | * [u4]: current number of objects allocated |
| 2817 | */ |
| 2818 | uint8_t heap_count = 1; |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 2819 | Heap* heap = Runtime::Current()->GetHeap(); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 2820 | std::vector<uint8_t> bytes; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 2821 | JDWP::Append4BE(bytes, heap_count); |
| 2822 | JDWP::Append4BE(bytes, 1); // Heap id (bogus; we only have one heap). |
| 2823 | JDWP::Append8BE(bytes, MilliTime()); |
| 2824 | JDWP::Append1BE(bytes, reason); |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 2825 | JDWP::Append4BE(bytes, heap->GetMaxMemory()); // Max allowed heap size in bytes. |
| 2826 | JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. |
| 2827 | JDWP::Append4BE(bytes, heap->GetBytesAllocated()); |
| 2828 | JDWP::Append4BE(bytes, heap->GetObjectsAllocated()); |
Elliott Hughes | 21f32d7 | 2011-11-09 17:44:13 -0800 | [diff] [blame] | 2829 | CHECK_EQ(bytes.size(), 4U + (heap_count * (4 + 8 + 1 + 4 + 4 + 4 + 4))); |
| 2830 | Dbg::DdmSendChunk(CHUNK_TYPE("HPIF"), bytes); |
Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 2831 | } |
| 2832 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2833 | enum HpsgSolidity { |
| 2834 | SOLIDITY_FREE = 0, |
| 2835 | SOLIDITY_HARD = 1, |
| 2836 | SOLIDITY_SOFT = 2, |
| 2837 | SOLIDITY_WEAK = 3, |
| 2838 | SOLIDITY_PHANTOM = 4, |
| 2839 | SOLIDITY_FINALIZABLE = 5, |
| 2840 | SOLIDITY_SWEEP = 6, |
| 2841 | }; |
| 2842 | |
| 2843 | enum HpsgKind { |
| 2844 | KIND_OBJECT = 0, |
| 2845 | KIND_CLASS_OBJECT = 1, |
| 2846 | KIND_ARRAY_1 = 2, |
| 2847 | KIND_ARRAY_2 = 3, |
| 2848 | KIND_ARRAY_4 = 4, |
| 2849 | KIND_ARRAY_8 = 5, |
| 2850 | KIND_UNKNOWN = 6, |
| 2851 | KIND_NATIVE = 7, |
| 2852 | }; |
| 2853 | |
| 2854 | #define HPSG_PARTIAL (1<<7) |
| 2855 | #define HPSG_STATE(solidity, kind) ((uint8_t)((((kind) & 0x7) << 3) | ((solidity) & 0x7))) |
| 2856 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2857 | class HeapChunkContext { |
| 2858 | public: |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2859 | // Maximum chunk size. Obtain this from the formula: |
| 2860 | // (((maximum_heap_size / ALLOCATION_UNIT_SIZE) + 255) / 256) * 2 |
| 2861 | HeapChunkContext(bool merge, bool native) |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2862 | : buf_(16384 - 16), |
| 2863 | type_(0), |
| 2864 | merge_(merge) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2865 | Reset(); |
| 2866 | if (native) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2867 | type_ = CHUNK_TYPE("NHSG"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2868 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2869 | type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2870 | } |
| 2871 | } |
| 2872 | |
| 2873 | ~HeapChunkContext() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2874 | if (p_ > &buf_[0]) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2875 | Flush(); |
| 2876 | } |
| 2877 | } |
| 2878 | |
| 2879 | void EnsureHeader(const void* chunk_ptr) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2880 | if (!needHeader_) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2881 | return; |
| 2882 | } |
| 2883 | |
| 2884 | // Start a new HPSx chunk. |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2885 | JDWP::Write4BE(&p_, 1); // Heap id (bogus; we only have one heap). |
| 2886 | JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2887 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2888 | JDWP::Write4BE(&p_, reinterpret_cast<uintptr_t>(chunk_ptr)); // virtual address of segment start. |
| 2889 | 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] | 2890 | // [u4]: length of piece, in allocation units |
| 2891 | // 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] | 2892 | pieceLenField_ = p_; |
| 2893 | JDWP::Write4BE(&p_, 0x55555555); |
| 2894 | needHeader_ = false; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2895 | } |
| 2896 | |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2897 | void Flush() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2898 | // Patch the "length of piece" field. |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2899 | CHECK_LE(&buf_[0], pieceLenField_); |
| 2900 | CHECK_LE(pieceLenField_, p_); |
| 2901 | JDWP::Set4BE(pieceLenField_, totalAllocationUnits_); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2902 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2903 | Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2904 | Reset(); |
| 2905 | } |
| 2906 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2907 | 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] | 2908 | SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, |
| 2909 | Locks::mutator_lock_) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2910 | reinterpret_cast<HeapChunkContext*>(arg)->HeapChunkCallback(start, end, used_bytes); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2911 | } |
| 2912 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2913 | private: |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2914 | enum { ALLOCATION_UNIT_SIZE = 8 }; |
| 2915 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2916 | void Reset() { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2917 | p_ = &buf_[0]; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 2918 | startOfNextMemoryChunk_ = NULL; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2919 | totalAllocationUnits_ = 0; |
| 2920 | needHeader_ = true; |
| 2921 | pieceLenField_ = NULL; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 2922 | } |
| 2923 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 2924 | void HeapChunkCallback(void* start, void* /*end*/, size_t used_bytes) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2925 | SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_, |
| 2926 | Locks::mutator_lock_) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 2927 | // Note: heap call backs cannot manipulate the heap upon which they are crawling, care is taken |
| 2928 | // 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] | 2929 | if (used_bytes == 0) { |
| 2930 | if (start == NULL) { |
| 2931 | // Reset for start of new heap. |
| 2932 | startOfNextMemoryChunk_ = NULL; |
| 2933 | Flush(); |
| 2934 | } |
| 2935 | // Only process in use memory so that free region information |
| 2936 | // also includes dlmalloc book keeping. |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2937 | return; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2938 | } |
| 2939 | |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 2940 | /* If we're looking at the native heap, we'll just return |
| 2941 | * (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks |
| 2942 | */ |
| 2943 | bool native = type_ == CHUNK_TYPE("NHSG"); |
| 2944 | |
| 2945 | if (startOfNextMemoryChunk_ != NULL) { |
| 2946 | // Transmit any pending free memory. Native free memory of |
| 2947 | // over kMaxFreeLen could be because of the use of mmaps, so |
| 2948 | // don't report. If not free memory then start a new segment. |
| 2949 | bool flush = true; |
| 2950 | if (start > startOfNextMemoryChunk_) { |
| 2951 | const size_t kMaxFreeLen = 2 * kPageSize; |
| 2952 | void* freeStart = startOfNextMemoryChunk_; |
| 2953 | void* freeEnd = start; |
| 2954 | size_t freeLen = (char*)freeEnd - (char*)freeStart; |
| 2955 | if (!native || freeLen < kMaxFreeLen) { |
| 2956 | AppendChunk(HPSG_STATE(SOLIDITY_FREE, 0), freeStart, freeLen); |
| 2957 | flush = false; |
| 2958 | } |
| 2959 | } |
| 2960 | if (flush) { |
| 2961 | startOfNextMemoryChunk_ = NULL; |
| 2962 | Flush(); |
| 2963 | } |
| 2964 | } |
| 2965 | const Object *obj = (const Object *)start; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2966 | |
| 2967 | // Determine the type of this chunk. |
| 2968 | // OLD-TODO: if context.merge, see if this chunk is different from the last chunk. |
| 2969 | // If it's the same, we should combine them. |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 2970 | uint8_t state = ExamineObject(obj, native); |
| 2971 | // dlmalloc's chunk header is 2 * sizeof(size_t), but if the previous chunk is in use for an |
| 2972 | // allocation then the first sizeof(size_t) may belong to it. |
| 2973 | const size_t dlMallocOverhead = sizeof(size_t); |
| 2974 | AppendChunk(state, start, used_bytes + dlMallocOverhead); |
| 2975 | startOfNextMemoryChunk_ = (char*)start + used_bytes + dlMallocOverhead; |
| 2976 | } |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2977 | |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 2978 | void AppendChunk(uint8_t state, void* ptr, size_t length) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 2979 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 2980 | // Make sure there's enough room left in the buffer. |
| 2981 | // We need to use two bytes for every fractional 256 allocation units used by the chunk plus |
| 2982 | // 17 bytes for any header. |
| 2983 | size_t needed = (((length/ALLOCATION_UNIT_SIZE + 255) / 256) * 2) + 17; |
| 2984 | size_t bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); |
| 2985 | if (bytesLeft < needed) { |
| 2986 | Flush(); |
| 2987 | } |
| 2988 | |
| 2989 | bytesLeft = buf_.size() - (size_t)(p_ - &buf_[0]); |
| 2990 | if (bytesLeft < needed) { |
| 2991 | LOG(WARNING) << "Chunk is too big to transmit (chunk_len=" << length << ", " |
| 2992 | << needed << " bytes)"; |
| 2993 | return; |
| 2994 | } |
| 2995 | EnsureHeader(ptr); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 2996 | // Write out the chunk description. |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 2997 | length /= ALLOCATION_UNIT_SIZE; // Convert to allocation units. |
| 2998 | totalAllocationUnits_ += length; |
| 2999 | while (length > 256) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 3000 | *p_++ = state | HPSG_PARTIAL; |
| 3001 | *p_++ = 255; // length - 1 |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 3002 | length -= 256; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3003 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 3004 | *p_++ = state; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 3005 | *p_++ = length - 1; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3006 | } |
| 3007 | |
Ian Rogers | 5bfa60f | 2012-09-02 21:17:56 -0700 | [diff] [blame] | 3008 | uint8_t ExamineObject(const Object* o, bool is_native_heap) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 3009 | SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3010 | if (o == NULL) { |
| 3011 | return HPSG_STATE(SOLIDITY_FREE, 0); |
| 3012 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3013 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3014 | // It's an allocated chunk. Figure out what it is. |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3015 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3016 | // If we're looking at the native heap, we'll just return |
| 3017 | // (SOLIDITY_HARD, KIND_NATIVE) for all allocated chunks. |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3018 | if (is_native_heap) { |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3019 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
| 3020 | } |
| 3021 | |
Ian Rogers | 5bfa60f | 2012-09-02 21:17:56 -0700 | [diff] [blame] | 3022 | if (!Runtime::Current()->GetHeap()->IsLiveObjectLocked(o)) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 3023 | return HPSG_STATE(SOLIDITY_HARD, KIND_NATIVE); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3024 | } |
| 3025 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3026 | Class* c = o->GetClass(); |
| 3027 | if (c == NULL) { |
| 3028 | // The object was probably just created but hasn't been initialized yet. |
| 3029 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 3030 | } |
| 3031 | |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 3032 | if (!Runtime::Current()->GetHeap()->IsHeapAddress(c)) { |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 3033 | LOG(ERROR) << "Invalid class for managed heap object: " << o << " " << c; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3034 | return HPSG_STATE(SOLIDITY_HARD, KIND_UNKNOWN); |
| 3035 | } |
| 3036 | |
| 3037 | if (c->IsClassClass()) { |
| 3038 | return HPSG_STATE(SOLIDITY_HARD, KIND_CLASS_OBJECT); |
| 3039 | } |
| 3040 | |
| 3041 | if (c->IsArrayClass()) { |
| 3042 | if (o->IsObjectArray()) { |
| 3043 | return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 3044 | } |
| 3045 | switch (c->GetComponentSize()) { |
| 3046 | case 1: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_1); |
| 3047 | case 2: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_2); |
| 3048 | case 4: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_4); |
| 3049 | case 8: return HPSG_STATE(SOLIDITY_HARD, KIND_ARRAY_8); |
| 3050 | } |
| 3051 | } |
| 3052 | |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3053 | return HPSG_STATE(SOLIDITY_HARD, KIND_OBJECT); |
| 3054 | } |
| 3055 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 3056 | std::vector<uint8_t> buf_; |
| 3057 | uint8_t* p_; |
| 3058 | uint8_t* pieceLenField_; |
Ian Rogers | 15bf2d3 | 2012-08-28 17:33:04 -0700 | [diff] [blame] | 3059 | void* startOfNextMemoryChunk_; |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 3060 | size_t totalAllocationUnits_; |
| 3061 | uint32_t type_; |
| 3062 | bool merge_; |
| 3063 | bool needHeader_; |
| 3064 | |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3065 | DISALLOW_COPY_AND_ASSIGN(HeapChunkContext); |
| 3066 | }; |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3067 | |
| 3068 | void Dbg::DdmSendHeapSegments(bool native) { |
| 3069 | Dbg::HpsgWhen when; |
| 3070 | Dbg::HpsgWhat what; |
| 3071 | if (!native) { |
| 3072 | when = gDdmHpsgWhen; |
| 3073 | what = gDdmHpsgWhat; |
| 3074 | } else { |
| 3075 | when = gDdmNhsgWhen; |
| 3076 | what = gDdmNhsgWhat; |
| 3077 | } |
| 3078 | if (when == HPSG_WHEN_NEVER) { |
| 3079 | return; |
| 3080 | } |
| 3081 | |
| 3082 | // Figure out what kind of chunks we'll be sending. |
| 3083 | CHECK(what == HPSG_WHAT_MERGED_OBJECTS || what == HPSG_WHAT_DISTINCT_OBJECTS) << static_cast<int>(what); |
| 3084 | |
| 3085 | // First, send a heap start chunk. |
| 3086 | uint8_t heap_id[4]; |
| 3087 | JDWP::Set4BE(&heap_id[0], 1); // Heap id (bogus; we only have one heap). |
| 3088 | Dbg::DdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), sizeof(heap_id), heap_id); |
| 3089 | |
| 3090 | // Send a series of heap segment chunks. |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3091 | HeapChunkContext context((what == HPSG_WHAT_MERGED_OBJECTS), native); |
| 3092 | if (native) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 3093 | // TODO: enable when bionic has moved to dlmalloc 2.8.5 |
| 3094 | // dlmalloc_inspect_all(HeapChunkContext::HeapChunkCallback, &context); |
| 3095 | UNIMPLEMENTED(WARNING) << "Native heap send heap segments"; |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3096 | } else { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 3097 | Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | fd678be | 2012-08-30 14:50:54 -0700 | [diff] [blame] | 3098 | const Spaces& spaces = heap->GetSpaces(); |
| 3099 | for (Spaces::const_iterator cur = spaces.begin(); cur != spaces.end(); ++cur) { |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 3100 | if ((*cur)->IsAllocSpace()) { |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 3101 | ReaderMutexLock mu(*Locks::heap_bitmap_lock_); |
Mathieu Chartier | b062fdd | 2012-07-03 09:51:48 -0700 | [diff] [blame] | 3102 | (*cur)->AsAllocSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); |
| 3103 | } |
| 3104 | } |
Mathieu Chartier | e0f0cb3 | 2012-08-28 11:26:00 -0700 | [diff] [blame] | 3105 | // Walk the large objects, these are not in the AllocSpace. |
| 3106 | heap->GetLargeObjectsSpace()->Walk(HeapChunkContext::HeapChunkCallback, &context); |
Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 3107 | } |
Elliott Hughes | 6a5bd49 | 2011-10-28 14:33:57 -0700 | [diff] [blame] | 3108 | |
| 3109 | // Finally, send a heap end chunk. |
| 3110 | 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] | 3111 | } |
| 3112 | |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3113 | void Dbg::SetAllocTrackingEnabled(bool enabled) { |
| 3114 | MutexLock mu(gAllocTrackerLock); |
| 3115 | if (enabled) { |
| 3116 | if (recent_allocation_records_ == NULL) { |
| 3117 | LOG(INFO) << "Enabling alloc tracker (" << kNumAllocRecords << " entries, " |
| 3118 | << kMaxAllocRecordStackDepth << " frames --> " |
| 3119 | << (sizeof(AllocRecord) * kNumAllocRecords) << " bytes)"; |
| 3120 | gAllocRecordHead = gAllocRecordCount = 0; |
| 3121 | recent_allocation_records_ = new AllocRecord[kNumAllocRecords]; |
| 3122 | CHECK(recent_allocation_records_ != NULL); |
| 3123 | } |
| 3124 | } else { |
| 3125 | delete[] recent_allocation_records_; |
| 3126 | recent_allocation_records_ = NULL; |
| 3127 | } |
| 3128 | } |
| 3129 | |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3130 | struct AllocRecordStackVisitor : public StackVisitor { |
| 3131 | AllocRecordStackVisitor(const ManagedStack* stack, |
Ian Rogers | ca19066 | 2012-06-26 15:45:57 -0700 | [diff] [blame] | 3132 | const std::vector<TraceStackFrame>* trace_stack, AllocRecord* record) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 3133 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) |
Elliott Hughes | 08fc03a | 2012-06-26 17:34:00 -0700 | [diff] [blame] | 3134 | : StackVisitor(stack, trace_stack, NULL), record(record), depth(0) {} |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3135 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3136 | // TODO: Enable annotalysis. We know lock is held in constructor, but abstraction confuses |
| 3137 | // annotalysis. |
| 3138 | bool VisitFrame() NO_THREAD_SAFETY_ANALYSIS { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3139 | if (depth >= kMaxAllocRecordStackDepth) { |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3140 | return false; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3141 | } |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 3142 | AbstractMethod* m = GetMethod(); |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3143 | if (!m->IsRuntimeMethod()) { |
| 3144 | record->stack[depth].method = m; |
| 3145 | record->stack[depth].dex_pc = GetDexPc(); |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3146 | ++depth; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3147 | } |
Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 3148 | return true; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3149 | } |
| 3150 | |
| 3151 | ~AllocRecordStackVisitor() { |
| 3152 | // Clear out any unused stack trace elements. |
| 3153 | for (; depth < kMaxAllocRecordStackDepth; ++depth) { |
| 3154 | record->stack[depth].method = NULL; |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3155 | record->stack[depth].dex_pc = 0; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3156 | } |
| 3157 | } |
| 3158 | |
| 3159 | AllocRecord* record; |
| 3160 | size_t depth; |
| 3161 | }; |
| 3162 | |
| 3163 | void Dbg::RecordAllocation(Class* type, size_t byte_count) { |
| 3164 | Thread* self = Thread::Current(); |
| 3165 | CHECK(self != NULL); |
| 3166 | |
| 3167 | MutexLock mu(gAllocTrackerLock); |
| 3168 | if (recent_allocation_records_ == NULL) { |
| 3169 | return; |
| 3170 | } |
| 3171 | |
| 3172 | // Advance and clip. |
| 3173 | if (++gAllocRecordHead == kNumAllocRecords) { |
| 3174 | gAllocRecordHead = 0; |
| 3175 | } |
| 3176 | |
| 3177 | // Fill in the basics. |
| 3178 | AllocRecord* record = &recent_allocation_records_[gAllocRecordHead]; |
| 3179 | record->type = type; |
| 3180 | record->byte_count = byte_count; |
| 3181 | record->thin_lock_id = self->GetThinLockId(); |
| 3182 | |
| 3183 | // Fill in the stack trace. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 3184 | AllocRecordStackVisitor visitor(self->GetManagedStack(), self->GetTraceStack(), record); |
| 3185 | visitor.WalkStack(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3186 | |
| 3187 | if (gAllocRecordCount < kNumAllocRecords) { |
| 3188 | ++gAllocRecordCount; |
| 3189 | } |
| 3190 | } |
| 3191 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3192 | // Returns the index of the head element. |
| 3193 | // |
| 3194 | // We point at the most-recently-written record, so if gAllocRecordCount is 1 |
| 3195 | // we want to use the current element. Take "head+1" and subtract count |
| 3196 | // from it. |
| 3197 | // |
| 3198 | // We need to handle underflow in our circular buffer, so we add |
| 3199 | // kNumAllocRecords and then mask it back down. |
Elliott Hughes | f834936 | 2012-06-18 15:00:06 -0700 | [diff] [blame] | 3200 | static inline int HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(gAllocTrackerLock) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3201 | return (gAllocRecordHead+1 + kNumAllocRecords - gAllocRecordCount) & (kNumAllocRecords-1); |
| 3202 | } |
| 3203 | |
| 3204 | void Dbg::DumpRecentAllocations() { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 3205 | ScopedObjectAccess soa(Thread::Current()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3206 | MutexLock mu(gAllocTrackerLock); |
| 3207 | if (recent_allocation_records_ == NULL) { |
| 3208 | LOG(INFO) << "Not recording tracked allocations"; |
| 3209 | return; |
| 3210 | } |
| 3211 | |
| 3212 | // "i" is the head of the list. We want to start at the end of the |
| 3213 | // list and move forward to the tail. |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3214 | size_t i = HeadIndex(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3215 | size_t count = gAllocRecordCount; |
| 3216 | |
| 3217 | LOG(INFO) << "Tracked allocations, (head=" << gAllocRecordHead << " count=" << count << ")"; |
| 3218 | while (count--) { |
| 3219 | AllocRecord* record = &recent_allocation_records_[i]; |
| 3220 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3221 | LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->thin_lock_id, record->byte_count) |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3222 | << PrettyClass(record->type); |
| 3223 | |
| 3224 | for (size_t stack_frame = 0; stack_frame < kMaxAllocRecordStackDepth; ++stack_frame) { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 3225 | const AbstractMethod* m = record->stack[stack_frame].method; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3226 | if (m == NULL) { |
| 3227 | break; |
| 3228 | } |
| 3229 | LOG(INFO) << " " << PrettyMethod(m) << " line " << record->stack[stack_frame].LineNumber(); |
| 3230 | } |
| 3231 | |
| 3232 | // pause periodically to help logcat catch up |
| 3233 | if ((count % 5) == 0) { |
| 3234 | usleep(40000); |
| 3235 | } |
| 3236 | |
| 3237 | i = (i + 1) & (kNumAllocRecords-1); |
| 3238 | } |
| 3239 | } |
| 3240 | |
| 3241 | class StringTable { |
| 3242 | public: |
| 3243 | StringTable() { |
| 3244 | } |
| 3245 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 3246 | void Add(const char* s) { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3247 | table_.insert(s); |
| 3248 | } |
| 3249 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3250 | size_t IndexOf(const char* s) const { |
| 3251 | typedef std::set<std::string>::const_iterator It; // TODO: C++0x auto |
| 3252 | It it = table_.find(s); |
| 3253 | if (it == table_.end()) { |
| 3254 | LOG(FATAL) << "IndexOf(\"" << s << "\") failed"; |
| 3255 | } |
| 3256 | return std::distance(table_.begin(), it); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3257 | } |
| 3258 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3259 | size_t Size() const { |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3260 | return table_.size(); |
| 3261 | } |
| 3262 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3263 | void WriteTo(std::vector<uint8_t>& bytes) const { |
| 3264 | typedef std::set<std::string>::const_iterator It; // TODO: C++0x auto |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3265 | for (It it = table_.begin(); it != table_.end(); ++it) { |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3266 | const char* s = (*it).c_str(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 3267 | size_t s_len = CountModifiedUtf8Chars(s); |
| 3268 | UniquePtr<uint16_t> s_utf16(new uint16_t[s_len]); |
| 3269 | ConvertModifiedUtf8ToUtf16(s_utf16.get(), s); |
| 3270 | JDWP::AppendUtf16BE(bytes, s_utf16.get(), s_len); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3271 | } |
| 3272 | } |
| 3273 | |
| 3274 | private: |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3275 | std::set<std::string> table_; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3276 | DISALLOW_COPY_AND_ASSIGN(StringTable); |
| 3277 | }; |
| 3278 | |
| 3279 | /* |
| 3280 | * The data we send to DDMS contains everything we have recorded. |
| 3281 | * |
| 3282 | * Message header (all values big-endian): |
| 3283 | * (1b) message header len (to allow future expansion); includes itself |
| 3284 | * (1b) entry header len |
| 3285 | * (1b) stack frame len |
| 3286 | * (2b) number of entries |
| 3287 | * (4b) offset to string table from start of message |
| 3288 | * (2b) number of class name strings |
| 3289 | * (2b) number of method name strings |
| 3290 | * (2b) number of source file name strings |
| 3291 | * For each entry: |
| 3292 | * (4b) total allocation size |
| 3293 | * (2b) threadId |
| 3294 | * (2b) allocated object's class name index |
| 3295 | * (1b) stack depth |
| 3296 | * For each stack frame: |
| 3297 | * (2b) method's class name |
| 3298 | * (2b) method name |
| 3299 | * (2b) method source file |
| 3300 | * (2b) line number, clipped to 32767; -2 if native; -1 if no source |
| 3301 | * (xb) class name strings |
| 3302 | * (xb) method name strings |
| 3303 | * (xb) source file strings |
| 3304 | * |
| 3305 | * As with other DDM traffic, strings are sent as a 4-byte length |
| 3306 | * followed by UTF-16 data. |
| 3307 | * |
| 3308 | * We send up 16-bit unsigned indexes into string tables. In theory there |
| 3309 | * can be (kMaxAllocRecordStackDepth * kNumAllocRecords) unique strings in |
| 3310 | * each table, but in practice there should be far fewer. |
| 3311 | * |
| 3312 | * The chief reason for using a string table here is to keep the size of |
| 3313 | * the DDMS message to a minimum. This is partly to make the protocol |
| 3314 | * efficient, but also because we have to form the whole thing up all at |
| 3315 | * once in a memory buffer. |
| 3316 | * |
| 3317 | * We use separate string tables for class names, method names, and source |
| 3318 | * files to keep the indexes small. There will generally be no overlap |
| 3319 | * between the contents of these tables. |
| 3320 | */ |
| 3321 | jbyteArray Dbg::GetRecentAllocations() { |
| 3322 | if (false) { |
| 3323 | DumpRecentAllocations(); |
| 3324 | } |
| 3325 | |
| 3326 | MutexLock mu(gAllocTrackerLock); |
| 3327 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3328 | // |
| 3329 | // Part 1: generate string tables. |
| 3330 | // |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3331 | StringTable class_names; |
| 3332 | StringTable method_names; |
| 3333 | StringTable filenames; |
| 3334 | |
| 3335 | int count = gAllocRecordCount; |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3336 | int idx = HeadIndex(); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3337 | while (count--) { |
| 3338 | AllocRecord* record = &recent_allocation_records_[idx]; |
| 3339 | |
Elliott Hughes | 91250e0 | 2011-12-13 22:30:35 -0800 | [diff] [blame] | 3340 | class_names.Add(ClassHelper(record->type).GetDescriptor()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3341 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 3342 | MethodHelper mh; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3343 | for (size_t i = 0; i < kMaxAllocRecordStackDepth; i++) { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 3344 | AbstractMethod* m = record->stack[i].method; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3345 | if (m != NULL) { |
Ian Rogers | ba37781 | 2012-05-28 21:16:29 -0700 | [diff] [blame] | 3346 | mh.ChangeMethod(m); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 3347 | class_names.Add(mh.GetDeclaringClassDescriptor()); |
| 3348 | method_names.Add(mh.GetName()); |
| 3349 | filenames.Add(mh.GetDeclaringClassSourceFile()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3350 | } |
| 3351 | } |
| 3352 | |
| 3353 | idx = (idx + 1) & (kNumAllocRecords-1); |
| 3354 | } |
| 3355 | |
| 3356 | LOG(INFO) << "allocation records: " << gAllocRecordCount; |
| 3357 | |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3358 | // |
| 3359 | // Part 2: allocate a buffer and generate the output. |
| 3360 | // |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3361 | std::vector<uint8_t> bytes; |
| 3362 | |
| 3363 | // (1b) message header len (to allow future expansion); includes itself |
| 3364 | // (1b) entry header len |
| 3365 | // (1b) stack frame len |
| 3366 | const int kMessageHeaderLen = 15; |
| 3367 | const int kEntryHeaderLen = 9; |
| 3368 | const int kStackFrameLen = 8; |
| 3369 | JDWP::Append1BE(bytes, kMessageHeaderLen); |
| 3370 | JDWP::Append1BE(bytes, kEntryHeaderLen); |
| 3371 | JDWP::Append1BE(bytes, kStackFrameLen); |
| 3372 | |
| 3373 | // (2b) number of entries |
| 3374 | // (4b) offset to string table from start of message |
| 3375 | // (2b) number of class name strings |
| 3376 | // (2b) number of method name strings |
| 3377 | // (2b) number of source file name strings |
| 3378 | JDWP::Append2BE(bytes, gAllocRecordCount); |
| 3379 | size_t string_table_offset = bytes.size(); |
| 3380 | JDWP::Append4BE(bytes, 0); // We'll patch this later... |
| 3381 | JDWP::Append2BE(bytes, class_names.Size()); |
| 3382 | JDWP::Append2BE(bytes, method_names.Size()); |
| 3383 | JDWP::Append2BE(bytes, filenames.Size()); |
| 3384 | |
| 3385 | count = gAllocRecordCount; |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3386 | idx = HeadIndex(); |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 3387 | ClassHelper kh; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3388 | while (count--) { |
| 3389 | // For each entry: |
| 3390 | // (4b) total allocation size |
| 3391 | // (2b) thread id |
| 3392 | // (2b) allocated object's class name index |
| 3393 | // (1b) stack depth |
| 3394 | AllocRecord* record = &recent_allocation_records_[idx]; |
| 3395 | size_t stack_depth = record->GetDepth(); |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3396 | kh.ChangeClass(record->type); |
| 3397 | size_t allocated_object_class_name_index = class_names.IndexOf(kh.GetDescriptor()); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3398 | JDWP::Append4BE(bytes, record->byte_count); |
| 3399 | JDWP::Append2BE(bytes, record->thin_lock_id); |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3400 | JDWP::Append2BE(bytes, allocated_object_class_name_index); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3401 | JDWP::Append1BE(bytes, stack_depth); |
| 3402 | |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 3403 | MethodHelper mh; |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3404 | for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { |
| 3405 | // For each stack frame: |
| 3406 | // (2b) method's class name |
| 3407 | // (2b) method name |
| 3408 | // (2b) method source file |
| 3409 | // (2b) line number, clipped to 32767; -2 if native; -1 if no source |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 3410 | mh.ChangeMethod(record->stack[stack_frame].method); |
Elliott Hughes | a8f93cb | 2012-06-08 17:08:48 -0700 | [diff] [blame] | 3411 | size_t class_name_index = class_names.IndexOf(mh.GetDeclaringClassDescriptor()); |
| 3412 | size_t method_name_index = method_names.IndexOf(mh.GetName()); |
| 3413 | size_t file_name_index = filenames.IndexOf(mh.GetDeclaringClassSourceFile()); |
| 3414 | JDWP::Append2BE(bytes, class_name_index); |
| 3415 | JDWP::Append2BE(bytes, method_name_index); |
| 3416 | JDWP::Append2BE(bytes, file_name_index); |
Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 3417 | JDWP::Append2BE(bytes, record->stack[stack_frame].LineNumber()); |
| 3418 | } |
| 3419 | |
| 3420 | idx = (idx + 1) & (kNumAllocRecords-1); |
| 3421 | } |
| 3422 | |
| 3423 | // (xb) class name strings |
| 3424 | // (xb) method name strings |
| 3425 | // (xb) source file strings |
| 3426 | JDWP::Set4BE(&bytes[string_table_offset], bytes.size()); |
| 3427 | class_names.WriteTo(bytes); |
| 3428 | method_names.WriteTo(bytes); |
| 3429 | filenames.WriteTo(bytes); |
| 3430 | |
| 3431 | JNIEnv* env = Thread::Current()->GetJniEnv(); |
| 3432 | jbyteArray result = env->NewByteArray(bytes.size()); |
| 3433 | if (result != NULL) { |
| 3434 | env->SetByteArrayRegion(result, 0, bytes.size(), reinterpret_cast<const jbyte*>(&bytes[0])); |
| 3435 | } |
| 3436 | return result; |
| 3437 | } |
| 3438 | |
Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 3439 | } // namespace art |