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