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> |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 26 | |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 27 | #include "dex_file.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 28 | #include "globals.h" |
Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 29 | #include "jni_internal.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 30 | #include "logging.h" |
| 31 | #include "macros.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 32 | #include "mutex.h" |
Brian Carlstrom | b765be0 | 2011-08-17 23:54:10 -0700 | [diff] [blame] | 33 | #include "mem_map.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 34 | #include "offsets.h" |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 35 | #include "runtime_stats.h" |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 36 | #include "stack.h" |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 37 | #include "UniquePtr.h" |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 38 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 39 | namespace art { |
| 40 | |
Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 41 | class Array; |
Elliott Hughes | 37f7a40 | 2011-08-22 18:56:01 -0700 | [diff] [blame] | 42 | class Class; |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 43 | class ClassLinker; |
Elliott Hughes | edcc09c | 2011-08-21 18:47:05 -0700 | [diff] [blame] | 44 | class ClassLoader; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 45 | class Context; |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 46 | class DebugInvokeReq; |
Brian Carlstrom | a40f9bc | 2011-07-26 21:26:07 -0700 | [diff] [blame] | 47 | class Method; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 48 | class Monitor; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 49 | class Object; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 50 | class Runtime; |
Elliott Hughes | 68e7652 | 2011-10-05 13:22:16 -0700 | [diff] [blame] | 51 | class StackIndirectReferenceTable; |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 52 | class StackTraceElement; |
buzbee | 1da522d | 2011-09-04 11:22:20 -0700 | [diff] [blame] | 53 | class StaticStorageBase; |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 54 | class Thread; |
| 55 | class ThreadList; |
| 56 | class Throwable; |
buzbee | 1da522d | 2011-09-04 11:22:20 -0700 | [diff] [blame] | 57 | |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 58 | template<class T> class ObjectArray; |
Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 59 | template<class T> class PrimitiveArray; |
| 60 | typedef PrimitiveArray<int32_t> IntArray; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 61 | |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 62 | class PACKED Thread { |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 63 | public: |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 64 | /* thread priorities, from java.lang.Thread */ |
| 65 | enum Priority { |
| 66 | kMinPriority = 1, |
| 67 | kNormPriority = 5, |
| 68 | kMaxPriority = 10, |
| 69 | }; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 70 | enum State { |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 71 | // These match up with JDWP values. |
| 72 | kTerminated = 0, // TERMINATED |
| 73 | kRunnable = 1, // RUNNABLE or running now |
| 74 | kTimedWaiting = 2, // TIMED_WAITING in Object.wait() |
| 75 | kBlocked = 3, // BLOCKED on a monitor |
| 76 | kWaiting = 4, // WAITING in Object.wait() |
| 77 | // Non-JDWP states. |
| 78 | kInitializing = 5, // allocated, not yet running --- TODO: unnecessary? |
| 79 | kStarting = 6, // native thread started, not yet ready to run managed code |
| 80 | kNative = 7, // off in a JNI native method |
| 81 | kVmWait = 8, // waiting on a VM resource |
| 82 | kSuspended = 9, // suspended, usually by GC or debugger |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 83 | }; |
| 84 | |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 85 | // Space to throw a StackOverflowError in. |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 86 | static const size_t kStackOverflowReservedBytes = 4 * KB; |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 87 | |
Brian Carlstrom | 72db0d7 | 2011-11-10 17:58:56 -0800 | [diff] [blame] | 88 | static const size_t kDefaultStackSize = 96 * KB; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 89 | |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 90 | // Runtime support function pointers |
buzbee | 4a3164f | 2011-09-03 11:25:10 -0700 | [diff] [blame] | 91 | void (*pDebugMe)(Method*, uint32_t); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 92 | void* (*pMemcpy)(void*, const void*, size_t); |
buzbee | 5433072 | 2011-08-23 16:46:55 -0700 | [diff] [blame] | 93 | uint64_t (*pShlLong)(uint64_t, uint32_t); |
| 94 | uint64_t (*pShrLong)(uint64_t, uint32_t); |
| 95 | uint64_t (*pUshrLong)(uint64_t, uint32_t); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 96 | float (*pI2f)(int); |
| 97 | int (*pF2iz)(float); |
| 98 | float (*pD2f)(double); |
| 99 | double (*pF2d)(float); |
| 100 | double (*pI2d)(int); |
| 101 | int (*pD2iz)(double); |
| 102 | float (*pL2f)(long); |
| 103 | double (*pL2d)(long); |
buzbee | 1b4c859 | 2011-08-31 10:43:51 -0700 | [diff] [blame] | 104 | long long (*pF2l)(float); |
| 105 | long long (*pD2l)(double); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 106 | float (*pFadd)(float, float); |
| 107 | float (*pFsub)(float, float); |
| 108 | float (*pFdiv)(float, float); |
| 109 | float (*pFmul)(float, float); |
| 110 | float (*pFmodf)(float, float); |
| 111 | double (*pDadd)(double, double); |
| 112 | double (*pDsub)(double, double); |
| 113 | double (*pDdiv)(double, double); |
| 114 | double (*pDmul)(double, double); |
| 115 | double (*pFmod)(double, double); |
| 116 | int (*pIdivmod)(int, int); |
| 117 | int (*pIdiv)(int, int); |
buzbee | 439c4fa | 2011-08-27 15:59:07 -0700 | [diff] [blame] | 118 | long long (*pLmul)(long long, long long); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 119 | long long (*pLdivmod)(long long, long long); |
Ian Rogers | 4a510d8 | 2011-10-09 14:30:24 -0700 | [diff] [blame] | 120 | void (*pCheckSuspendFromCode)(Thread*); // Stub that is called when the suspend count is non-zero |
| 121 | void (*pTestSuspendFromCode)(); // Stub that is periodically called to test the suspend count |
Ian Rogers | 21d9e83 | 2011-09-23 17:05:09 -0700 | [diff] [blame] | 122 | void* (*pAllocObjectFromCode)(uint32_t, void*); |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 123 | void* (*pAllocObjectFromCodeWithAccessCheck)(uint32_t, void*); |
Elliott Hughes | b408de7 | 2011-10-04 14:35:05 -0700 | [diff] [blame] | 124 | void* (*pAllocArrayFromCode)(uint32_t, void*, int32_t); |
Ian Rogers | e51a511 | 2011-09-23 14:16:35 -0700 | [diff] [blame] | 125 | void (*pCanPutArrayElementFromCode)(void*, void*); |
Ian Rogers | ce9eca6 | 2011-10-07 17:11:03 -0700 | [diff] [blame] | 126 | void* (*pCheckAndAllocArrayFromCode)(uint32_t, void*, int32_t); |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 127 | void (*pCheckCastFromCode)(void*, void*); |
Ian Rogers | ce9eca6 | 2011-10-07 17:11:03 -0700 | [diff] [blame] | 128 | Object* (*pDecodeJObjectInThread)(Thread* thread, jobject obj); |
| 129 | void (*pDeliverException)(void*); |
| 130 | void* (*pFindInstanceFieldFromCode)(uint32_t, void*); |
| 131 | Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*); |
| 132 | void* (*pFindNativeMethod)(Thread* thread); |
| 133 | int32_t (*pGet32Static)(uint32_t, void*); |
| 134 | int64_t (*pGet64Static)(uint32_t, void*); |
| 135 | void* (*pGetObjStatic)(uint32_t, void*); |
| 136 | void (*pHandleFillArrayDataFromCode)(void*, void*); |
| 137 | void* (*pInitializeStaticStorage)(uint32_t, void*); |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 138 | uint32_t (*pInstanceofNonTrivialFromCode)(const Class*, const Class*); |
Ian Rogers | ce9eca6 | 2011-10-07 17:11:03 -0700 | [diff] [blame] | 139 | void (*pInvokeInterfaceTrampoline)(uint32_t, void*); |
Ian Rogers | 28ad40d | 2011-10-27 15:19:26 -0700 | [diff] [blame] | 140 | void* (*pInitializeTypeFromCode)(uint32_t, void*); |
Ian Rogers | b093c6b | 2011-10-31 16:19:55 -0700 | [diff] [blame] | 141 | void* (*pInitializeTypeAndVerifyAccessFromCode)(uint32_t, void*); |
Ian Rogers | ce9eca6 | 2011-10-07 17:11:03 -0700 | [diff] [blame] | 142 | void (*pLockObjectFromCode)(void*); |
Brian Carlstrom | 6fd03fb | 2011-10-17 16:11:00 -0700 | [diff] [blame] | 143 | void (*pObjectInit)(void*); |
Ian Rogers | ce9eca6 | 2011-10-07 17:11:03 -0700 | [diff] [blame] | 144 | void (*pResolveMethodFromCode)(Method*, uint32_t); |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 145 | void* (*pResolveStringFromCode)(void*, uint32_t); |
Ian Rogers | ce9eca6 | 2011-10-07 17:11:03 -0700 | [diff] [blame] | 146 | int (*pSet32Static)(uint32_t, void*, int32_t); |
| 147 | int (*pSet64Static)(uint32_t, void*, int64_t); |
| 148 | int (*pSetObjStatic)(uint32_t, void*, void*); |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 149 | void (*pThrowStackOverflowFromCode)(void*); |
buzbee | 5ade1d2 | 2011-09-09 14:44:52 -0700 | [diff] [blame] | 150 | void (*pThrowNullPointerFromCode)(); |
| 151 | void (*pThrowArrayBoundsFromCode)(int32_t, int32_t); |
| 152 | void (*pThrowDivZeroFromCode)(); |
| 153 | void (*pThrowVerificationErrorFromCode)(int32_t, int32_t); |
| 154 | void (*pThrowNegArraySizeFromCode)(int32_t); |
buzbee | 5ade1d2 | 2011-09-09 14:44:52 -0700 | [diff] [blame] | 155 | void (*pThrowNoSuchMethodFromCode)(int32_t); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 156 | void (*pThrowAbstractMethodErrorFromCode)(Method* method, Thread* thread, Method** sp); |
Ian Rogers | ce9eca6 | 2011-10-07 17:11:03 -0700 | [diff] [blame] | 157 | void (*pUnlockObjectFromCode)(void*); |
Brian Carlstrom | 6a4be3a | 2011-10-20 16:34:03 -0700 | [diff] [blame] | 158 | void* (*pUnresolvedDirectMethodTrampolineFromCode)(int32_t, Method**, Thread*, |
Ian Rogers | ce9eca6 | 2011-10-07 17:11:03 -0700 | [diff] [blame] | 159 | Runtime::TrampolineType); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 160 | |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 161 | class StackVisitor { |
| 162 | public: |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 163 | virtual ~StackVisitor() {} |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 164 | virtual void VisitFrame(const Frame& frame, uintptr_t pc) = 0; |
Shih-wei Liao | 9b576b4 | 2011-08-29 01:45:07 -0700 | [diff] [blame] | 165 | }; |
| 166 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 167 | // Creates a new thread. |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 168 | static void Create(Object* peer, size_t stack_size); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 169 | |
| 170 | // Creates a new thread from the calling thread. |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 171 | static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 172 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 173 | // Reset internal state of child thread after fork. |
| 174 | void InitAfterFork(); |
| 175 | |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 176 | static Thread* Current() { |
Carl Shapiro | d0e7e77 | 2011-07-15 14:31:01 -0700 | [diff] [blame] | 177 | void* thread = pthread_getspecific(Thread::pthread_key_self_); |
| 178 | return reinterpret_cast<Thread*>(thread); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 181 | static Thread* FromManagedThread(JNIEnv* env, jobject thread); |
Elliott Hughes | 8e4aac5 | 2011-09-26 17:03:36 -0700 | [diff] [blame] | 182 | static uint32_t LockOwnerFromThreadLock(Object* thread_lock); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 183 | |
Elliott Hughes | e091855 | 2011-10-28 17:18:29 -0700 | [diff] [blame] | 184 | void Dump(std::ostream& os, bool dump_pending_exception = false) const; |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 185 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 186 | State GetState() const { |
| 187 | return state_; |
| 188 | } |
| 189 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 190 | State SetState(State new_state); |
| 191 | |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 192 | bool IsDaemon(); |
| 193 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 194 | void WaitUntilSuspended(); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 195 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 196 | bool HoldsLock(Object*); |
| 197 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 198 | /* |
| 199 | * Changes the priority of this thread to match that of the java.lang.Thread object. |
| 200 | * |
| 201 | * We map a priority value from 1-10 to Linux "nice" values, where lower |
| 202 | * numbers indicate higher priority. |
| 203 | */ |
| 204 | void SetNativePriority(int newPriority); |
| 205 | |
| 206 | /* |
| 207 | * Returns the thread priority for the current thread by querying the system. |
| 208 | * This is useful when attaching a thread through JNI. |
| 209 | * |
| 210 | * Returns a value from 1 to 10 (compatible with java.lang.Thread values). |
| 211 | */ |
| 212 | static int GetNativePriority(); |
| 213 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 214 | bool CanAccessDirectReferences() const { |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 215 | #ifdef MOVING_GARBAGE_COLLECTOR |
Elliott Hughes | a59d179 | 2011-09-04 18:42:35 -0700 | [diff] [blame] | 216 | // 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] | 217 | #endif |
Elliott Hughes | a59d179 | 2011-09-04 18:42:35 -0700 | [diff] [blame] | 218 | return true; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 221 | uint32_t GetThinLockId() const { |
| 222 | return thin_lock_id_; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 225 | pid_t GetTid() const { |
| 226 | return tid_; |
| 227 | } |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 228 | |
Elliott Hughes | fc86162 | 2011-10-17 17:57:47 -0700 | [diff] [blame] | 229 | // Returns the java.lang.Thread's name, or NULL. |
| 230 | String* GetName() const; |
| 231 | |
Elliott Hughes | d369bb7 | 2011-09-12 14:41:14 -0700 | [diff] [blame] | 232 | Object* GetPeer() const { |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 233 | return peer_; |
| 234 | } |
| 235 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 236 | RuntimeStats* GetStats() { |
| 237 | return &stats_; |
| 238 | } |
| 239 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 240 | // Returns the Method* for the current method. |
| 241 | // This is used by the JNI implementation for logging and diagnostic purposes. |
Elliott Hughes | 9fd66f5 | 2011-10-16 12:13:26 -0700 | [diff] [blame] | 242 | const Method* GetCurrentMethod() const; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 243 | |
jeffhao | 33dc771 | 2011-11-09 17:54:24 -0800 | [diff] [blame] | 244 | uint32_t GetCurrentReturnPc() const; |
| 245 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 246 | bool IsExceptionPending() const { |
Elliott Hughes | b20a554 | 2011-08-12 18:03:12 -0700 | [diff] [blame] | 247 | return exception_ != NULL; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 248 | } |
| 249 | |
Elliott Hughes | e5b0dc8 | 2011-08-23 09:59:02 -0700 | [diff] [blame] | 250 | Throwable* GetException() const { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 251 | DCHECK(CanAccessDirectReferences()); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 252 | return exception_; |
| 253 | } |
| 254 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 255 | void SetException(Throwable* new_exception) { |
| 256 | DCHECK(CanAccessDirectReferences()); |
| 257 | CHECK(new_exception != NULL); |
| 258 | // TODO: CHECK(exception_ == NULL); |
| 259 | exception_ = new_exception; // TODO |
| 260 | } |
| 261 | |
| 262 | void ClearException() { |
| 263 | exception_ = NULL; |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 266 | // Find catch block and perform long jump to appropriate exception handle |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 267 | void DeliverException(); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 268 | |
| 269 | Context* GetLongJumpContext(); |
| 270 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 271 | Frame GetTopOfStack() const { |
| 272 | return top_of_managed_stack_; |
| 273 | } |
| 274 | |
| 275 | // TODO: this is here for testing, remove when we have exception unit tests |
| 276 | // that use the real stack |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 277 | void SetTopOfStack(void* stack, uintptr_t pc) { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 278 | top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack)); |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 279 | top_of_managed_stack_pc_ = pc; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 282 | void SetTopOfStackPC(uintptr_t pc) { |
| 283 | top_of_managed_stack_pc_ = pc; |
| 284 | } |
| 285 | |
Elliott Hughes | 5cb5ad2 | 2011-10-02 12:13:39 -0700 | [diff] [blame] | 286 | // 'msg' may be NULL. |
| 287 | void ThrowNewException(const char* exception_class_descriptor, const char* msg); |
| 288 | |
| 289 | void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 290 | __attribute__((format(printf, 3, 4))); |
Elliott Hughes | a5b897e | 2011-08-16 11:33:06 -0700 | [diff] [blame] | 291 | |
Elliott Hughes | 4a2b417 | 2011-09-20 17:08:25 -0700 | [diff] [blame] | 292 | void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap); |
| 293 | |
Elliott Hughes | 2ced6a5 | 2011-10-16 18:44:48 -0700 | [diff] [blame] | 294 | // OutOfMemoryError is special, because we need to pre-allocate an instance. |
| 295 | void ThrowOutOfMemoryError(const char* msg); |
Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 296 | void ThrowOutOfMemoryError(Class* c, size_t byte_count); |
Elliott Hughes | 79082e3 | 2011-08-25 12:07:32 -0700 | [diff] [blame] | 297 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 298 | Frame FindExceptionHandler(void* throw_pc, void** handler_pc); |
| 299 | |
| 300 | void* FindExceptionHandlerInMethod(const Method* method, |
| 301 | void* throw_pc, |
| 302 | const DexFile& dex_file, |
| 303 | ClassLinker* class_linker); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 304 | |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 305 | void SetName(const char* name); |
| 306 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 307 | static void Startup(); |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 308 | static void FinishStartup(); |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 309 | static void Shutdown(); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 310 | |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 311 | // JNI methods |
Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 312 | JNIEnvExt* GetJniEnv() const { |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 313 | return jni_env_; |
| 314 | } |
| 315 | |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 316 | // Number of references allocated in SIRTs on this thread |
| 317 | size_t NumSirtReferences(); |
Ian Rogers | a8cd9f4 | 2011-08-19 16:43:41 -0700 | [diff] [blame] | 318 | |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 319 | // Is the given obj in this thread's stack indirect reference table? |
| 320 | bool SirtContains(jobject obj); |
| 321 | |
Shih-wei Liao | 8dfc9d5 | 2011-09-28 18:06:15 -0700 | [diff] [blame] | 322 | void SirtVisitRoots(Heap::RootVisitor* visitor, void* arg); |
| 323 | |
Ian Rogers | 408f79a | 2011-08-23 18:22:33 -0700 | [diff] [blame] | 324 | // Convert a jobject into a Object* |
| 325 | Object* DecodeJObject(jobject obj); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 326 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 327 | // Implements java.lang.Thread.interrupted. |
| 328 | bool Interrupted() { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 329 | MutexLock mu(*wait_mutex_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 330 | bool interrupted = interrupted_; |
| 331 | interrupted_ = false; |
| 332 | return interrupted; |
| 333 | } |
| 334 | |
| 335 | // Implements java.lang.Thread.isInterrupted. |
| 336 | bool IsInterrupted() { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 337 | MutexLock mu(*wait_mutex_); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 338 | return interrupted_; |
| 339 | } |
| 340 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 341 | void Interrupt() { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 342 | MutexLock mu(*wait_mutex_); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 343 | if (interrupted_) { |
| 344 | return; |
| 345 | } |
| 346 | interrupted_ = true; |
| 347 | NotifyLocked(); |
| 348 | } |
| 349 | |
| 350 | void Notify() { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 351 | MutexLock mu(*wait_mutex_); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 352 | NotifyLocked(); |
| 353 | } |
| 354 | |
Ian Rogers | 6de0860 | 2011-08-19 14:52:39 -0700 | [diff] [blame] | 355 | // Linked list recording transitions from native to managed code |
Ian Rogers | b04f69f | 2011-10-17 00:40:54 -0700 | [diff] [blame] | 356 | void PushNativeToManagedRecord(NativeToManagedRecord* record); |
| 357 | void PopNativeToManagedRecord(const NativeToManagedRecord& record); |
Ian Rogers | 6de0860 | 2011-08-19 14:52:39 -0700 | [diff] [blame] | 358 | |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 359 | const ClassLoader* GetClassLoaderOverride() { |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 360 | // TODO: need to place the class_loader_override_ in a handle |
| 361 | // DCHECK(CanAccessDirectReferences()); |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 362 | return class_loader_override_; |
| 363 | } |
| 364 | |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 365 | void SetClassLoaderOverride(const ClassLoader* class_loader_override) { |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 366 | class_loader_override_ = class_loader_override; |
| 367 | } |
| 368 | |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 369 | // Create the internal representation of a stack trace, that is more time |
| 370 | // and space efficient to compute than the StackTraceElement[] |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 371 | jobject CreateInternalStackTrace(JNIEnv* env) const; |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 372 | |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 373 | // Convert an internal stack trace representation (returned by CreateInternalStackTrace) to a |
| 374 | // StackTraceElement[]. If output_array is NULL, a new array is created, otherwise as many |
| 375 | // frames as will fit are written into the given array. If stack_depth is non-NULL, it's updated |
| 376 | // with the number of valid frames in the returned array. |
| 377 | static jobjectArray InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal, |
| 378 | jobjectArray output_array = NULL, int* stack_depth = NULL); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 379 | |
Ian Rogers | d6b1f61 | 2011-09-27 13:38:14 -0700 | [diff] [blame] | 380 | void VisitRoots(Heap::RootVisitor* visitor, void* arg); |
Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 381 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 382 | // |
| 383 | // Offsets of various members of native Thread class, used by compiled code. |
| 384 | // |
| 385 | |
| 386 | static ThreadOffset SelfOffset() { |
| 387 | return ThreadOffset(OFFSETOF_MEMBER(Thread, self_)); |
| 388 | } |
| 389 | |
| 390 | static ThreadOffset ExceptionOffset() { |
| 391 | return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_)); |
| 392 | } |
| 393 | |
Elliott Hughes | 54e7df1 | 2011-09-16 11:47:04 -0700 | [diff] [blame] | 394 | static ThreadOffset ThinLockIdOffset() { |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 395 | return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_)); |
| 396 | } |
| 397 | |
| 398 | static ThreadOffset CardTableOffset() { |
| 399 | return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_)); |
| 400 | } |
| 401 | |
| 402 | static ThreadOffset SuspendCountOffset() { |
| 403 | return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_)); |
| 404 | } |
| 405 | |
| 406 | static ThreadOffset StateOffset() { |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 407 | return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_)); |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 408 | } |
| 409 | |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 410 | // Size of stack less any space reserved for stack overflow |
| 411 | size_t GetStackSize() { |
| 412 | return stack_size_ - (stack_end_ - stack_base_); |
| 413 | } |
| 414 | |
| 415 | // Set the stack end to that to be used during a stack overflow |
| 416 | void SetStackEndForStackOverflow() { |
| 417 | // During stack overflow we allow use of the full stack |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 418 | if (stack_end_ == stack_base_) { |
| 419 | DumpStack(std::cerr); |
| 420 | LOG(FATAL) << "Need to increase kStackOverflowReservedBytes (currently " |
| 421 | << kStackOverflowReservedBytes << ")"; |
| 422 | } |
| 423 | |
Ian Rogers | 932746a | 2011-09-22 18:57:50 -0700 | [diff] [blame] | 424 | stack_end_ = stack_base_; |
| 425 | } |
| 426 | |
| 427 | // Set the stack end to that to be used during regular execution |
| 428 | void ResetDefaultStackEnd() { |
| 429 | // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room |
| 430 | // to throw a StackOverflowError. |
| 431 | stack_end_ = stack_base_ + kStackOverflowReservedBytes; |
| 432 | } |
| 433 | |
Elliott Hughes | 449b4bd | 2011-09-09 12:01:38 -0700 | [diff] [blame] | 434 | static ThreadOffset StackEndOffset() { |
| 435 | return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_)); |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | static ThreadOffset JniEnvOffset() { |
| 439 | return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_)); |
| 440 | } |
| 441 | |
| 442 | static ThreadOffset TopOfManagedStackOffset() { |
| 443 | return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) + |
| 444 | OFFSETOF_MEMBER(Frame, sp_)); |
| 445 | } |
| 446 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 447 | static ThreadOffset TopOfManagedStackPcOffset() { |
| 448 | return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_pc_)); |
| 449 | } |
| 450 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 451 | void PushSirt(StackIndirectReferenceTable* sirt); |
| 452 | StackIndirectReferenceTable* PopSirt(); |
| 453 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 454 | static ThreadOffset TopSirtOffset() { |
| 455 | return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_)); |
| 456 | } |
| 457 | |
Shih-wei Liao | 9407c60 | 2011-09-16 10:36:43 -0700 | [diff] [blame] | 458 | void WalkStack(StackVisitor* visitor) const; |
| 459 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 460 | DebugInvokeReq* GetInvokeReq() { |
| 461 | return debug_invoke_req_; |
| 462 | } |
| 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 | 02b48d1 | 2011-09-07 17:15:51 -0700 | [diff] [blame] | 467 | friend class ThreadList; // For ~Thread. |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 468 | |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 469 | void CreatePeer(const char* name, bool as_daemon); |
| 470 | friend class Runtime; // For CreatePeer. |
| 471 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 472 | void DumpState(std::ostream& os) const; |
| 473 | void DumpStack(std::ostream& os) const; |
| 474 | |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 475 | // Out-of-line conveniences for debugging in gdb. |
Elliott Hughes | 498508c | 2011-10-17 14:58:22 -0700 | [diff] [blame] | 476 | static Thread* CurrentFromGdb(); // Like Thread::Current. |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 477 | void DumpFromGdb() const; // Like Thread::Dump(std::cerr). |
| 478 | |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 479 | void Attach(const Runtime* runtime); |
| 480 | static void* CreateCallback(void* arg); |
| 481 | |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 482 | void HandleUncaughtExceptions(); |
Brian Carlstrom | 4514d3c | 2011-10-21 17:01:31 -0700 | [diff] [blame] | 483 | void RemoveFromThreadGroup(); |
Elliott Hughes | accd83d | 2011-10-17 14:25:58 -0700 | [diff] [blame] | 484 | |
Ian Rogers | 5d76c43 | 2011-10-31 21:42:49 -0700 | [diff] [blame] | 485 | void InitCardTable(); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 486 | void InitCpu(); |
buzbee | 3ea4ec5 | 2011-08-22 17:37:19 -0700 | [diff] [blame] | 487 | void InitFunctionPointers(); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 488 | void InitTid(); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 489 | void InitPthreadKeySelf(); |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 490 | void InitStackHwm(); |
| 491 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 492 | void NotifyLocked() { |
| 493 | if (wait_monitor_ != NULL) { |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 494 | wait_cond_->Signal(); |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 495 | } |
| 496 | } |
| 497 | |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 498 | static void ThreadExitCallback(void* arg); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 499 | |
Ian Rogers | 67375ac | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 500 | void WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -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 |
| 553 | byte* stack_base_; |
| 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 | |
| 562 | // Every thread may have an associated JNI environment |
Elliott Hughes | 69f5bc6 | 2011-08-24 09:26:14 -0700 | [diff] [blame] | 563 | JNIEnvExt* jni_env_; |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 564 | |
Elliott Hughes | 93e74e8 | 2011-09-13 11:07:03 -0700 | [diff] [blame] | 565 | volatile State state_; |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 566 | |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 567 | // Initialized to "this". On certain architectures (such as x86) reading |
| 568 | // off of Thread::Current is easy but getting the address of Thread::Current |
| 569 | // is hard. This field can be read off of Thread::Current to give the address. |
| 570 | Thread* self_; |
| 571 | |
| 572 | Runtime* runtime_; |
| 573 | |
| 574 | // The pending exception or NULL. |
Elliott Hughes | e5b0dc8 | 2011-08-23 09:59:02 -0700 | [diff] [blame] | 575 | Throwable* exception_; |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 576 | |
Ian Rogers | 45a76cb | 2011-07-21 22:00:15 -0700 | [diff] [blame] | 577 | // A non-zero value is used to tell the current thread to enter a safe point |
| 578 | // at the next poll. |
| 579 | int suspend_count_; |
Elliott Hughes | 234ab15 | 2011-10-26 14:02:26 -0700 | [diff] [blame] | 580 | // How much of 'suspend_count_' is by request of the debugger, used to set things right |
| 581 | // when the debugger detaches. Must be <= suspend_count_. |
| 582 | int debug_suspend_count_; |
Ian Rogers | 45a76cb | 2011-07-21 22:00:15 -0700 | [diff] [blame] | 583 | |
Elliott Hughes | edcc09c | 2011-08-21 18:47:05 -0700 | [diff] [blame] | 584 | // Needed to get the right ClassLoader in JNI_OnLoad, but also |
| 585 | // useful for testing. |
Brian Carlstrom | bffb155 | 2011-08-25 12:23:53 -0700 | [diff] [blame] | 586 | const ClassLoader* class_loader_override_; |
buzbee | c143c55 | 2011-08-20 17:38:58 -0700 | [diff] [blame] | 587 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 588 | // Thread local, lazily allocated, long jump context. Used to deliver exceptions. |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 589 | Context* long_jump_context_; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 590 | |
Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 591 | // A boolean telling us whether we're recursively throwing OOME. |
Elliott Hughes | 726079d | 2011-10-07 18:43:44 -0700 | [diff] [blame] | 592 | uint32_t throwing_OutOfMemoryError_; |
| 593 | |
| 594 | Throwable* pre_allocated_OutOfMemoryError_; |
Elliott Hughes | 418dfe7 | 2011-10-06 18:56:27 -0700 | [diff] [blame] | 595 | |
Elliott Hughes | 475fc23 | 2011-10-25 15:00:35 -0700 | [diff] [blame] | 596 | // JDWP invoke-during-breakpoint support. |
| 597 | DebugInvokeReq* debug_invoke_req_; |
| 598 | |
Carl Shapiro | 69759ea | 2011-07-21 18:13:35 -0700 | [diff] [blame] | 599 | // TLS key used to retrieve the VM thread object. |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 600 | static pthread_key_t pthread_key_self_; |
| 601 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 602 | DISALLOW_COPY_AND_ASSIGN(Thread); |
| 603 | }; |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 604 | |
Elliott Hughes | 330304d | 2011-08-12 14:28:05 -0700 | [diff] [blame] | 605 | std::ostream& operator<<(std::ostream& os, const Thread& thread); |
Ian Rogers | b033c75 | 2011-07-20 12:22:35 -0700 | [diff] [blame] | 606 | std::ostream& operator<<(std::ostream& os, const Thread::State& state); |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 607 | |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 608 | class ScopedThreadStateChange { |
| 609 | public: |
| 610 | ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) { |
| 611 | old_thread_state_ = thread_->SetState(new_state); |
| 612 | } |
| 613 | |
| 614 | ~ScopedThreadStateChange() { |
| 615 | thread_->SetState(old_thread_state_); |
| 616 | } |
| 617 | |
| 618 | private: |
| 619 | Thread* thread_; |
| 620 | Thread::State old_thread_state_; |
| 621 | DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange); |
| 622 | }; |
| 623 | |
Carl Shapiro | 0e5d75d | 2011-07-06 18:28:37 -0700 | [diff] [blame] | 624 | } // namespace art |
| 625 | |
| 626 | #endif // ART_SRC_THREAD_H_ |