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