blob: 3c6e64b7506d9e6e40babba6fe16ce5f41e36bd0 [file] [log] [blame]
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2// Author: cshapiro@google.com (Carl Shapiro)
3
4#ifndef ART_SRC_THREAD_H_
5#define ART_SRC_THREAD_H_
6
Carl Shapirob5573532011-07-12 18:22:59 -07007#include <pthread.h>
Ian Rogersb033c752011-07-20 12:22:35 -07008#include <list>
Carl Shapirob5573532011-07-12 18:22:59 -07009
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070010#include "src/globals.h"
Ian Rogersdf20fe02011-07-20 20:34:16 -070011#include "src/jni_internal.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070012#include "src/logging.h"
13#include "src/macros.h"
Carl Shapiro69759ea2011-07-21 18:13:35 -070014#include "src/offsets.h"
Carl Shapiro61e019d2011-07-14 16:53:09 -070015#include "src/runtime.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
Ian Rogersb033c752011-07-20 12:22:35 -070017#include "jni.h"
18
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070019namespace art {
20
21class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070022class Runtime;
Ian Rogersb033c752011-07-20 12:22:35 -070023class StackHandleBlock;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070024class Thread;
Carl Shapirob5573532011-07-12 18:22:59 -070025class ThreadList;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070026
27class Mutex {
28 public:
29 virtual ~Mutex() {}
30
Carl Shapirob5573532011-07-12 18:22:59 -070031 void Lock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070032
Carl Shapirob5573532011-07-12 18:22:59 -070033 bool TryLock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070034
Carl Shapirob5573532011-07-12 18:22:59 -070035 void Unlock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070036
37 const char* GetName() { return name_; }
38
39 Thread* GetOwner() { return owner_; }
40
Carl Shapirob5573532011-07-12 18:22:59 -070041 static Mutex* Create(const char* name);
42
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070043 public: // TODO: protected
44 explicit Mutex(const char* name) : name_(name), owner_(NULL) {}
45
46 void SetOwner(Thread* thread) { owner_ = thread; }
47
48 private:
49 const char* name_;
50
51 Thread* owner_;
52
Carl Shapirob5573532011-07-12 18:22:59 -070053 pthread_mutex_t lock_impl_;
54
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070055 DISALLOW_COPY_AND_ASSIGN(Mutex);
56};
57
58class MutexLock {
59 public:
60 explicit MutexLock(Mutex *mu) : mu_(mu) {
61 mu_->Lock();
62 }
63 ~MutexLock() { mu_->Unlock(); }
64 private:
65 Mutex* const mu_;
66 DISALLOW_COPY_AND_ASSIGN(MutexLock);
67};
68
Ian Rogersb033c752011-07-20 12:22:35 -070069// Stack handle blocks are allocated within the bridge frame between managed
70// and native code.
71class StackHandleBlock {
72 public:
73 // Number of references contained within this SHB
74 size_t NumberOfReferences() {
75 return number_of_references_;
76 }
77
78 // Link to previous SHB or NULL
79 StackHandleBlock* Link() {
80 return link_;
81 }
82
83 // Offset of length within SHB, used by generated code
84 static size_t NumberOfReferencesOffset() {
85 return OFFSETOF_MEMBER(StackHandleBlock, number_of_references_);
86 }
87
88 // Offset of link within SHB, used by generated code
89 static size_t LinkOffset() {
90 return OFFSETOF_MEMBER(StackHandleBlock, link_);
91 }
92
93 private:
94 StackHandleBlock() {}
95
96 size_t number_of_references_;
97 StackHandleBlock* link_;
98
99 DISALLOW_COPY_AND_ASSIGN(StackHandleBlock);
100};
101
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700102class Thread {
103 public:
Carl Shapirob5573532011-07-12 18:22:59 -0700104 enum State {
105 kUnknown = -1,
106 kNew,
107 kRunnable,
108 kBlocked,
109 kWaiting,
110 kTimedWaiting,
Ian Rogersb033c752011-07-20 12:22:35 -0700111 kNative,
Carl Shapirob5573532011-07-12 18:22:59 -0700112 kTerminated,
113 };
114
Carl Shapiro61e019d2011-07-14 16:53:09 -0700115 static const size_t kDefaultStackSize = 64 * KB;
116
117 // Creates a new thread.
118 static Thread* Create(size_t stack_size);
119
120 // Creates a new thread from the calling thread.
121 static Thread* Attach();
Carl Shapirob5573532011-07-12 18:22:59 -0700122
123 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700124 void* thread = pthread_getspecific(Thread::pthread_key_self_);
125 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700126 }
127
Carl Shapirob5573532011-07-12 18:22:59 -0700128 uint32_t GetId() const {
129 return id_;
130 }
131
132 pid_t GetNativeId() const {
133 return native_id_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700134 }
135
136 bool IsExceptionPending() const {
137 return false; // TODO exception_ != NULL;
138 }
139
140 Object* GetException() const {
141 return exception_;
142 }
143
144 void SetException(Object* new_exception) {
145 CHECK(new_exception != NULL);
146 // TODO: CHECK(exception_ == NULL);
147 exception_ = new_exception; // TODO
148 }
149
150 void ClearException() {
151 exception_ = NULL;
152 }
153
Carl Shapirob5573532011-07-12 18:22:59 -0700154 void SetName(const char* name);
155
156 void Suspend();
157
158 bool IsSuspended();
159
160 void Resume();
161
162 static bool Init();
163
Carl Shapiro69759ea2011-07-21 18:13:35 -0700164 Runtime* GetRuntime() const {
165 return runtime_;
166 }
167
Carl Shapirob5573532011-07-12 18:22:59 -0700168 State GetState() {
169 return state_;
170 }
171
172 void SetState(State new_state) {
173 state_ = new_state;
174 }
175
Ian Rogersb033c752011-07-20 12:22:35 -0700176 // Offset of state within Thread, used by generated code
177 static ThreadOffset StateOffset() {
178 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
179 }
180
Ian Rogersb033c752011-07-20 12:22:35 -0700181 // JNI methods
Ian Rogersdf20fe02011-07-20 20:34:16 -0700182 JniEnvironment* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700183 return jni_env_;
184 }
185
186 // Offset of JNI environment within Thread, used by generated code
187 static ThreadOffset JniEnvOffset() {
188 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
189 }
190
191 // Offset of top stack handle block within Thread, used by generated code
192 static ThreadOffset TopShbOffset() {
193 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_shb_));
194 }
195
196 // Number of references allocated in StackHandleBlocks on this thread
197 size_t NumShbHandles() {
198 size_t count = 0;
199 for (StackHandleBlock* cur = top_shb_; cur; cur = cur->Link()) {
200 count += cur->NumberOfReferences();
201 }
202 return count;
203 }
204
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700205 private:
Ian Rogersb033c752011-07-20 12:22:35 -0700206 Thread() :
Carl Shapiro69759ea2011-07-21 18:13:35 -0700207 id_(1234), top_shb_(NULL), exception_(NULL) {
Ian Rogersdf20fe02011-07-20 20:34:16 -0700208 jni_env_ = new JniEnvironment();
Ian Rogersb033c752011-07-20 12:22:35 -0700209 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700210
Ian Rogersdf20fe02011-07-20 20:34:16 -0700211 ~Thread() {
212 delete jni_env_;
213 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700214
Ian Rogersb033c752011-07-20 12:22:35 -0700215 void InitCpu();
216
Carl Shapiro69759ea2011-07-21 18:13:35 -0700217 // Managed thread id.
218 uint32_t id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700219
220 // Top of linked list of stack handle blocks or NULL for none
221 StackHandleBlock* top_shb_;
222
223 // Every thread may have an associated JNI environment
Ian Rogersdf20fe02011-07-20 20:34:16 -0700224 JniEnvironment* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700225
Carl Shapirob5573532011-07-12 18:22:59 -0700226 State state_;
227
Carl Shapiro69759ea2011-07-21 18:13:35 -0700228 // Native (kernel) thread id.
Carl Shapirob5573532011-07-12 18:22:59 -0700229 pid_t native_id_;
230
Carl Shapiro69759ea2011-07-21 18:13:35 -0700231 // Native thread handle.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700232 pthread_t handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700233
Carl Shapiro69759ea2011-07-21 18:13:35 -0700234 // Initialized to "this". On certain architectures (such as x86) reading
235 // off of Thread::Current is easy but getting the address of Thread::Current
236 // is hard. This field can be read off of Thread::Current to give the address.
237 Thread* self_;
238
239 Runtime* runtime_;
240
241 // The pending exception or NULL.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700242 Object* exception_;
243
Carl Shapiro69759ea2011-07-21 18:13:35 -0700244 // The inclusive base of the control stack.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700245 byte* stack_base_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700246
247 // The exclusive limit of the control stack.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700248 byte* stack_limit_;
249
Carl Shapiro69759ea2011-07-21 18:13:35 -0700250 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700251 static pthread_key_t pthread_key_self_;
252
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700253 DISALLOW_COPY_AND_ASSIGN(Thread);
254};
Ian Rogersb033c752011-07-20 12:22:35 -0700255std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700256
Carl Shapirob5573532011-07-12 18:22:59 -0700257class ThreadList {
258 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700259 static const int kMaxId = 0xFFFF;
260 static const int kInvalidId = 0;
261 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700262
Carl Shapiro61e019d2011-07-14 16:53:09 -0700263 static ThreadList* Create();
264
265 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700266
267 void Register(Thread* thread);
268
269 void Unregister(Thread* thread);
270
Carl Shapirob5573532011-07-12 18:22:59 -0700271 void Lock() {
272 lock_->Lock();
273 }
274
275 void Unlock() {
276 lock_->Unlock();
277 };
278
279 private:
280 ThreadList();
281
282 std::list<Thread*> list_;
283
284 Mutex* lock_;
285
286 DISALLOW_COPY_AND_ASSIGN(ThreadList);
287};
288
289class ThreadListLock {
290 public:
291 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
292 : thread_list_(thread_list) {
293 if (current_thread == NULL) { // try to get it from TLS
294 current_thread = Thread::Current();
295 }
296 Thread::State old_state;
297 if (current_thread != NULL) {
298 old_state = current_thread->GetState();
299 current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
300 } else {
301 // happens during VM shutdown
302 old_state = Thread::kUnknown; // TODO: something else
303 }
304 thread_list_->Lock();
305 if (current_thread != NULL) {
306 current_thread->SetState(old_state);
307 }
308 }
309
310 ~ThreadListLock() {
311 thread_list_->Unlock();
312 }
313
Carl Shapirob5573532011-07-12 18:22:59 -0700314 private:
315 ThreadList* thread_list_;
316
317 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
318};
319
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700320} // namespace art
321
322#endif // ART_SRC_THREAD_H_