| Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2011 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 | */ | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 16 |  | 
|  | 17 | #ifndef ART_SRC_THREAD_H_ | 
|  | 18 | #define ART_SRC_THREAD_H_ | 
|  | 19 |  | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 20 | #include <pthread.h> | 
| Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 21 |  | 
| Elliott Hughes | 02b48d1 | 2011-09-07 17:15:51 -0700 | [diff] [blame] | 22 | #include <bitset> | 
| Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 23 | #include <iosfwd> | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 24 | #include <list> | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 25 | #include <string> | 
| jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 26 | #include <vector> | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 27 |  | 
| Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 28 | #include "dex_file.h" | 
| Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 29 | #include "globals.h" | 
| Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 30 | #include "jni_internal.h" | 
| Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 31 | #include "logging.h" | 
|  | 32 | #include "macros.h" | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 33 | #include "mutex.h" | 
| Brian Carlstrom | b765be0 | 2011-08-17 23:54:10 -0700 | [diff] [blame] | 34 | #include "mem_map.h" | 
| Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 35 | #include "offsets.h" | 
| Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 36 | #include "runtime_stats.h" | 
| Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 37 | #include "stack.h" | 
| jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 38 | #include "trace.h" | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 39 | #include "UniquePtr.h" | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 40 |  | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 41 | namespace art { | 
|  | 42 |  | 
| Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 43 | class Array; | 
| Elliott Hughes | 37f7a40 | 2011-08-22 18:56:01 -0700 | [diff] [blame] | 44 | class Class; | 
| Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 45 | class ClassLinker; | 
| Elliott Hughes | edcc09c | 2011-08-21 18:47:05 -0700 | [diff] [blame] | 46 | class ClassLoader; | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 47 | class Context; | 
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 48 | class DebugInvokeReq; | 
| Brian Carlstrom | a40f9bc | 2011-07-26 21:26:07 -0700 | [diff] [blame] | 49 | class Method; | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 50 | class Monitor; | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 51 | class Object; | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 52 | class Runtime; | 
| Logan Chien | f7ad17e | 2012-03-15 03:10:03 +0800 | [diff] [blame] | 53 | class ShadowFrame; | 
| Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 54 | class StackIndirectReferenceTable; | 
| Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 55 | class StackTraceElement; | 
| buzbee | 1da522d | 2011-09-04 11:22:20 -0700 | [diff] [blame] | 56 | class StaticStorageBase; | 
| Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 57 | class Thread; | 
|  | 58 | class ThreadList; | 
|  | 59 | class Throwable; | 
| buzbee | 1da522d | 2011-09-04 11:22:20 -0700 | [diff] [blame] | 60 |  | 
| Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 61 | template<class T> class ObjectArray; | 
| Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 62 | template<class T> class PrimitiveArray; | 
|  | 63 | typedef PrimitiveArray<int32_t> IntArray; | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 64 |  | 
| Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 65 | class PACKED Thread { | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 66 | public: | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 67 | /* thread priorities, from java.lang.Thread */ | 
|  | 68 | enum Priority { | 
|  | 69 | kMinPriority = 1, | 
|  | 70 | kNormPriority = 5, | 
|  | 71 | kMaxPriority = 10, | 
|  | 72 | }; | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 73 | enum State { | 
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 74 | // These correspond to JDWP states (but needn't share the same values). | 
|  | 75 | kTerminated   = 0,        // TS_ZOMBIE | 
|  | 76 | kRunnable     = 1,        // TS_RUNNING | 
| Elliott Hughes | 3ce4b26 | 2012-02-24 11:24:02 -0800 | [diff] [blame] | 77 | kTimedWaiting = 2,        // TS_WAIT in Object.wait() with a timeout | 
| Elliott Hughes | 499c513 | 2011-11-17 14:55:11 -0800 | [diff] [blame] | 78 | kBlocked      = 3,        // TS_MONITOR on a monitor | 
|  | 79 | kWaiting      = 4,        // TS_WAIT in Object.wait() | 
| Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 80 | // Non-JDWP states. | 
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 81 | kStarting     = 5,        // native thread started, not yet ready to run managed code | 
|  | 82 | kNative       = 6,        // off in a JNI native method | 
|  | 83 | kVmWait       = 7,        // waiting on an internal runtime resource | 
|  | 84 | kSuspended    = 8,        // suspended, usually by GC or debugger | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 85 | }; | 
|  | 86 |  | 
| Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 87 | // Space to throw a StackOverflowError in. | 
| Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 88 | static const size_t kStackOverflowReservedBytes = 4 * KB; | 
| buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 89 |  | 
| Brian Carlstrom | 72db0d7 | 2011-11-10 17:58:56 -0800 | [diff] [blame] | 90 | static const size_t kDefaultStackSize = 96 * KB; | 
| Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 91 |  | 
| Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 92 | class StackVisitor { | 
|  | 93 | public: | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 94 | virtual ~StackVisitor() {} | 
| Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 95 | // Return 'true' if we should continue to visit more frames, 'false' to stop. | 
|  | 96 | virtual bool VisitFrame(const Frame& frame, uintptr_t pc) = 0; | 
| Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 97 | }; | 
|  | 98 |  | 
| Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 99 | // Creates a new native thread corresponding to the given managed peer. | 
|  | 100 | // Used to implement Thread.start. | 
| Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 101 | static void Create(Object* peer, size_t stack_size); | 
| Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 102 |  | 
| Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 103 | // Attaches the calling native thread to the runtime, returning the new native peer. | 
|  | 104 | // Used to implement JNI AttachCurrentThread and AttachCurrentThreadAsDaemon calls. | 
|  | 105 | static Thread* Attach(const char* thread_name, bool as_daemon, Object* thread_group); | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 106 |  | 
| Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 107 | // Reset internal state of child thread after fork. | 
|  | 108 | void InitAfterFork(); | 
|  | 109 |  | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 110 | static Thread* Current() { | 
| Carl Shapiro | d0e7e77 | 2011-07-15 14:31:01 -0700 | [diff] [blame] | 111 | void* thread = pthread_getspecific(Thread::pthread_key_self_); | 
|  | 112 | return reinterpret_cast<Thread*>(thread); | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 113 | } | 
|  | 114 |  | 
| Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 115 | static Thread* FromManagedThread(Object* thread_peer); | 
| Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 116 | static Thread* FromManagedThread(JNIEnv* env, jobject thread); | 
| Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 117 | static uint32_t LockOwnerFromThreadLock(Object* thread_lock); | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 118 |  | 
| Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 119 | // When full == true, dumps the detailed thread state and the thread stack (used for SIGQUIT). | 
|  | 120 | // When full == false, dumps a one-line summary of thread state (used for operator<<). | 
|  | 121 | void Dump(std::ostream& os, bool full = true) const; | 
| Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 122 |  | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 123 | State GetState() const { | 
|  | 124 | return state_; | 
|  | 125 | } | 
|  | 126 |  | 
| Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 127 | State SetState(State new_state); | 
| Elliott Hughes | a4060e5 | 2012-03-02 16:51:35 -0800 | [diff] [blame] | 128 | void SetStateWithoutSuspendCheck(State new_state); | 
| Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 129 |  | 
| Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 130 | bool IsDaemon(); | 
| Elliott Hughes | 761928d | 2011-11-16 18:33:03 -0800 | [diff] [blame] | 131 | bool IsSuspended(); | 
| Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 132 |  | 
| Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 133 | void WaitUntilSuspended(); | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 134 |  | 
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 135 | bool HoldsLock(Object*); | 
|  | 136 |  | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 137 | /* | 
|  | 138 | * Changes the priority of this thread to match that of the java.lang.Thread object. | 
|  | 139 | * | 
|  | 140 | * We map a priority value from 1-10 to Linux "nice" values, where lower | 
|  | 141 | * numbers indicate higher priority. | 
|  | 142 | */ | 
|  | 143 | void SetNativePriority(int newPriority); | 
|  | 144 |  | 
|  | 145 | /* | 
|  | 146 | * Returns the thread priority for the current thread by querying the system. | 
|  | 147 | * This is useful when attaching a thread through JNI. | 
|  | 148 | * | 
|  | 149 | * Returns a value from 1 to 10 (compatible with java.lang.Thread values). | 
|  | 150 | */ | 
|  | 151 | static int GetNativePriority(); | 
|  | 152 |  | 
| Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 153 | // Returns the "main" ThreadGroup, used when attaching user threads. | 
|  | 154 | static Object* GetMainThreadGroup(); | 
|  | 155 | // Returns the "system" ThreadGroup, used when attaching our internal threads. | 
|  | 156 | static Object* GetSystemThreadGroup(); | 
|  | 157 |  | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 158 | bool CanAccessDirectReferences() const { | 
| Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 159 | #ifdef MOVING_GARBAGE_COLLECTOR | 
| Elliott Hughes | a59d179 | 2011-09-04 18:42:35 -0700 | [diff] [blame] | 160 | // TODO: when we have a moving collector, we'll need: return state_ == kRunnable; | 
| Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 161 | #endif | 
| Elliott Hughes | a59d179 | 2011-09-04 18:42:35 -0700 | [diff] [blame] | 162 | return true; | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 163 | } | 
|  | 164 |  | 
| Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 165 | uint32_t GetThinLockId() const { | 
|  | 166 | return thin_lock_id_; | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 167 | } | 
|  | 168 |  | 
| Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 169 | pid_t GetTid() const { | 
|  | 170 | return tid_; | 
|  | 171 | } | 
| Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 172 |  | 
| Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 173 | // Returns the java.lang.Thread's name, or NULL if this Thread* doesn't have a peer. | 
| Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 174 | String* GetThreadName() const; | 
|  | 175 |  | 
| Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 176 | // Sets 'name' to the java.lang.Thread's name. This requires no transition to managed code, | 
|  | 177 | // allocation, or locking. | 
|  | 178 | void GetThreadName(std::string& name) const; | 
|  | 179 |  | 
| Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 180 | // Sets the thread's name. | 
|  | 181 | void SetThreadName(const char* name); | 
| Elliott Hughes | fc86162 | 2011-10-17 17:57:47 -0700 | [diff] [blame] | 182 |  | 
| Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 183 | Object* GetPeer() const { | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 184 | return peer_; | 
|  | 185 | } | 
|  | 186 |  | 
| Elliott Hughes | a215526 | 2011-11-16 16:26:58 -0800 | [diff] [blame] | 187 | Object* GetThreadGroup() const; | 
|  | 188 |  | 
| Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 189 | RuntimeStats* GetStats() { | 
|  | 190 | return &stats_; | 
|  | 191 | } | 
|  | 192 |  | 
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 193 | int GetSuspendCount() const { | 
|  | 194 | return suspend_count_; | 
|  | 195 | } | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 196 |  | 
| Elliott Hughes | d07986f | 2011-12-06 18:27:45 -0800 | [diff] [blame] | 197 | // Returns the current Method* and native PC (not dex PC) for this thread. | 
|  | 198 | Method* GetCurrentMethod(uintptr_t* pc = NULL, Method*** sp = NULL) const; | 
| jeffhao | 33dc771 | 2011-11-09 17:54:24 -0800 | [diff] [blame] | 199 |  | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 200 | bool IsExceptionPending() const { | 
| Elliott Hughes | b20a554 | 2011-08-12 18:03:12 -0700 | [diff] [blame] | 201 | return exception_ != NULL; | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 202 | } | 
|  | 203 |  | 
| Elliott Hughes | e5b0dc8 | 2011-08-23 09:59:02 -0700 | [diff] [blame] | 204 | Throwable* GetException() const { | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 205 | DCHECK(CanAccessDirectReferences()); | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 206 | return exception_; | 
|  | 207 | } | 
|  | 208 |  | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 209 | void SetException(Throwable* new_exception) { | 
|  | 210 | DCHECK(CanAccessDirectReferences()); | 
|  | 211 | CHECK(new_exception != NULL); | 
|  | 212 | // TODO: CHECK(exception_ == NULL); | 
|  | 213 | exception_ = new_exception;  // TODO | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | void ClearException() { | 
|  | 217 | exception_ = NULL; | 
| Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 218 | } | 
|  | 219 |  | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 220 | // Find catch block and perform long jump to appropriate exception handle | 
| Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 221 | void DeliverException(); | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 222 |  | 
|  | 223 | Context* GetLongJumpContext(); | 
|  | 224 |  | 
| Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 225 | Frame GetTopOfStack() const { | 
|  | 226 | return top_of_managed_stack_; | 
|  | 227 | } | 
|  | 228 |  | 
|  | 229 | // TODO: this is here for testing, remove when we have exception unit tests | 
|  | 230 | // that use the real stack | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 231 | void SetTopOfStack(void* stack, uintptr_t pc) { | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 232 | top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack)); | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 233 | top_of_managed_stack_pc_ = pc; | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 234 | } | 
|  | 235 |  | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 236 | void SetTopOfStackPC(uintptr_t pc) { | 
|  | 237 | top_of_managed_stack_pc_ = pc; | 
|  | 238 | } | 
|  | 239 |  | 
| Elliott Hughes | 5cb5ad2 | 2011-10-02 12:13:39 -0700 | [diff] [blame] | 240 | // 'msg' may be NULL. | 
|  | 241 | void ThrowNewException(const char* exception_class_descriptor, const char* msg); | 
|  | 242 |  | 
|  | 243 | void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) | 
| Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 244 | __attribute__((format(printf, 3, 4))); | 
| Elliott Hughes | a5b897e | 2011-08-16 11:33:06 -0700 | [diff] [blame] | 245 |  | 
| Elliott Hughes | 4a2b417 | 2011-09-20 17:08:25 -0700 | [diff] [blame] | 246 | void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap); | 
|  | 247 |  | 
| Elliott Hughes | 2ced6a5 | 2011-10-16 18:44:48 -0700 | [diff] [blame] | 248 | // OutOfMemoryError is special, because we need to pre-allocate an instance. | 
|  | 249 | void ThrowOutOfMemoryError(const char* msg); | 
| Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 250 | void ThrowOutOfMemoryError(Class* c, size_t byte_count); | 
| Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 251 |  | 
| Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 252 | Frame FindExceptionHandler(void* throw_pc, void** handler_pc); | 
|  | 253 |  | 
|  | 254 | void* FindExceptionHandlerInMethod(const Method* method, | 
|  | 255 | void* throw_pc, | 
|  | 256 | const DexFile& dex_file, | 
|  | 257 | ClassLinker* class_linker); | 
| buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 258 |  | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 259 | static void Startup(); | 
| Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 260 | static void FinishStartup(); | 
| Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 261 | static void Shutdown(); | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 262 |  | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 263 | // JNI methods | 
| Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 264 | JNIEnvExt* GetJniEnv() const { | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 265 | return jni_env_; | 
|  | 266 | } | 
|  | 267 |  | 
| TDYa127 | 28f1a14 | 2012-03-15 21:51:52 -0700 | [diff] [blame^] | 268 | // Number of references in SIRTs on this thread | 
| Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 269 | size_t NumSirtReferences(); | 
| Ian Rogers | a8cd9f4 | 2011-08-19 16:43:41 -0700 | [diff] [blame] | 270 |  | 
| TDYa127 | 28f1a14 | 2012-03-15 21:51:52 -0700 | [diff] [blame^] | 271 | // Number of references allocated in ShadowFrames on this thread | 
|  | 272 | size_t NumShadowFrameReferences(); | 
|  | 273 |  | 
|  | 274 | // Number of references allocated in SIRTs & shadow frames on this thread | 
|  | 275 | size_t NumStackReferences() { | 
|  | 276 | return NumSirtReferences() + NumShadowFrameReferences(); | 
|  | 277 | }; | 
|  | 278 |  | 
| Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 279 | // Is the given obj in this thread's stack indirect reference table? | 
|  | 280 | bool SirtContains(jobject obj); | 
|  | 281 |  | 
| TDYa127 | 28f1a14 | 2012-03-15 21:51:52 -0700 | [diff] [blame^] | 282 | // Is the given obj in this thread's ShadowFrame? | 
|  | 283 | bool ShadowFrameContains(jobject obj); | 
|  | 284 |  | 
|  | 285 | // Is the given obj in this thread's Sirts & ShadowFrames? | 
|  | 286 | bool StackReferencesContain(jobject obj); | 
|  | 287 |  | 
| Shih-wei Liao | 8dfc9d5 | 2011-09-28 18:06:15 -0700 | [diff] [blame] | 288 | void SirtVisitRoots(Heap::RootVisitor* visitor, void* arg); | 
|  | 289 |  | 
| Logan Chien | f7ad17e | 2012-03-15 03:10:03 +0800 | [diff] [blame] | 290 | void ShadowFrameVisitRoots(Heap::RootVisitor* visitor, void* arg); | 
|  | 291 |  | 
| Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 292 | // Convert a jobject into a Object* | 
|  | 293 | Object* DecodeJObject(jobject obj); | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 294 |  | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 295 | // Implements java.lang.Thread.interrupted. | 
|  | 296 | bool Interrupted() { | 
| Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 297 | MutexLock mu(*wait_mutex_); | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 298 | bool interrupted = interrupted_; | 
|  | 299 | interrupted_ = false; | 
|  | 300 | return interrupted; | 
|  | 301 | } | 
|  | 302 |  | 
|  | 303 | // Implements java.lang.Thread.isInterrupted. | 
|  | 304 | bool IsInterrupted() { | 
| Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 305 | MutexLock mu(*wait_mutex_); | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 306 | return interrupted_; | 
|  | 307 | } | 
|  | 308 |  | 
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 309 | void Interrupt() { | 
| Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 310 | MutexLock mu(*wait_mutex_); | 
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 311 | if (interrupted_) { | 
|  | 312 | return; | 
|  | 313 | } | 
|  | 314 | interrupted_ = true; | 
|  | 315 | NotifyLocked(); | 
|  | 316 | } | 
|  | 317 |  | 
|  | 318 | void Notify() { | 
| Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 319 | MutexLock mu(*wait_mutex_); | 
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 320 | NotifyLocked(); | 
|  | 321 | } | 
|  | 322 |  | 
| Ian Rogers | 6de0860 | 2011-08-19 14:52:39 -0700 | [diff] [blame] | 323 | // Linked list recording transitions from native to managed code | 
| Ian Rogers | b04f69f | 2011-10-17 00:40:54 -0700 | [diff] [blame] | 324 | void PushNativeToManagedRecord(NativeToManagedRecord* record); | 
|  | 325 | void PopNativeToManagedRecord(const NativeToManagedRecord& record); | 
| Ian Rogers | 6de0860 | 2011-08-19 14:52:39 -0700 | [diff] [blame] | 326 |  | 
| Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 327 | const ClassLoader* GetClassLoaderOverride() { | 
| Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 328 | // TODO: need to place the class_loader_override_ in a handle | 
|  | 329 | // DCHECK(CanAccessDirectReferences()); | 
| buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 330 | return class_loader_override_; | 
|  | 331 | } | 
|  | 332 |  | 
| Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 333 | void SetClassLoaderOverride(const ClassLoader* class_loader_override) { | 
| buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 334 | class_loader_override_ = class_loader_override; | 
|  | 335 | } | 
|  | 336 |  | 
| Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 337 | // Create the internal representation of a stack trace, that is more time | 
|  | 338 | // and space efficient to compute than the StackTraceElement[] | 
| Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 339 | jobject CreateInternalStackTrace(JNIEnv* env) const; | 
| Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 340 |  | 
| Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 341 | // Convert an internal stack trace representation (returned by CreateInternalStackTrace) to a | 
|  | 342 | // StackTraceElement[]. If output_array is NULL, a new array is created, otherwise as many | 
|  | 343 | // frames as will fit are written into the given array. If stack_depth is non-NULL, it's updated | 
|  | 344 | // with the number of valid frames in the returned array. | 
|  | 345 | static jobjectArray InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal, | 
|  | 346 | jobjectArray output_array = NULL, int* stack_depth = NULL); | 
| Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 347 |  | 
| Ian Rogers | d6b1f61 | 2011-09-27 13:38:14 -0700 | [diff] [blame] | 348 | void VisitRoots(Heap::RootVisitor* visitor, void* arg); | 
| Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 349 |  | 
| jeffhao | 2504552 | 2012-03-13 19:34:37 -0700 | [diff] [blame] | 350 | #if VERIFY_OBJECT_ENABLED | 
|  | 351 | void VerifyStack(); | 
|  | 352 | #else | 
|  | 353 | void VerifyStack() {} | 
|  | 354 | #endif | 
|  | 355 |  | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 356 | // | 
|  | 357 | // Offsets of various members of native Thread class, used by compiled code. | 
|  | 358 | // | 
|  | 359 |  | 
|  | 360 | static ThreadOffset SelfOffset() { | 
|  | 361 | return ThreadOffset(OFFSETOF_MEMBER(Thread, self_)); | 
|  | 362 | } | 
|  | 363 |  | 
|  | 364 | static ThreadOffset ExceptionOffset() { | 
|  | 365 | return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_)); | 
|  | 366 | } | 
|  | 367 |  | 
| Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 368 | static ThreadOffset ThinLockIdOffset() { | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 369 | return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_)); | 
|  | 370 | } | 
|  | 371 |  | 
|  | 372 | static ThreadOffset CardTableOffset() { | 
|  | 373 | return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_)); | 
|  | 374 | } | 
|  | 375 |  | 
|  | 376 | static ThreadOffset SuspendCountOffset() { | 
|  | 377 | return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_)); | 
|  | 378 | } | 
|  | 379 |  | 
|  | 380 | static ThreadOffset StateOffset() { | 
| Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 381 | return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_)); | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 382 | } | 
|  | 383 |  | 
| Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 384 | // Size of stack less any space reserved for stack overflow | 
|  | 385 | size_t GetStackSize() { | 
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 386 | return stack_size_ - (stack_end_ - stack_begin_); | 
| Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 387 | } | 
|  | 388 |  | 
|  | 389 | // Set the stack end to that to be used during a stack overflow | 
|  | 390 | void SetStackEndForStackOverflow() { | 
|  | 391 | // During stack overflow we allow use of the full stack | 
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 392 | if (stack_end_ == stack_begin_) { | 
| Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 393 | DumpStack(std::cerr); | 
|  | 394 | LOG(FATAL) << "Need to increase kStackOverflowReservedBytes (currently " | 
|  | 395 | << kStackOverflowReservedBytes << ")"; | 
|  | 396 | } | 
|  | 397 |  | 
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 398 | stack_end_ = stack_begin_; | 
| Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 399 | } | 
|  | 400 |  | 
|  | 401 | // Set the stack end to that to be used during regular execution | 
|  | 402 | void ResetDefaultStackEnd() { | 
|  | 403 | // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room | 
|  | 404 | // to throw a StackOverflowError. | 
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 405 | stack_end_ = stack_begin_ + kStackOverflowReservedBytes; | 
| Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 406 | } | 
|  | 407 |  | 
| Elliott Hughes | 449b4bd | 2011-09-09 12:01:38 -0700 | [diff] [blame] | 408 | static ThreadOffset StackEndOffset() { | 
|  | 409 | return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_)); | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 410 | } | 
|  | 411 |  | 
|  | 412 | static ThreadOffset JniEnvOffset() { | 
|  | 413 | return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_)); | 
|  | 414 | } | 
|  | 415 |  | 
|  | 416 | static ThreadOffset TopOfManagedStackOffset() { | 
|  | 417 | return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) + | 
|  | 418 | OFFSETOF_MEMBER(Frame, sp_)); | 
|  | 419 | } | 
|  | 420 |  | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 421 | static ThreadOffset TopOfManagedStackPcOffset() { | 
|  | 422 | return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_pc_)); | 
|  | 423 | } | 
|  | 424 |  | 
| Logan Chien | f7ad17e | 2012-03-15 03:10:03 +0800 | [diff] [blame] | 425 | void PushShadowFrame(ShadowFrame* frame); | 
|  | 426 | ShadowFrame* PopShadowFrame(); | 
|  | 427 |  | 
| Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 428 | void PushSirt(StackIndirectReferenceTable* sirt); | 
|  | 429 | StackIndirectReferenceTable* PopSirt(); | 
|  | 430 |  | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 431 | static ThreadOffset TopSirtOffset() { | 
|  | 432 | return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_)); | 
|  | 433 | } | 
|  | 434 |  | 
| Elliott Hughes | 530fa00 | 2012-03-12 11:44:49 -0700 | [diff] [blame] | 435 | void WalkStack(StackVisitor* visitor, bool include_upcalls = false) const; | 
| Shih-wei Liao | 9407c60 | 2011-09-16 10:36:43 -0700 | [diff] [blame] | 436 |  | 
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 437 | DebugInvokeReq* GetInvokeReq() { | 
|  | 438 | return debug_invoke_req_; | 
|  | 439 | } | 
|  | 440 |  | 
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 441 | void SetDebuggerUpdatesEnabled(bool enabled); | 
|  | 442 |  | 
| jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 443 | bool IsTraceStackEmpty() const { | 
|  | 444 | return trace_stack_->empty(); | 
|  | 445 | } | 
|  | 446 |  | 
| jeffhao | a9ef3fd | 2011-12-13 18:33:43 -0800 | [diff] [blame] | 447 | TraceStackFrame GetTraceStackFrame(uint32_t depth) const { | 
|  | 448 | return trace_stack_->at(trace_stack_->size() - depth - 1); | 
|  | 449 | } | 
|  | 450 |  | 
| jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 451 | void PushTraceStackFrame(const TraceStackFrame& frame) { | 
|  | 452 | trace_stack_->push_back(frame); | 
|  | 453 | } | 
|  | 454 |  | 
|  | 455 | TraceStackFrame PopTraceStackFrame() { | 
|  | 456 | TraceStackFrame frame = trace_stack_->back(); | 
|  | 457 | trace_stack_->pop_back(); | 
|  | 458 | return frame; | 
|  | 459 | } | 
|  | 460 |  | 
| Elliott Hughes | a4060e5 | 2012-03-02 16:51:35 -0800 | [diff] [blame] | 461 | void CheckSafeToLockOrUnlock(MutexRank rank, bool is_locking); | 
|  | 462 | void CheckSafeToWait(MutexRank rank); | 
| Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 463 |  | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 464 | private: | 
| Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 465 | Thread(); | 
| Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 466 | ~Thread(); | 
| Elliott Hughes | c0f0933 | 2012-03-26 13:27:06 -0700 | [diff] [blame] | 467 | void Destroy(); | 
|  | 468 | friend class ThreadList;  // For ~Thread and Destroy. | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 469 |  | 
| Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 470 | void CreatePeer(const char* name, bool as_daemon, Object* thread_group); | 
| Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 471 | friend class Runtime; // For CreatePeer. | 
|  | 472 |  | 
| Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 473 | void DumpState(std::ostream& os) const; | 
|  | 474 | void DumpStack(std::ostream& os) const; | 
| Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 475 | void DumpNativeStack(std::ostream& os) const; | 
| Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 476 |  | 
| Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 477 | // Out-of-line conveniences for debugging in gdb. | 
| Elliott Hughes | 498508c | 2011-10-17 14:58:22 -0700 | [diff] [blame] | 478 | static Thread* CurrentFromGdb(); // Like Thread::Current. | 
| Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 479 | void DumpFromGdb() const; // Like Thread::Dump(std::cerr). | 
|  | 480 |  | 
| Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 481 | static void* CreateCallback(void* arg); | 
|  | 482 |  | 
| Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 483 | void HandleUncaughtExceptions(); | 
| Brian Carlstrom | 4514d3c | 2011-10-21 17:01:31 -0700 | [diff] [blame] | 484 | void RemoveFromThreadGroup(); | 
| Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 485 |  | 
| Elliott Hughes | 462c944 | 2012-03-23 18:47:50 -0700 | [diff] [blame] | 486 | void Init(); | 
| Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 487 | void InitCardTable(); | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 488 | void InitCpu(); | 
| buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 489 | void InitFunctionPointers(); | 
| Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 490 | void InitTid(); | 
| Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 491 | void InitPthreadKeySelf(); | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 492 | void InitStackHwm(); | 
|  | 493 |  | 
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 494 | void NotifyLocked() { | 
|  | 495 | if (wait_monitor_ != NULL) { | 
| Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 496 | wait_cond_->Signal(); | 
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 497 | } | 
|  | 498 | } | 
|  | 499 |  | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 500 | static void ThreadExitCallback(void* arg); | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 501 |  | 
| Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 502 | // Thin lock thread id. This is a small integer used by the thin lock implementation. | 
|  | 503 | // This is not to be confused with the native thread's tid, nor is it the value returned | 
|  | 504 | // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One | 
|  | 505 | // important difference between this id and the ids visible to managed code is that these | 
|  | 506 | // ones get reused (to ensure that they fit in the number of bits available). | 
|  | 507 | uint32_t thin_lock_id_; | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 508 |  | 
| Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 509 | // System thread id. | 
|  | 510 | pid_t tid_; | 
|  | 511 |  | 
| Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 512 | // Our managed peer (an instance of java.lang.Thread). | 
| Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 513 | Object* peer_; | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 514 |  | 
| Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 515 | // The top_of_managed_stack_ and top_of_managed_stack_pc_ fields are accessed from | 
|  | 516 | // compiled code, so we keep them early in the structure to (a) avoid having to keep | 
|  | 517 | // fixing the assembler offsets and (b) improve the chances that these will still be aligned. | 
|  | 518 |  | 
|  | 519 | // Top of the managed stack, written out prior to the state transition from | 
| Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 520 | // kRunnable to kNative. Uses include giving the starting point for scanning | 
| Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 521 | // a managed stack when a thread is in native code. | 
|  | 522 | Frame top_of_managed_stack_; | 
|  | 523 | // PC corresponding to the call out of the top_of_managed_stack_ frame | 
|  | 524 | uintptr_t top_of_managed_stack_pc_; | 
|  | 525 |  | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 526 | // Guards the 'interrupted_' and 'wait_monitor_' members. | 
| Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 527 | mutable Mutex* wait_mutex_; | 
|  | 528 | ConditionVariable* wait_cond_; | 
| Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 529 | // Pointer to the monitor lock we're currently waiting on (or NULL), guarded by wait_mutex_. | 
|  | 530 | Monitor* wait_monitor_; | 
|  | 531 | // Thread "interrupted" status; stays raised until queried or thrown, guarded by wait_mutex_. | 
| Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 532 | uint32_t interrupted_; | 
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 533 | // The next thread in the wait set this thread is part of. | 
|  | 534 | Thread* wait_next_; | 
| Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 535 | // If we're blocked in MonitorEnter, this is the object we're trying to lock. | 
|  | 536 | Object* monitor_enter_object_; | 
| Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 537 |  | 
|  | 538 | friend class Monitor; | 
| Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 539 |  | 
| Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 540 | RuntimeStats stats_; | 
|  | 541 |  | 
| Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 542 | // The biased card table, see CardTable for details | 
|  | 543 | byte* card_table_; | 
| buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 544 |  | 
| Elliott Hughes | 449b4bd | 2011-09-09 12:01:38 -0700 | [diff] [blame] | 545 | // The end of this thread's stack. This is the lowest safely-addressable address on the stack. | 
|  | 546 | // We leave extra space so there's room for the code that throws StackOverflowError. | 
|  | 547 | byte* stack_end_; | 
| Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 548 |  | 
| Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 549 | // Size of the stack | 
|  | 550 | size_t stack_size_; | 
|  | 551 |  | 
|  | 552 | // The "lowest addressable byte" of the stack | 
| Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 553 | byte* stack_begin_; | 
| Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 554 |  | 
| Ian Rogers | 6de0860 | 2011-08-19 14:52:39 -0700 | [diff] [blame] | 555 | // A linked list (of stack allocated records) recording transitions from | 
|  | 556 | // native to managed code. | 
|  | 557 | NativeToManagedRecord* native_to_managed_record_; | 
|  | 558 |  | 
| Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 559 | // Top of linked list of stack indirect reference tables or NULL for none | 
|  | 560 | StackIndirectReferenceTable* top_sirt_; | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 561 |  | 
| Logan Chien | f7ad17e | 2012-03-15 03:10:03 +0800 | [diff] [blame] | 562 | // Top of linked list of shadow stack or NULL for none | 
|  | 563 | // Some backend may require shadow frame to ease the GC work. | 
|  | 564 | ShadowFrame* top_shadow_frame_; | 
|  | 565 |  | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 566 | // Every thread may have an associated JNI environment | 
| Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 567 | JNIEnvExt* jni_env_; | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 568 |  | 
| Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 569 | volatile State state_; | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 570 |  | 
| Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 571 | // Initialized to "this". On certain architectures (such as x86) reading | 
|  | 572 | // off of Thread::Current is easy but getting the address of Thread::Current | 
|  | 573 | // is hard. This field can be read off of Thread::Current to give the address. | 
|  | 574 | Thread* self_; | 
|  | 575 |  | 
|  | 576 | Runtime* runtime_; | 
|  | 577 |  | 
|  | 578 | // The pending exception or NULL. | 
| Elliott Hughes | e5b0dc8 | 2011-08-23 09:59:02 -0700 | [diff] [blame] | 579 | Throwable* exception_; | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 580 |  | 
| Ian Rogers | 45a76cb | 2011-07-21 22:00:15 -0700 | [diff] [blame] | 581 | // A non-zero value is used to tell the current thread to enter a safe point | 
|  | 582 | // at the next poll. | 
|  | 583 | int suspend_count_; | 
| Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 584 | // How much of 'suspend_count_' is by request of the debugger, used to set things right | 
|  | 585 | // when the debugger detaches. Must be <= suspend_count_. | 
|  | 586 | int debug_suspend_count_; | 
| Ian Rogers | 45a76cb | 2011-07-21 22:00:15 -0700 | [diff] [blame] | 587 |  | 
| Elliott Hughes | edcc09c | 2011-08-21 18:47:05 -0700 | [diff] [blame] | 588 | // Needed to get the right ClassLoader in JNI_OnLoad, but also | 
|  | 589 | // useful for testing. | 
| Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 590 | const ClassLoader* class_loader_override_; | 
| buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 591 |  | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 592 | // Thread local, lazily allocated, long jump context. Used to deliver exceptions. | 
| Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 593 | Context* long_jump_context_; | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 594 |  | 
| Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 595 | // A boolean telling us whether we're recursively throwing OOME. | 
| Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 596 | uint32_t throwing_OutOfMemoryError_; | 
|  | 597 |  | 
|  | 598 | Throwable* pre_allocated_OutOfMemoryError_; | 
| Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 599 |  | 
| Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 600 | // JDWP invoke-during-breakpoint support. | 
|  | 601 | DebugInvokeReq* debug_invoke_req_; | 
|  | 602 |  | 
| Elliott Hughes | 81ff318 | 2012-03-23 20:35:56 -0700 | [diff] [blame] | 603 | // TLS key used to retrieve the Thread*. | 
| Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 604 | static pthread_key_t pthread_key_self_; | 
|  | 605 |  | 
| jeffhao | e343b76 | 2011-12-05 16:36:44 -0800 | [diff] [blame] | 606 | // Additional stack used by method tracer to store method and return pc values. | 
|  | 607 | // Stored as a pointer since std::vector is not PACKED. | 
|  | 608 | std::vector<TraceStackFrame>* trace_stack_; | 
|  | 609 |  | 
| Elliott Hughes | 899e789 | 2012-01-24 14:57:32 -0800 | [diff] [blame] | 610 | // A cached copy of the java.lang.Thread's name. | 
|  | 611 | std::string* name_; | 
|  | 612 |  | 
| Elliott Hughes | ffb465f | 2012-03-01 18:46:05 -0800 | [diff] [blame] | 613 | uint32_t held_mutexes_[kMaxMutexRank + 1]; | 
|  | 614 |  | 
| Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 615 | public: | 
|  | 616 | // Runtime support function pointers | 
|  | 617 | void (*pDebugMe)(Method*, uint32_t); | 
|  | 618 | void* (*pMemcpy)(void*, const void*, size_t); | 
|  | 619 | uint64_t (*pShlLong)(uint64_t, uint32_t); | 
|  | 620 | uint64_t (*pShrLong)(uint64_t, uint32_t); | 
|  | 621 | uint64_t (*pUshrLong)(uint64_t, uint32_t); | 
|  | 622 | float (*pI2f)(int); | 
|  | 623 | int (*pF2iz)(float); | 
|  | 624 | float (*pD2f)(double); | 
|  | 625 | double (*pF2d)(float); | 
|  | 626 | double (*pI2d)(int); | 
|  | 627 | int (*pD2iz)(double); | 
| Ian Rogers | c6f3bb8 | 2012-03-21 20:40:33 -0700 | [diff] [blame] | 628 | float (*pL2f)(int64_t); | 
|  | 629 | double (*pL2d)(int64_t); | 
|  | 630 | int64_t (*pF2l)(float); | 
|  | 631 | int64_t (*pD2l)(double); | 
| Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 632 | float (*pFadd)(float, float); | 
|  | 633 | float (*pFsub)(float, float); | 
|  | 634 | float (*pFdiv)(float, float); | 
|  | 635 | float (*pFmul)(float, float); | 
|  | 636 | float (*pFmodf)(float, float); | 
|  | 637 | double (*pDadd)(double, double); | 
|  | 638 | double (*pDsub)(double, double); | 
|  | 639 | double (*pDdiv)(double, double); | 
|  | 640 | double (*pDmul)(double, double); | 
|  | 641 | double (*pFmod)(double, double); | 
|  | 642 | int (*pIdivmod)(int, int); | 
|  | 643 | int (*pIdiv)(int, int); | 
| Ian Rogers | c6f3bb8 | 2012-03-21 20:40:33 -0700 | [diff] [blame] | 644 | int64_t (*pLadd)(int64_t, int64_t); | 
|  | 645 | int64_t (*pLsub)(int64_t, int64_t); | 
|  | 646 | int64_t (*pLand)(int64_t, int64_t); | 
|  | 647 | int64_t (*pLor)(int64_t, int64_t); | 
|  | 648 | int64_t (*pLxor)(int64_t, int64_t); | 
|  | 649 | int64_t (*pLmul)(int64_t, int64_t); | 
|  | 650 | int64_t (*pLdivmod)(int64_t, int64_t); | 
| Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 651 | void (*pCheckSuspendFromCode)(Thread*);  // Stub that is called when the suspend count is non-zero | 
|  | 652 | void (*pTestSuspendFromCode)();  // Stub that is periodically called to test the suspend count | 
|  | 653 | void* (*pAllocObjectFromCode)(uint32_t, void*); | 
|  | 654 | void* (*pAllocObjectFromCodeWithAccessCheck)(uint32_t, void*); | 
|  | 655 | void* (*pAllocArrayFromCode)(uint32_t, void*, int32_t); | 
|  | 656 | void* (*pAllocArrayFromCodeWithAccessCheck)(uint32_t, void*, int32_t); | 
|  | 657 | void (*pCanPutArrayElementFromCode)(void*, void*); | 
|  | 658 | void* (*pCheckAndAllocArrayFromCode)(uint32_t, void*, int32_t); | 
|  | 659 | void* (*pCheckAndAllocArrayFromCodeWithAccessCheck)(uint32_t, void*, int32_t); | 
|  | 660 | void (*pCheckCastFromCode)(void*, void*); | 
|  | 661 | Object* (*pDecodeJObjectInThread)(Thread* thread, jobject obj); | 
|  | 662 | void (*pDeliverException)(void*); | 
|  | 663 | Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*); | 
|  | 664 | void* (*pFindNativeMethod)(Thread* thread); | 
|  | 665 | int32_t (*pGet32Instance)(uint32_t, void*); | 
|  | 666 | int64_t (*pGet64Instance)(uint32_t, void*); | 
|  | 667 | void* (*pGetObjInstance)(uint32_t, void*); | 
|  | 668 | int32_t (*pGet32Static)(uint32_t); | 
|  | 669 | int64_t (*pGet64Static)(uint32_t); | 
|  | 670 | void* (*pGetObjStatic)(uint32_t); | 
|  | 671 | void (*pHandleFillArrayDataFromCode)(void*, void*); | 
|  | 672 | void* (*pInitializeStaticStorage)(uint32_t, void*); | 
|  | 673 | uint32_t (*pInstanceofNonTrivialFromCode)(const Class*, const Class*); | 
| Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 674 | void (*pInvokeDirectTrampolineWithAccessCheck)(uint32_t, void*); | 
| Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 675 | void (*pInvokeInterfaceTrampoline)(uint32_t, void*); | 
|  | 676 | void (*pInvokeInterfaceTrampolineWithAccessCheck)(uint32_t, void*); | 
| Ian Rogers | c8b306f | 2012-02-17 21:34:44 -0800 | [diff] [blame] | 677 | void (*pInvokeStaticTrampolineWithAccessCheck)(uint32_t, void*); | 
| Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 678 | void (*pInvokeSuperTrampolineWithAccessCheck)(uint32_t, void*); | 
|  | 679 | void (*pInvokeVirtualTrampolineWithAccessCheck)(uint32_t, void*); | 
|  | 680 | void* (*pInitializeTypeFromCode)(uint32_t, void*); | 
|  | 681 | void* (*pInitializeTypeAndVerifyAccessFromCode)(uint32_t, void*); | 
|  | 682 | void (*pLockObjectFromCode)(void*); | 
| Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 683 | void* (*pResolveStringFromCode)(void*, uint32_t); | 
|  | 684 | int (*pSet32Instance)(uint32_t, void*, int32_t);  // field_idx, obj, src | 
|  | 685 | int (*pSet64Instance)(uint32_t, void*, int64_t); | 
|  | 686 | int (*pSetObjInstance)(uint32_t, void*, void*); | 
|  | 687 | int (*pSet32Static)(uint32_t, int32_t); | 
|  | 688 | int (*pSet64Static)(uint32_t, int64_t); | 
|  | 689 | int (*pSetObjStatic)(uint32_t, void*); | 
|  | 690 | void (*pThrowStackOverflowFromCode)(void*); | 
|  | 691 | void (*pThrowNullPointerFromCode)(); | 
|  | 692 | void (*pThrowArrayBoundsFromCode)(int32_t, int32_t); | 
|  | 693 | void (*pThrowDivZeroFromCode)(); | 
|  | 694 | void (*pThrowVerificationErrorFromCode)(int32_t, int32_t); | 
|  | 695 | void (*pThrowNegArraySizeFromCode)(int32_t); | 
|  | 696 | void (*pThrowNoSuchMethodFromCode)(int32_t); | 
|  | 697 | void (*pThrowAbstractMethodErrorFromCode)(Method* method, Thread* thread, Method** sp); | 
|  | 698 | void (*pUnlockObjectFromCode)(void*); | 
| Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 699 | const void* (*pUnresolvedDirectMethodTrampolineFromCode)(Method*, Method**, Thread*, | 
|  | 700 | Runtime::TrampolineType); | 
| Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 701 | void (*pUpdateDebuggerFromCode)(void*, void*, int32_t, void*); | 
| Bill Buzbee | 11f9d21 | 2012-03-03 20:03:18 -0800 | [diff] [blame] | 702 | bool (*pCmplFloat)(float, float); | 
|  | 703 | bool (*pCmpgFloat)(float, float); | 
|  | 704 | bool (*pCmplDouble)(double, double); | 
|  | 705 | bool (*pCmpgDouble)(double, double); | 
| buzbee | fc9e6fa | 2012-03-23 15:14:29 -0700 | [diff] [blame] | 706 | int (*pIndexOf)(void*, uint32_t, uint32_t, uint32_t); | 
|  | 707 | int (*pStringCompareTo)(void*, void*); | 
|  | 708 | int (*pMemcmp16)(void*, void*, int32_t); | 
| Ian Rogers | a32a6fd | 2012-02-06 20:18:44 -0800 | [diff] [blame] | 709 |  | 
|  | 710 | private: | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 711 | DISALLOW_COPY_AND_ASSIGN(Thread); | 
|  | 712 | }; | 
| Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 713 |  | 
| Elliott Hughes | 330304d | 2011-08-12 14:28:05 -0700 | [diff] [blame] | 714 | std::ostream& operator<<(std::ostream& os, const Thread& thread); | 
| Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 715 | std::ostream& operator<<(std::ostream& os, const Thread::State& state); | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 716 |  | 
| Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 717 | class ScopedThreadStateChange { | 
|  | 718 | public: | 
|  | 719 | ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) { | 
|  | 720 | old_thread_state_ = thread_->SetState(new_state); | 
|  | 721 | } | 
|  | 722 |  | 
|  | 723 | ~ScopedThreadStateChange() { | 
|  | 724 | thread_->SetState(old_thread_state_); | 
|  | 725 | } | 
|  | 726 |  | 
|  | 727 | private: | 
|  | 728 | Thread* thread_; | 
|  | 729 | Thread::State old_thread_state_; | 
|  | 730 | DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange); | 
|  | 731 | }; | 
|  | 732 |  | 
| Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 733 | }  // namespace art | 
|  | 734 |  | 
|  | 735 | #endif  // ART_SRC_THREAD_H_ |