| 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 | /* | 
 | 18 |  * Dalvik-specific side of debugger support.  (The JDWP code is intended to | 
 | 19 |  * be relatively generic.) | 
 | 20 |  */ | 
| Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 21 | #ifndef ART_RUNTIME_DEBUGGER_H_ | 
 | 22 | #define ART_RUNTIME_DEBUGGER_H_ | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 23 |  | 
 | 24 | #include <pthread.h> | 
 | 25 |  | 
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 26 | #include <map> | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 27 | #include <set> | 
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 28 | #include <string> | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 29 | #include <vector> | 
| Elliott Hughes | 3bb8156 | 2011-10-21 18:52:59 -0700 | [diff] [blame] | 30 |  | 
| Mathieu Chartier | e34fa1d | 2015-01-14 14:55:47 -0800 | [diff] [blame] | 31 | #include "gc_root.h" | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 32 | #include "jdwp/jdwp.h" | 
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 33 | #include "jni.h" | 
 | 34 | #include "jvalue.h" | 
| Mathieu Chartier | 83c8ee0 | 2014-01-28 14:50:23 -0800 | [diff] [blame] | 35 | #include "object_callbacks.h" | 
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 36 | #include "thread_state.h" | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 37 |  | 
 | 38 | namespace art { | 
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 39 | namespace mirror { | 
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 40 | class ArtField; | 
| Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 41 | class ArtMethod; | 
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 42 | class Class; | 
 | 43 | class Object; | 
 | 44 | class Throwable; | 
 | 45 | }  // namespace mirror | 
| Hiroshi Yamauchi | b5a9e3d | 2014-06-09 12:11:20 -0700 | [diff] [blame] | 46 | class AllocRecord; | 
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 47 | class ObjectRegistry; | 
 | 48 | class ScopedObjectAccessUnchecked; | 
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 49 | class StackVisitor; | 
| Ian Rogers | 1b09b09 | 2012-08-20 15:35:52 -0700 | [diff] [blame] | 50 | class Thread; | 
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 51 | class ThrowLocation; | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 52 |  | 
 | 53 | /* | 
 | 54 |  * Invoke-during-breakpoint support. | 
 | 55 |  */ | 
 | 56 | struct DebugInvokeReq { | 
| Elliott Hughes | 7b3cdfc | 2011-12-08 21:28:17 -0800 | [diff] [blame] | 57 |   DebugInvokeReq() | 
| Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 58 |       : ready(false), invoke_needed(false), | 
 | 59 |         receiver(NULL), thread(NULL), klass(NULL), method(NULL), | 
 | 60 |         arg_count(0), arg_values(NULL), options(0), error(JDWP::ERR_NONE), | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 61 |         result_tag(JDWP::JT_VOID), exception(0), | 
| Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 62 |         lock("a DebugInvokeReq lock", kBreakpointInvokeLock), | 
 | 63 |         cond("a DebugInvokeReq condition variable", lock) { | 
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 64 |   } | 
 | 65 |  | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 66 |   /* boolean; only set when we're in the tail end of an event handler */ | 
 | 67 |   bool ready; | 
 | 68 |  | 
 | 69 |   /* boolean; set if the JDWP thread wants this thread to do work */ | 
| Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 70 |   bool invoke_needed; | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 71 |  | 
 | 72 |   /* request */ | 
| Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 73 |   mirror::Object* receiver;      /* not used for ClassType.InvokeMethod */ | 
 | 74 |   mirror::Object* thread; | 
 | 75 |   mirror::Class* klass; | 
 | 76 |   mirror::ArtMethod* method; | 
 | 77 |   uint32_t arg_count; | 
 | 78 |   uint64_t* arg_values;   /* will be NULL if arg_count_ == 0 */ | 
 | 79 |   uint32_t options; | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 80 |  | 
 | 81 |   /* result */ | 
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 82 |   JDWP::JdwpError error; | 
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 83 |   JDWP::JdwpTag result_tag; | 
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 84 |   JValue result_value; | 
 | 85 |   JDWP::ObjectId exception; | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 86 |  | 
 | 87 |   /* condition variable to wait on while the method executes */ | 
| Sebastien Hertz | d38667a | 2013-11-25 15:43:54 +0100 | [diff] [blame] | 88 |   Mutex lock DEFAULT_MUTEX_ACQUIRED_AFTER; | 
 | 89 |   ConditionVariable cond GUARDED_BY(lock); | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 90 |  | 
| Mathieu Chartier | e34fa1d | 2015-01-14 14:55:47 -0800 | [diff] [blame] | 91 |   void VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) | 
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 92 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 93 |  | 
| Sebastien Hertz | bb43b43 | 2014-04-14 11:59:08 +0200 | [diff] [blame] | 94 |   void Clear(); | 
 | 95 |  | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 96 |  private: | 
 | 97 |   DISALLOW_COPY_AND_ASSIGN(DebugInvokeReq); | 
 | 98 | }; | 
 | 99 |  | 
 | 100 | // Thread local data-structure that holds fields for controlling single-stepping. | 
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 101 | class SingleStepControl { | 
 | 102 |  public: | 
 | 103 |   SingleStepControl(JDWP::JdwpStepSize step_size, JDWP::JdwpStepDepth step_depth, | 
 | 104 |                     int stack_depth, mirror::ArtMethod* method) | 
 | 105 |       : step_size_(step_size), step_depth_(step_depth), | 
 | 106 |         stack_depth_(stack_depth), method_(method) { | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 107 |   } | 
 | 108 |  | 
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 109 |   JDWP::JdwpStepSize GetStepSize() const { | 
 | 110 |     return step_size_; | 
 | 111 |   } | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 112 |  | 
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 113 |   JDWP::JdwpStepDepth GetStepDepth() const { | 
 | 114 |     return step_depth_; | 
 | 115 |   } | 
 | 116 |  | 
 | 117 |   int GetStackDepth() const { | 
 | 118 |     return stack_depth_; | 
 | 119 |   } | 
 | 120 |  | 
 | 121 |   mirror::ArtMethod* GetMethod() const { | 
 | 122 |     return method_; | 
 | 123 |   } | 
 | 124 |  | 
 | 125 |   const std::set<uint32_t>& GetDexPcs() const { | 
 | 126 |     return dex_pcs_; | 
 | 127 |   } | 
 | 128 |  | 
 | 129 |   void VisitRoots(RootCallback* callback, void* arg, const RootInfo& root_info) | 
 | 130 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 131 |  | 
 | 132 |   void AddDexPc(uint32_t dex_pc); | 
 | 133 |  | 
 | 134 |   bool ContainsDexPc(uint32_t dex_pc) const; | 
 | 135 |  | 
 | 136 |  private: | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 137 |   // See JdwpStepSize and JdwpStepDepth for details. | 
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 138 |   const JDWP::JdwpStepSize step_size_; | 
 | 139 |   const JDWP::JdwpStepDepth step_depth_; | 
 | 140 |  | 
 | 141 |   // The stack depth when this single-step was initiated. This is used to support SD_OVER and SD_OUT | 
 | 142 |   // single-step depth. | 
 | 143 |   const int stack_depth_; | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 144 |  | 
 | 145 |   // The location this single-step was initiated from. | 
 | 146 |   // A single-step is initiated in a suspended thread. We save here the current method and the | 
 | 147 |   // set of DEX pcs associated to the source line number where the suspension occurred. | 
 | 148 |   // This is used to support SD_INTO and SD_OVER single-step depths so we detect when a single-step | 
 | 149 |   // causes the execution of an instruction in a different method or at a different line number. | 
| Sebastien Hertz | 597c4f0 | 2015-01-26 17:37:14 +0100 | [diff] [blame] | 150 |   mirror::ArtMethod* method_; | 
 | 151 |   std::set<uint32_t> dex_pcs_; | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 152 |  | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 153 |   DISALLOW_COPY_AND_ASSIGN(SingleStepControl); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 154 | }; | 
 | 155 |  | 
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 156 | // TODO rename to InstrumentationRequest. | 
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 157 | class DeoptimizationRequest { | 
 | 158 |  public: | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 159 |   enum Kind { | 
 | 160 |     kNothing,                   // no action. | 
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 161 |     kRegisterForEvent,          // start listening for instrumentation event. | 
 | 162 |     kUnregisterForEvent,        // stop listening for instrumentation event. | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 163 |     kFullDeoptimization,        // deoptimize everything. | 
 | 164 |     kFullUndeoptimization,      // undeoptimize everything. | 
 | 165 |     kSelectiveDeoptimization,   // deoptimize one method. | 
 | 166 |     kSelectiveUndeoptimization  // undeoptimize one method. | 
 | 167 |   }; | 
 | 168 |  | 
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 169 |   DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {} | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 170 |  | 
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 171 |   DeoptimizationRequest(const DeoptimizationRequest& other) | 
 | 172 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) | 
 | 173 |       : kind_(other.kind_), instrumentation_event_(other.instrumentation_event_) { | 
 | 174 |     // Create a new JNI global reference for the method. | 
 | 175 |     SetMethod(other.Method()); | 
 | 176 |   } | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 177 |  | 
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 178 |   mirror::ArtMethod* Method() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 179 |  | 
 | 180 |   void SetMethod(mirror::ArtMethod* m) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 181 |  | 
 | 182 |   // Name 'Kind()' would collide with the above enum name. | 
 | 183 |   Kind GetKind() const { | 
 | 184 |     return kind_; | 
 | 185 |   } | 
 | 186 |  | 
 | 187 |   void SetKind(Kind kind) { | 
 | 188 |     kind_ = kind; | 
 | 189 |   } | 
 | 190 |  | 
 | 191 |   uint32_t InstrumentationEvent() const { | 
 | 192 |     return instrumentation_event_; | 
 | 193 |   } | 
 | 194 |  | 
 | 195 |   void SetInstrumentationEvent(uint32_t instrumentation_event) { | 
 | 196 |     instrumentation_event_ = instrumentation_event; | 
 | 197 |   } | 
 | 198 |  | 
 | 199 |  private: | 
 | 200 |   Kind kind_; | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 201 |  | 
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 202 |   // TODO we could use a union to hold the instrumentation_event and the method since they | 
 | 203 |   // respectively have sense only for kRegisterForEvent/kUnregisterForEvent and | 
 | 204 |   // kSelectiveDeoptimization/kSelectiveUndeoptimization. | 
 | 205 |  | 
 | 206 |   // Event to start or stop listening to. Only for kRegisterForEvent and kUnregisterForEvent. | 
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 207 |   uint32_t instrumentation_event_; | 
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 208 |  | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 209 |   // Method for selective deoptimization. | 
| Hiroshi Yamauchi | 0ec17d2 | 2014-07-07 13:07:08 -0700 | [diff] [blame] | 210 |   jmethodID method_; | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 211 | }; | 
| Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 212 | std::ostream& operator<<(std::ostream& os, const DeoptimizationRequest::Kind& rhs); | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 213 |  | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 214 | class Dbg { | 
| Elliott Hughes | ff17f1f | 2012-01-24 18:12:29 -0800 | [diff] [blame] | 215 |  public: | 
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 216 |   class TypeCache { | 
 | 217 |    public: | 
 | 218 |     // Returns a weak global for the input type. Deduplicates. | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 219 |     jobject Add(mirror::Class* t) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, | 
 | 220 |                                                         Locks::alloc_tracker_lock_); | 
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 221 |     // Clears the type cache and deletes all the weak global refs. | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 222 |     void Clear() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_, | 
 | 223 |                                        Locks::alloc_tracker_lock_); | 
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 224 |  | 
 | 225 |    private: | 
 | 226 |     std::multimap<int32_t, jobject> objects_; | 
 | 227 |   }; | 
 | 228 |  | 
