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