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