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