| Elliott Hughes | 4ffd313 | 2011-10-24 12:06:42 -0700 | [diff] [blame] | 229 |   static void SetJdwpAllowed(bool allowed); | 
 | 230 |  | 
| Sebastien Hertz | 3be6e9d | 2015-02-05 16:30:58 +0100 | [diff] [blame] | 231 |   static void StartJdwp(const JDWP::JdwpOptions* jdwp_options); | 
| Elliott Hughes | d1cc836 | 2011-10-24 16:58:50 -0700 | [diff] [blame] | 232 |   static void StopJdwp(); | 
 | 233 |  | 
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 234 |   // Invoked by the GC in case we need to keep DDMS informed. | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 235 |   static void GcDidFinish() LOCKS_EXCLUDED(Locks::mutator_lock_); | 
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 236 |  | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 237 |   // Return the DebugInvokeReq for the current thread. | 
 | 238 |   static DebugInvokeReq* GetInvokeReq(); | 
 | 239 |  | 
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 240 |   static Thread* GetDebugThread(); | 
 | 241 |   static void ClearWaitForEventThread(); | 
 | 242 |  | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 243 |   /* | 
 | 244 |    * Enable/disable breakpoints and step modes.  Used to provide a heads-up | 
 | 245 |    * when the debugger attaches. | 
 | 246 |    */ | 
 | 247 |   static void Connected(); | 
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 248 |   static void GoActive() | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 249 |       LOCKS_EXCLUDED(Locks::breakpoint_lock_, Locks::deoptimization_lock_, Locks::mutator_lock_); | 
 | 250 |   static void Disconnected() LOCKS_EXCLUDED(Locks::deoptimization_lock_, Locks::mutator_lock_); | 
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 251 |   static void Disposed(); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 252 |  | 
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 253 |   // Returns true if we're actually debugging with a real debugger, false if it's | 
 | 254 |   // just DDMS (or nothing at all). | 
 | 255 |   static bool IsDebuggerActive(); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 256 |  | 
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 257 |   // Returns true if we had -Xrunjdwp or -agentlib:jdwp= on the command line. | 
 | 258 |   static bool IsJdwpConfigured(); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 259 |  | 
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 260 |   static bool IsDisposed(); | 
 | 261 |  | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 262 |   /* | 
 | 263 |    * Time, in milliseconds, since the last debugger activity.  Does not | 
 | 264 |    * include DDMS activity.  Returns -1 if there has been no activity. | 
 | 265 |    * Returns 0 if we're in the middle of handling a debugger request. | 
 | 266 |    */ | 
 | 267 |   static int64_t LastDebuggerActivity(); | 
 | 268 |  | 
| Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 269 |   static void UndoDebuggerSuspensions() | 
 | 270 |     LOCKS_EXCLUDED(Locks::thread_list_lock_, | 
 | 271 |                    Locks::thread_suspend_count_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 272 |  | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 273 |   /* | 
 | 274 |    * Class, Object, Array | 
 | 275 |    */ | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 276 |   static std::string GetClassName(JDWP::RefTypeId id) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 277 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 278 |   static std::string GetClassName(mirror::Class* klass) | 
 | 279 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 280 |   static JDWP::JdwpError GetClassObject(JDWP::RefTypeId id, JDWP::ObjectId* class_object_id) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 281 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 282 |   static JDWP::JdwpError GetSuperclass(JDWP::RefTypeId id, JDWP::RefTypeId* superclass_id) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 283 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 284 |   static JDWP::JdwpError GetClassLoader(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 285 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 286 |   static JDWP::JdwpError GetModifiers(JDWP::RefTypeId id, JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 287 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 288 |   static JDWP::JdwpError GetReflectedType(JDWP::RefTypeId class_id, JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 289 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 290 |   static void GetClassList(std::vector<JDWP::RefTypeId>* classes) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 291 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 292 |   static JDWP::JdwpError GetClassInfo(JDWP::RefTypeId class_id, JDWP::JdwpTypeTag* pTypeTag, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 293 |                                       uint32_t* pStatus, std::string* pDescriptor) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 294 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 295 |   static void FindLoadedClassBySignature(const char* descriptor, std::vector<JDWP::RefTypeId>* ids) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 296 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 297 |   static JDWP::JdwpError GetReferenceType(JDWP::ObjectId object_id, JDWP::ExpandBuf* pReply) | 
 | 298 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | fc0e94b | 2013-09-23 23:51:32 -0700 | [diff] [blame] | 299 |   static JDWP::JdwpError GetSignature(JDWP::RefTypeId ref_type_id, std::string* signature) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 300 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 301 |   static JDWP::JdwpError GetSourceFile(JDWP::RefTypeId ref_type_id, std::string* source_file) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 302 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 303 |   static JDWP::JdwpError GetObjectTag(JDWP::ObjectId object_id, uint8_t* tag) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 304 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | aed4be9 | 2011-12-02 16:16:23 -0800 | [diff] [blame] | 305 |   static size_t GetTagWidth(JDWP::JdwpTag tag); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 306 |  | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 307 |   static JDWP::JdwpError GetArrayLength(JDWP::ObjectId array_id, int32_t* length) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 308 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 309 |   static JDWP::JdwpError OutputArray(JDWP::ObjectId array_id, int offset, int count, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 310 |                                      JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 311 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 312 |   static JDWP::JdwpError SetArrayElements(JDWP::ObjectId array_id, int offset, int count, | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 313 |                                           JDWP::Request* request) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 314 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 315 |  | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 316 |   static JDWP::ObjectId CreateString(const std::string& str) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 317 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 318 |   static JDWP::JdwpError CreateObject(JDWP::RefTypeId class_id, JDWP::ObjectId* new_object) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 319 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 320 |   static JDWP::JdwpError CreateArrayObject(JDWP::RefTypeId array_class_id, uint32_t length, | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 321 |                                            JDWP::ObjectId* new_array) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 322 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 323 |  | 
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 324 |   // | 
 | 325 |   // Event filtering. | 
 | 326 |   // | 
 | 327 |   static bool MatchThread(JDWP::ObjectId expected_thread_id, Thread* event_thread) | 
 | 328 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 329 |  | 
 | 330 |   static bool MatchLocation(const JDWP::JdwpLocation& expected_location, | 
 | 331 |                             const JDWP::EventLocation& event_location) | 
 | 332 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 333 |  | 
 | 334 |   static bool MatchType(mirror::Class* event_class, JDWP::RefTypeId class_id) | 
 | 335 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 336 |  | 
 | 337 |   static bool MatchField(JDWP::RefTypeId expected_type_id, JDWP::FieldId expected_field_id, | 
 | 338 |                          mirror::ArtField* event_field) | 
 | 339 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 340 |  | 
 | 341 |   static bool MatchInstance(JDWP::ObjectId expected_instance_id, mirror::Object* event_instance) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 342 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 343 |  | 
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 344 |   // | 
 | 345 |   // Monitors. | 
 | 346 |   // | 
 | 347 |   static JDWP::JdwpError GetMonitorInfo(JDWP::ObjectId object_id, JDWP::ExpandBuf* reply) | 
 | 348 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 349 |   static JDWP::JdwpError GetOwnedMonitors(JDWP::ObjectId thread_id, | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 350 |                                           std::vector<JDWP::ObjectId>* monitors, | 
 | 351 |                                           std::vector<uint32_t>* stack_depths) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 352 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 353 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 354 |   static JDWP::JdwpError GetContendedMonitor(JDWP::ObjectId thread_id, | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 355 |                                              JDWP::ObjectId* contended_monitor) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 356 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 357 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 358 |  | 
 | 359 |   // | 
 | 360 |   // Heap. | 
 | 361 |   // | 
 | 362 |   static JDWP::JdwpError GetInstanceCounts(const std::vector<JDWP::RefTypeId>& class_ids, | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 363 |                                            std::vector<uint64_t>* counts) | 
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 364 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 365 |   static JDWP::JdwpError GetInstances(JDWP::RefTypeId class_id, int32_t max_count, | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 366 |                                       std::vector<JDWP::ObjectId>* instances) | 
| Elliott Hughes | 3b78c94 | 2013-01-15 17:35:41 -0800 | [diff] [blame] | 367 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 368 |   static JDWP::JdwpError GetReferringObjects(JDWP::ObjectId object_id, int32_t max_count, | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 369 |                                              std::vector<JDWP::ObjectId>* referring_objects) | 
| Elliott Hughes | 0cbaff5 | 2013-01-16 15:28:01 -0800 | [diff] [blame] | 370 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 371 |   static JDWP::JdwpError DisableCollection(JDWP::ObjectId object_id) | 
 | 372 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 373 |   static JDWP::JdwpError EnableCollection(JDWP::ObjectId object_id) | 
 | 374 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 375 |   static JDWP::JdwpError IsCollected(JDWP::ObjectId object_id, bool* is_collected) | 
| Elliott Hughes | 64f574f | 2013-02-20 14:57:12 -0800 | [diff] [blame] | 376 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 377 |   static void DisposeObject(JDWP::ObjectId object_id, uint32_t reference_count) | 
 | 378 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | ec0f83d | 2013-01-15 16:54:08 -0800 | [diff] [blame] | 379 |  | 
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 380 |   // | 
 | 381 |   // Methods and fields. | 
 | 382 |   // | 
| Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 383 |   static std::string GetMethodName(JDWP::MethodId method_id) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 384 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 385 |   static JDWP::JdwpError OutputDeclaredFields(JDWP::RefTypeId ref_type_id, bool with_generic, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 386 |                                               JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 387 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 388 |   static JDWP::JdwpError OutputDeclaredMethods(JDWP::RefTypeId ref_type_id, bool with_generic, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 389 |                                                JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 390 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 391 |   static JDWP::JdwpError OutputDeclaredInterfaces(JDWP::RefTypeId ref_type_id, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 392 |                                                   JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 393 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 394 |   static void OutputLineTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId method_id, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 395 |                               JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 396 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 397 |   static void OutputVariableTable(JDWP::RefTypeId ref_type_id, JDWP::MethodId id, bool with_generic, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 398 |                                   JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 399 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 400 |   static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, | 
 | 401 |                                       JDWP::ExpandBuf* pReply) | 
 | 402 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 403 |   static void OutputFieldValue(JDWP::FieldId field_id, const JValue* field_value, | 
 | 404 |                                JDWP::ExpandBuf* pReply) | 
 | 405 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 406 |   static JDWP::JdwpError GetBytecodes(JDWP::RefTypeId class_id, JDWP::MethodId method_id, | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 407 |                                       std::vector<uint8_t>* bytecodes) | 
| Elliott Hughes | 9777ba2 | 2013-01-17 09:04:19 -0800 | [diff] [blame] | 408 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 409 |  | 
| Elliott Hughes | a96836a | 2013-01-17 12:27:49 -0800 | [diff] [blame] | 410 |   static std::string GetFieldName(JDWP::FieldId field_id) | 
 | 411 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 412 |   static JDWP::JdwpTag GetFieldBasicTag(JDWP::FieldId field_id) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 413 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 414 |   static JDWP::JdwpTag GetStaticFieldBasicTag(JDWP::FieldId field_id) | 
| Brian Carlstrom | f69863b | 2013-07-17 21:53:13 -0700 | [diff] [blame] | 415 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 416 |   static JDWP::JdwpError GetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 417 |                                        JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 418 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 419 |   static JDWP::JdwpError SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 420 |                                        uint64_t value, int width) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 421 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 422 |   static JDWP::JdwpError GetStaticFieldValue(JDWP::RefTypeId ref_type_id, JDWP::FieldId field_id, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 423 |                                              JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 424 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 425 |   static JDWP::JdwpError SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 426 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 427 |  | 
| Sebastien Hertz | b0b0b49 | 2014-09-15 11:27:27 +0200 | [diff] [blame] | 428 |   static JDWP::JdwpError StringToUtf8(JDWP::ObjectId string_id, std::string* str) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 429 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Jeff Hao | 579b024 | 2013-11-18 13:16:49 -0800 | [diff] [blame] | 430 |   static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) | 
 | 431 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 432 |  | 
 | 433 |   /* | 
 | 434 |    * Thread, ThreadGroup, Frame | 
 | 435 |    */ | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 436 |   static JDWP::JdwpError GetThreadName(JDWP::ObjectId thread_id, std::string* name) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 437 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) | 
 | 438 |       LOCKS_EXCLUDED(Locks::thread_list_lock_); | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 439 |   static JDWP::JdwpError GetThreadGroup(JDWP::ObjectId thread_id, JDWP::ExpandBuf* pReply) | 
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 440 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 441 |       LOCKS_EXCLUDED(Locks::thread_list_lock_); | 
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 442 |   static JDWP::JdwpError GetThreadGroupName(JDWP::ObjectId thread_group_id, | 
 | 443 |                                             JDWP::ExpandBuf* pReply) | 
 | 444 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 445 |   static JDWP::JdwpError GetThreadGroupParent(JDWP::ObjectId thread_group_id, | 
 | 446 |                                               JDWP::ExpandBuf* pReply) | 
 | 447 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 448 |   static JDWP::JdwpError GetThreadGroupChildren(JDWP::ObjectId thread_group_id, | 
 | 449 |                                                 JDWP::ExpandBuf* pReply) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 450 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 451 |   static JDWP::ObjectId GetSystemThreadGroupId() | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 452 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 453 |  | 
| Jeff Hao | 920af3e | 2013-08-28 15:46:38 -0700 | [diff] [blame] | 454 |   static JDWP::JdwpThreadStatus ToJdwpThreadStatus(ThreadState state); | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 455 |   static JDWP::JdwpError GetThreadStatus(JDWP::ObjectId thread_id, | 
 | 456 |                                          JDWP::JdwpThreadStatus* pThreadStatus, | 
 | 457 |                                          JDWP::JdwpSuspendStatus* pSuspendStatus) | 
 | 458 |       LOCKS_EXCLUDED(Locks::thread_list_lock_); | 
 | 459 |   static JDWP::JdwpError GetThreadDebugSuspendCount(JDWP::ObjectId thread_id, | 
 | 460 |                                                     JDWP::ExpandBuf* pReply) | 
 | 461 |       LOCKS_EXCLUDED(Locks::thread_list_lock_, | 
 | 462 |                      Locks::thread_suspend_count_lock_); | 
| Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 463 |   // static void WaitForSuspend(JDWP::ObjectId thread_id); | 
| Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 464 |  | 
| Elliott Hughes | 026b146 | 2012-06-28 20:43:49 -0700 | [diff] [blame] | 465 |   // Fills 'thread_ids' with the threads in the given thread group. If thread_group_id == 0, | 
| Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 466 |   // returns all threads. | 
| Sebastien Hertz | a06430c | 2014-09-15 19:21:30 +0200 | [diff] [blame] | 467 |   static void GetThreads(mirror::Object* thread_group, std::vector<JDWP::ObjectId>* thread_ids) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 468 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
 | 469 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | caf7654 | 2012-06-28 16:08:22 -0700 | [diff] [blame] | 470 |  | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 471 |   static JDWP::JdwpError GetThreadFrameCount(JDWP::ObjectId thread_id, size_t* result) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 472 |       LOCKS_EXCLUDED(Locks::thread_list_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 473 |   static JDWP::JdwpError GetThreadFrames(JDWP::ObjectId thread_id, size_t start_frame, | 
 | 474 |                                          size_t frame_count, JDWP::ExpandBuf* buf) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 475 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 476 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 477 |  | 
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 478 |   static JDWP::ObjectId GetThreadSelfId() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 479 |   static JDWP::ObjectId GetThreadId(Thread* thread) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 480 |  | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 481 |   static void SuspendVM() | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 482 |       LOCKS_EXCLUDED(Locks::thread_list_lock_, | 
 | 483 |                      Locks::thread_suspend_count_lock_); | 
| Sebastien Hertz | 253fa55 | 2014-10-14 17:27:15 +0200 | [diff] [blame] | 484 |   static void ResumeVM() | 
 | 485 |       LOCKS_EXCLUDED(Locks::thread_list_lock_, | 
 | 486 |                      Locks::thread_suspend_count_lock_); | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 487 |   static JDWP::JdwpError SuspendThread(JDWP::ObjectId thread_id, bool request_suspension = true) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 488 |       LOCKS_EXCLUDED(Locks::mutator_lock_, | 
 | 489 |                      Locks::thread_list_lock_, | 
 | 490 |                      Locks::thread_suspend_count_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 491 |  | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 492 |   static void ResumeThread(JDWP::ObjectId thread_id) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 493 |       LOCKS_EXCLUDED(Locks::thread_list_lock_, | 
 | 494 |                      Locks::thread_suspend_count_lock_) | 
 | 495 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 496 |   static void SuspendSelf(); | 
 | 497 |  | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 498 |   static JDWP::JdwpError GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, | 
 | 499 |                                        JDWP::ObjectId* result) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 500 |       LOCKS_EXCLUDED(Locks::thread_list_lock_, | 
 | 501 |                      Locks::thread_suspend_count_lock_) | 
 | 502 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 503 |   static JDWP::JdwpError GetLocalValues(JDWP::Request* request, JDWP::ExpandBuf* pReply) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 504 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 505 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 506 |   static JDWP::JdwpError SetLocalValues(JDWP::Request* request) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 507 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 508 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 509 |  | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 510 |   static JDWP::JdwpError Interrupt(JDWP::ObjectId thread_id) | 
 | 511 |       LOCKS_EXCLUDED(Locks::thread_list_lock_); | 
| Elliott Hughes | f950170 | 2013-01-11 11:22:27 -0800 | [diff] [blame] | 512 |  | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 513 |   /* | 
 | 514 |    * Debugger notification | 
 | 515 |    */ | 
| Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 516 |   enum EventFlag { | 
| Elliott Hughes | 8696433 | 2012-02-15 19:37:42 -0800 | [diff] [blame] | 517 |     kBreakpoint     = 0x01, | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 518 |     kSingleStep     = 0x02, | 
 | 519 |     kMethodEntry    = 0x04, | 
 | 520 |     kMethodExit     = 0x08, | 
 | 521 |   }; | 
| Sebastien Hertz | 3f52eaf | 2014-04-04 17:50:18 +0200 | [diff] [blame] | 522 |   static void PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object, | 
 | 523 |                                    mirror::ArtField* f) | 
 | 524 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 525 |   static void PostFieldModificationEvent(mirror::ArtMethod* m, int dex_pc, | 
 | 526 |                                          mirror::Object* this_object, mirror::ArtField* f, | 
 | 527 |                                          const JValue* field_value) | 
 | 528 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 529 |   static void PostException(const ThrowLocation& throw_location, mirror::ArtMethod* catch_method, | 
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 530 |                             uint32_t catch_dex_pc, mirror::Throwable* exception) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 531 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 532 |   static void PostThreadStart(Thread* t) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 533 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 534 |   static void PostThreadDeath(Thread* t) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 535 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 536 |   static void PostClassPrepare(mirror::Class* c) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 537 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 538 |  | 
| Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 539 |   static void UpdateDebugger(Thread* thread, mirror::Object* this_object, | 
| Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 540 |                              mirror::ArtMethod* method, uint32_t new_dex_pc, | 
 | 541 |                              int event_flags, const JValue* return_value) | 
| jeffhao | 09bfc6a | 2012-12-11 18:11:43 -0800 | [diff] [blame] | 542 |       LOCKS_EXCLUDED(Locks::breakpoint_lock_) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 543 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 91bf6cd | 2012-02-14 17:27:48 -0800 | [diff] [blame] | 544 |  | 
| Sebastien Hertz | f392879 | 2014-11-17 19:00:37 +0100 | [diff] [blame] | 545 |   // Indicates whether we need deoptimization for debugging. | 
 | 546 |   static bool RequiresDeoptimization(); | 
 | 547 |  | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 548 |   // Records deoptimization request in the queue. | 
 | 549 |   static void RequestDeoptimization(const DeoptimizationRequest& req) | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 550 |       LOCKS_EXCLUDED(Locks::deoptimization_lock_) | 
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 551 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 552 |  | 
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 553 |   // Support delayed full undeoptimization requests. This is currently only used for single-step | 
 | 554 |   // events. | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 555 |   static void DelayFullUndeoptimization() LOCKS_EXCLUDED(Locks::deoptimization_lock_); | 
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 556 |   static void ProcessDelayedFullUndeoptimizations() | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 557 |       LOCKS_EXCLUDED(Locks::deoptimization_lock_) | 
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 558 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 559 |  | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 560 |   // Manage deoptimization after updating JDWP events list. Suspends all threads, processes each | 
 | 561 |   // request and finally resumes all threads. | 
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 562 |   static void ManageDeoptimization() | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 563 |       LOCKS_EXCLUDED(Locks::deoptimization_lock_) | 
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 564 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 565 |  | 
 | 566 |   // Breakpoints. | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 567 |   static void WatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req) | 
 | 568 |       LOCKS_EXCLUDED(Locks::breakpoint_lock_) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 569 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 570 |   static void UnwatchLocation(const JDWP::JdwpLocation* pLoc, DeoptimizationRequest* req) | 
 | 571 |       LOCKS_EXCLUDED(Locks::breakpoint_lock_) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 572 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 138dbfc | 2013-12-04 18:15:25 +0100 | [diff] [blame] | 573 |  | 
 | 574 |   // Single-stepping. | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 575 |   static JDWP::JdwpError ConfigureStep(JDWP::ObjectId thread_id, JDWP::JdwpStepSize size, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 576 |                                        JDWP::JdwpStepDepth depth) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 577 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 578 |   static void UnconfigureStep(JDWP::ObjectId thread_id) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 579 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
| Sebastien Hertz | 61b7f1b | 2013-11-15 15:59:30 +0100 | [diff] [blame] | 580 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 581 |  | 
| Elliott Hughes | 88d6309 | 2013-01-09 09:55:54 -0800 | [diff] [blame] | 582 |   static JDWP::JdwpError InvokeMethod(JDWP::ObjectId thread_id, JDWP::ObjectId object_id, | 
 | 583 |                                       JDWP::RefTypeId class_id, JDWP::MethodId method_id, | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 584 |                                       uint32_t arg_count, uint64_t* arg_values, | 
 | 585 |                                       JDWP::JdwpTag* arg_types, uint32_t options, | 
 | 586 |                                       JDWP::JdwpTag* pResultTag, uint64_t* pResultValue, | 
 | 587 |                                       JDWP::ObjectId* pExceptObj) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 588 |       LOCKS_EXCLUDED(Locks::thread_list_lock_, | 
 | 589 |                      Locks::thread_suspend_count_lock_) | 
 | 590 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 591 |   static void ExecuteMethod(DebugInvokeReq* pReq); | 
 | 592 |  | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 593 |   /* | 
 | 594 |    * DDM support. | 
 | 595 |    */ | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 596 |   static void DdmSendThreadNotification(Thread* t, uint32_t type) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 597 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 598 |   static void DdmSetThreadNotification(bool enable) | 
 | 599 |       LOCKS_EXCLUDED(Locks::thread_list_lock_); | 
| Ian Rogers | c0542af | 2014-09-03 16:16:56 -0700 | [diff] [blame] | 600 |   static bool DdmHandlePacket(JDWP::Request* request, uint8_t** pReplyBuf, int* pReplyLen); | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 601 |   static void DdmConnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 602 |   static void DdmDisconnected() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 603 |   static void DdmSendChunk(uint32_t type, const std::vector<uint8_t>& bytes) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 604 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 605 |   static void DdmSendChunk(uint32_t type, size_t len, const uint8_t* buf) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 606 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 607 |   static void DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 608 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 609 |  | 
| Mathieu Chartier | 3b05e9b | 2014-03-25 09:29:43 -0700 | [diff] [blame] | 610 |   static void VisitRoots(RootCallback* callback, void* arg) | 
 | 611 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 612 |  | 
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 613 |   /* | 
 | 614 |    * Recent allocation tracking support. | 
 | 615 |    */ | 
| Ian Rogers | 844506b | 2014-09-12 19:59:33 -0700 | [diff] [blame] | 616 |   static void RecordAllocation(Thread* self, mirror::Class* type, size_t byte_count) | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 617 |       LOCKS_EXCLUDED(Locks::alloc_tracker_lock_) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 618 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 619 |   static void SetAllocTrackingEnabled(bool enabled) LOCKS_EXCLUDED(Locks::alloc_tracker_lock_); | 
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 620 |   static bool IsAllocTrackingEnabled() { | 
 | 621 |     return recent_allocation_records_ != nullptr; | 
 | 622 |   } | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 623 |   static jbyteArray GetRecentAllocations() | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 624 |       LOCKS_EXCLUDED(Locks::alloc_tracker_lock_) | 
| Sebastien Hertz | 52d131d | 2014-03-13 16:17:40 +0100 | [diff] [blame] | 625 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 626 |   static size_t HeadIndex() EXCLUSIVE_LOCKS_REQUIRED(Locks::alloc_tracker_lock_); | 
 | 627 |   static void DumpRecentAllocations() LOCKS_EXCLUDED(Locks::alloc_tracker_lock_); | 
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 628 |  | 
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 629 |   enum HpifWhen { | 
 | 630 |     HPIF_WHEN_NEVER = 0, | 
 | 631 |     HPIF_WHEN_NOW = 1, | 
 | 632 |     HPIF_WHEN_NEXT_GC = 2, | 
 | 633 |     HPIF_WHEN_EVERY_GC = 3 | 
 | 634 |   }; | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 635 |   static int DdmHandleHpifChunk(HpifWhen when) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 636 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 767a147 | 2011-10-26 18:49:02 -0700 | [diff] [blame] | 637 |  | 
 | 638 |   enum HpsgWhen { | 
 | 639 |     HPSG_WHEN_NEVER = 0, | 
 | 640 |     HPSG_WHEN_EVERY_GC = 1, | 
 | 641 |   }; | 
 | 642 |   enum HpsgWhat { | 
 | 643 |     HPSG_WHAT_MERGED_OBJECTS = 0, | 
 | 644 |     HPSG_WHAT_DISTINCT_OBJECTS = 1, | 
 | 645 |   }; | 
 | 646 |   static bool DdmHandleHpsgNhsgChunk(HpsgWhen when, HpsgWhat what, bool native); | 
 | 647 |  | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 648 |   static void DdmSendHeapInfo(HpifWhen reason) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 649 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 650 |   static void DdmSendHeapSegments(bool native) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 651 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 652 |  | 
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 653 |   static ObjectRegistry* GetObjectRegistry() { | 
 | 654 |     return gRegistry; | 
 | 655 |   } | 
 | 656 |  | 
 | 657 |   static JDWP::JdwpTag TagFromObject(const ScopedObjectAccessUnchecked& soa, mirror::Object* o) | 
 | 658 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 659 |  | 
 | 660 |   static JDWP::JdwpTypeTag GetTypeTag(mirror::Class* klass) | 
 | 661 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 662 |  | 
 | 663 |   static JDWP::FieldId ToFieldId(const mirror::ArtField* f) | 
 | 664 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 665 |  | 
 | 666 |   static void SetJdwpLocation(JDWP::JdwpLocation* location, mirror::ArtMethod* m, uint32_t dex_pc) | 
 | 667 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 668 |  | 
| Mathieu Chartier | ad466ad | 2015-01-08 16:28:08 -0800 | [diff] [blame] | 669 |   static JDWP::JdwpState* GetJdwpState(); | 
 | 670 |  | 
| Elliott Hughes | 545a064 | 2011-11-08 19:10:03 -0800 | [diff] [blame] | 671 |  private: | 
| Sebastien Hertz | 8009f39 | 2014-09-01 17:07:11 +0200 | [diff] [blame] | 672 |   static JDWP::JdwpError GetLocalValue(const StackVisitor& visitor, | 
 | 673 |                                        ScopedObjectAccessUnchecked& soa, int slot, | 
 | 674 |                                        JDWP::JdwpTag tag, uint8_t* buf, size_t width) | 
 | 675 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
 | 676 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 677 |   static JDWP::JdwpError SetLocalValue(StackVisitor& visitor, int slot, JDWP::JdwpTag tag, | 
 | 678 |                                        uint64_t value, size_t width) | 
 | 679 |       LOCKS_EXCLUDED(Locks::thread_list_lock_) | 
 | 680 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 681 |  | 
| Brian Carlstrom | 2d88862 | 2013-07-18 17:02:00 -0700 | [diff] [blame] | 682 |   static void DdmBroadcast(bool connect) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 683 |   static void PostThreadStartOrStop(Thread*, uint32_t) | 
| Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 684 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 685 |  | 
| Sebastien Hertz | 8379b22 | 2014-02-24 17:38:15 +0100 | [diff] [blame] | 686 |   static void PostLocationEvent(mirror::ArtMethod* method, int pcOffset, | 
 | 687 |                                 mirror::Object* thisPtr, int eventFlags, | 
 | 688 |                                 const JValue* return_value) | 
 | 689 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 690 |  | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 691 |   static void ProcessDeoptimizationRequest(const DeoptimizationRequest& request) | 
 | 692 |       EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 693 |  | 
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 694 |   static void RequestDeoptimizationLocked(const DeoptimizationRequest& req) | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 695 |       EXCLUSIVE_LOCKS_REQUIRED(Locks::deoptimization_lock_) | 
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 696 |       SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); | 
 | 697 |  | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 698 |   static AllocRecord* recent_allocation_records_ PT_GUARDED_BY(Locks::alloc_tracker_lock_); | 
 | 699 |   static size_t alloc_record_max_ GUARDED_BY(Locks::alloc_tracker_lock_); | 
 | 700 |   static size_t alloc_record_head_ GUARDED_BY(Locks::alloc_tracker_lock_); | 
 | 701 |   static size_t alloc_record_count_ GUARDED_BY(Locks::alloc_tracker_lock_); | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 702 |  | 
| Sebastien Hertz | 6995c60 | 2014-09-09 12:10:13 +0200 | [diff] [blame] | 703 |   static ObjectRegistry* gRegistry; | 
 | 704 |  | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 705 |   // Deoptimization requests to be processed each time the event list is updated. This is used when | 
 | 706 |   // registering and unregistering events so we do not deoptimize while holding the event list | 
 | 707 |   // lock. | 
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 708 |   // TODO rename to instrumentation_requests. | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 709 |   static std::vector<DeoptimizationRequest> deoptimization_requests_ GUARDED_BY(Locks::deoptimization_lock_); | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 710 |  | 
 | 711 |   // Count the number of events requiring full deoptimization. When the counter is > 0, everything | 
 | 712 |   // is deoptimized, otherwise everything is undeoptimized. | 
 | 713 |   // Note: we fully deoptimize on the first event only (when the counter is set to 1). We fully | 
 | 714 |   // undeoptimize when the last event is unregistered (when the counter is set to 0). | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 715 |   static size_t full_deoptimization_event_count_ GUARDED_BY(Locks::deoptimization_lock_); | 
| Sebastien Hertz | 4d25df3 | 2014-03-21 17:44:46 +0100 | [diff] [blame] | 716 |  | 
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 717 |   // Count the number of full undeoptimization requests delayed to next resume or end of debug | 
 | 718 |   // session. | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 719 |   static size_t delayed_full_undeoptimization_count_ GUARDED_BY(Locks::deoptimization_lock_); | 
| Sebastien Hertz | 7ec2f1c | 2014-03-27 20:06:47 +0100 | [diff] [blame] | 720 |  | 
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 721 |   static size_t* GetReferenceCounterForEvent(uint32_t instrumentation_event); | 
 | 722 |  | 
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 723 |   // Weak global type cache, TODO improve this. | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 724 |   static TypeCache type_cache_ GUARDED_BY(Locks::alloc_tracker_lock_); | 
| Mathieu Chartier | 4345c46 | 2014-06-27 10:20:14 -0700 | [diff] [blame] | 725 |  | 
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 726 |   // Instrumentation event reference counters. | 
 | 727 |   // TODO we could use an array instead of having all these dedicated counters. Instrumentation | 
 | 728 |   // events are bits of a mask so we could convert them to array index. | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 729 |   static size_t dex_pc_change_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_); | 
 | 730 |   static size_t method_enter_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_); | 
 | 731 |   static size_t method_exit_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_); | 
 | 732 |   static size_t field_read_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_); | 
 | 733 |   static size_t field_write_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_); | 
 | 734 |   static size_t exception_catch_event_ref_count_ GUARDED_BY(Locks::deoptimization_lock_); | 
| Sebastien Hertz | 42cd43f | 2014-05-13 14:15:41 +0200 | [diff] [blame] | 735 |   static uint32_t instrumentation_events_ GUARDED_BY(Locks::mutator_lock_); | 
 | 736 |  | 
| Brian Carlstrom | 306db81 | 2014-09-05 13:01:41 -0700 | [diff] [blame] | 737 |   friend class AllocRecord;  // For type_cache_ with proper annotalysis. | 
| Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 738 |   DISALLOW_COPY_AND_ASSIGN(Dbg); | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 739 | }; | 
 | 740 |  | 
 | 741 | #define CHUNK_TYPE(_name) \ | 
| Elliott Hughes | 8218847 | 2011-11-07 18:11:48 -0800 | [diff] [blame] | 742 |     static_cast<uint32_t>((_name)[0] << 24 | (_name)[1] << 16 | (_name)[2] << 8 | (_name)[3]) | 
| Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 743 |  | 
 | 744 | }  // namespace art | 
 | 745 |  | 
| Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 746 | #endif  // ART_RUNTIME_DEBUGGER_H_ |