blob: ed2ba12f1f984cd7192be1bba6bafa1c4f951a13 [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
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070010#include "globals.h"
11#include "jni_internal.h"
12#include "logging.h"
13#include "macros.h"
14#include "object.h"
15#include "offsets.h"
16#include "runtime.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070017
Ian Rogersb033c752011-07-20 12:22:35 -070018#include "jni.h"
19
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070020namespace art {
21
22class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070023class Runtime;
Ian Rogersb033c752011-07-20 12:22:35 -070024class StackHandleBlock;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070025class Thread;
Carl Shapirob5573532011-07-12 18:22:59 -070026class ThreadList;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027
28class Mutex {
29 public:
30 virtual ~Mutex() {}
31
Carl Shapirob5573532011-07-12 18:22:59 -070032 void Lock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070033
Carl Shapirob5573532011-07-12 18:22:59 -070034 bool TryLock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070035
Carl Shapirob5573532011-07-12 18:22:59 -070036 void Unlock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070037
38 const char* GetName() { return name_; }
39
40 Thread* GetOwner() { return owner_; }
41
Carl Shapirob5573532011-07-12 18:22:59 -070042 static Mutex* Create(const char* name);
43
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070044 public: // TODO: protected
45 explicit Mutex(const char* name) : name_(name), owner_(NULL) {}
46
47 void SetOwner(Thread* thread) { owner_ = thread; }
48
49 private:
50 const char* name_;
51
52 Thread* owner_;
53
Carl Shapirob5573532011-07-12 18:22:59 -070054 pthread_mutex_t lock_impl_;
55
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070056 DISALLOW_COPY_AND_ASSIGN(Mutex);
57};
58
59class MutexLock {
60 public:
61 explicit MutexLock(Mutex *mu) : mu_(mu) {
62 mu_->Lock();
63 }
64 ~MutexLock() { mu_->Unlock(); }
65 private:
66 Mutex* const mu_;
67 DISALLOW_COPY_AND_ASSIGN(MutexLock);
68};
69
Ian Rogersb033c752011-07-20 12:22:35 -070070// Stack handle blocks are allocated within the bridge frame between managed
71// and native code.
72class StackHandleBlock {
73 public:
74 // Number of references contained within this SHB
75 size_t NumberOfReferences() {
76 return number_of_references_;
77 }
78
79 // Link to previous SHB or NULL
80 StackHandleBlock* Link() {
81 return link_;
82 }
83
84 // Offset of length within SHB, used by generated code
85 static size_t NumberOfReferencesOffset() {
86 return OFFSETOF_MEMBER(StackHandleBlock, number_of_references_);
87 }
88
89 // Offset of link within SHB, used by generated code
90 static size_t LinkOffset() {
91 return OFFSETOF_MEMBER(StackHandleBlock, link_);
92 }
93
94 private:
95 StackHandleBlock() {}
96
97 size_t number_of_references_;
98 StackHandleBlock* link_;
99
100 DISALLOW_COPY_AND_ASSIGN(StackHandleBlock);
101};
102
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700103class Thread {
104 public:
Carl Shapirob5573532011-07-12 18:22:59 -0700105 enum State {
106 kUnknown = -1,
107 kNew,
108 kRunnable,
109 kBlocked,
110 kWaiting,
111 kTimedWaiting,
Ian Rogersb033c752011-07-20 12:22:35 -0700112 kNative,
Carl Shapirob5573532011-07-12 18:22:59 -0700113 kTerminated,
114 };
115
Carl Shapiro61e019d2011-07-14 16:53:09 -0700116 static const size_t kDefaultStackSize = 64 * KB;
117
118 // Creates a new thread.
119 static Thread* Create(size_t stack_size);
120
121 // Creates a new thread from the calling thread.
122 static Thread* Attach();
Carl Shapirob5573532011-07-12 18:22:59 -0700123
124 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700125 void* thread = pthread_getspecific(Thread::pthread_key_self_);
126 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700127 }
128
Carl Shapirob5573532011-07-12 18:22:59 -0700129 uint32_t GetId() const {
130 return id_;
131 }
132
133 pid_t GetNativeId() const {
134 return native_id_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700135 }
136
137 bool IsExceptionPending() const {
138 return false; // TODO exception_ != NULL;
139 }
140
141 Object* GetException() const {
142 return exception_;
143 }
144
145 void SetException(Object* new_exception) {
146 CHECK(new_exception != NULL);
147 // TODO: CHECK(exception_ == NULL);
148 exception_ = new_exception; // TODO
149 }
150
151 void ClearException() {
152 exception_ = NULL;
153 }
154
Ian Rogers45a76cb2011-07-21 22:00:15 -0700155 // Offset of exception within Thread, used by generated code
156 static ThreadOffset ExceptionOffset() {
157 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
158 }
159
Carl Shapirob5573532011-07-12 18:22:59 -0700160 void SetName(const char* name);
161
162 void Suspend();
163
164 bool IsSuspended();
165
166 void Resume();
167
168 static bool Init();
169
Carl Shapiro69759ea2011-07-21 18:13:35 -0700170 Runtime* GetRuntime() const {
171 return runtime_;
172 }
173
Carl Shapirob5573532011-07-12 18:22:59 -0700174 State GetState() {
175 return state_;
176 }
177
178 void SetState(State new_state) {
179 state_ = new_state;
180 }
181
Ian Rogers45a76cb2011-07-21 22:00:15 -0700182 static ThreadOffset SuspendCountOffset() {
183 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
184 }
185
Ian Rogersb033c752011-07-20 12:22:35 -0700186 // Offset of state within Thread, used by generated code
187 static ThreadOffset StateOffset() {
188 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
189 }
190
Ian Rogersb033c752011-07-20 12:22:35 -0700191 // JNI methods
Ian Rogersdf20fe02011-07-20 20:34:16 -0700192 JniEnvironment* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700193 return jni_env_;
194 }
195
196 // Offset of JNI environment within Thread, used by generated code
197 static ThreadOffset JniEnvOffset() {
198 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
199 }
200
Ian Rogers45a76cb2011-07-21 22:00:15 -0700201 // Offset of top of managed stack address, used by generated code
202 static ThreadOffset TopOfManagedStackOffset() {
203 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_));
204 }
205
Ian Rogersb033c752011-07-20 12:22:35 -0700206 // Offset of top stack handle block within Thread, used by generated code
207 static ThreadOffset TopShbOffset() {
208 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_shb_));
209 }
210
211 // Number of references allocated in StackHandleBlocks on this thread
212 size_t NumShbHandles() {
213 size_t count = 0;
214 for (StackHandleBlock* cur = top_shb_; cur; cur = cur->Link()) {
215 count += cur->NumberOfReferences();
216 }
217 return count;
218 }
219
Ian Rogers45a76cb2011-07-21 22:00:15 -0700220 // Offset of exception_entry_point_ within Thread, used by generated code
221 static ThreadOffset ExceptionEntryPointOffset() {
222 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
223 }
224
225 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
226 exception_entry_point_ = handler;
227 }
228
229 // Offset of suspend_count_entry_point_ within Thread, used by generated code
230 static ThreadOffset SuspendCountEntryPointOffset() {
231 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
232 }
233
234 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
235 suspend_count_entry_point_ = handler;
236 }
237
238 // Increasing the suspend count, will cause the thread to run to safepoint
239 void IncrementSuspendCount() { suspend_count_++; }
240 void DecrementSuspendCount() { suspend_count_--; }
241
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700242 private:
Ian Rogersb033c752011-07-20 12:22:35 -0700243 Thread() :
Ian Rogers45a76cb2011-07-21 22:00:15 -0700244 id_(1234), top_shb_(NULL), exception_(NULL), suspend_count_(0) {
Ian Rogersdf20fe02011-07-20 20:34:16 -0700245 jni_env_ = new JniEnvironment();
Ian Rogersb033c752011-07-20 12:22:35 -0700246 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700247
Ian Rogersdf20fe02011-07-20 20:34:16 -0700248 ~Thread() {
249 delete jni_env_;
250 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700251
Ian Rogersb033c752011-07-20 12:22:35 -0700252 void InitCpu();
253
Carl Shapiro69759ea2011-07-21 18:13:35 -0700254 // Managed thread id.
255 uint32_t id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700256
Ian Rogers45a76cb2011-07-21 22:00:15 -0700257 // Top of the managed stack, written out prior to the state transition from
258 // kRunnable to kNative. Uses include to give the starting point for scanning
259 // a managed stack when a thread is in native code.
260 void* top_of_managed_stack_;
261
Ian Rogersb033c752011-07-20 12:22:35 -0700262 // Top of linked list of stack handle blocks or NULL for none
263 StackHandleBlock* top_shb_;
264
265 // Every thread may have an associated JNI environment
Ian Rogersdf20fe02011-07-20 20:34:16 -0700266 JniEnvironment* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700267
Carl Shapirob5573532011-07-12 18:22:59 -0700268 State state_;
269
Carl Shapiro69759ea2011-07-21 18:13:35 -0700270 // Native (kernel) thread id.
Carl Shapirob5573532011-07-12 18:22:59 -0700271 pid_t native_id_;
272
Carl Shapiro69759ea2011-07-21 18:13:35 -0700273 // Native thread handle.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700274 pthread_t handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700275
Carl Shapiro69759ea2011-07-21 18:13:35 -0700276 // Initialized to "this". On certain architectures (such as x86) reading
277 // off of Thread::Current is easy but getting the address of Thread::Current
278 // is hard. This field can be read off of Thread::Current to give the address.
279 Thread* self_;
280
281 Runtime* runtime_;
282
283 // The pending exception or NULL.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700284 Object* exception_;
285
Ian Rogers45a76cb2011-07-21 22:00:15 -0700286 // A non-zero value is used to tell the current thread to enter a safe point
287 // at the next poll.
288 int suspend_count_;
289
Carl Shapiro69759ea2011-07-21 18:13:35 -0700290 // The inclusive base of the control stack.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700291 byte* stack_base_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700292
293 // The exclusive limit of the control stack.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700294 byte* stack_limit_;
295
Carl Shapiro69759ea2011-07-21 18:13:35 -0700296 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700297 static pthread_key_t pthread_key_self_;
298
Ian Rogers45a76cb2011-07-21 22:00:15 -0700299 // Entry point called when exception_ is set
300 void (*exception_entry_point_)(Method** frame);
301
302 // Entry point called when suspend_count_ is non-zero
303 void (*suspend_count_entry_point_)(Method** frame);
304
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700305 DISALLOW_COPY_AND_ASSIGN(Thread);
306};
Ian Rogersb033c752011-07-20 12:22:35 -0700307std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700308
Carl Shapirob5573532011-07-12 18:22:59 -0700309class ThreadList {
310 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700311 static const int kMaxId = 0xFFFF;
312 static const int kInvalidId = 0;
313 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700314
Carl Shapiro61e019d2011-07-14 16:53:09 -0700315 static ThreadList* Create();
316
317 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700318
319 void Register(Thread* thread);
320
321 void Unregister(Thread* thread);
322
Carl Shapirob5573532011-07-12 18:22:59 -0700323 void Lock() {
324 lock_->Lock();
325 }
326
327 void Unlock() {
328 lock_->Unlock();
329 };
330
331 private:
332 ThreadList();
333
334 std::list<Thread*> list_;
335
336 Mutex* lock_;
337
338 DISALLOW_COPY_AND_ASSIGN(ThreadList);
339};
340
341class ThreadListLock {
342 public:
343 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
344 : thread_list_(thread_list) {
345 if (current_thread == NULL) { // try to get it from TLS
346 current_thread = Thread::Current();
347 }
348 Thread::State old_state;
349 if (current_thread != NULL) {
350 old_state = current_thread->GetState();
351 current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
352 } else {
353 // happens during VM shutdown
354 old_state = Thread::kUnknown; // TODO: something else
355 }
356 thread_list_->Lock();
357 if (current_thread != NULL) {
358 current_thread->SetState(old_state);
359 }
360 }
361
362 ~ThreadListLock() {
363 thread_list_->Unlock();
364 }
365
Carl Shapirob5573532011-07-12 18:22:59 -0700366 private:
367 ThreadList* thread_list_;
368
369 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
370};
371
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700372} // namespace art
373
374#endif // ART_SRC_THREAD_H_