blob: 054a4cdff362fa62de44a940b1ad725a2477d732 [file] [log] [blame]
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07001// Copyright 2011 Google Inc. All Rights Reserved.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07002
3#ifndef ART_SRC_THREAD_H_
4#define ART_SRC_THREAD_H_
5
Carl Shapirob5573532011-07-12 18:22:59 -07006#include <pthread.h>
Ian Rogersb033c752011-07-20 12:22:35 -07007#include <list>
Carl Shapirob5573532011-07-12 18:22:59 -07008
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07009#include "globals.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070010#include "logging.h"
11#include "macros.h"
Brian Carlstromb765be02011-08-17 23:54:10 -070012#include "mem_map.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070013#include "offsets.h"
14#include "runtime.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070015
Ian Rogersb033c752011-07-20 12:22:35 -070016#include "jni.h"
17
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018namespace art {
19
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070020class Method;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070021class 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
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070044 void SetOwner(Thread* thread) { owner_ = thread; }
45
46 private:
Elliott Hughes18c07532011-08-18 15:50:51 -070047 explicit Mutex(const char* name) : name_(name), owner_(NULL) {}
48
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070049 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.
Brian Carlstromb765be02011-08-17 23:54:10 -0700118 static Thread* Create(const Runtime* runtime);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700119
120 // Creates a new thread from the calling thread.
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700121 static Thread* Attach(const Runtime* runtime);
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 {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700137 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700138 }
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
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700150 void ThrowNewException(const char* exception_class_name, const char* fmt, ...)
151 __attribute__ ((format(printf, 3, 4)));
152
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700153 void ClearException() {
154 exception_ = NULL;
155 }
156
Ian Rogers45a76cb2011-07-21 22:00:15 -0700157 // Offset of exception within Thread, used by generated code
158 static ThreadOffset ExceptionOffset() {
159 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
160 }
161
Carl Shapirob5573532011-07-12 18:22:59 -0700162 void SetName(const char* name);
163
164 void Suspend();
165
166 bool IsSuspended();
167
168 void Resume();
169
170 static bool Init();
171
Carl Shapiro69759ea2011-07-21 18:13:35 -0700172 Runtime* GetRuntime() const {
173 return runtime_;
174 }
175
Elliott Hughes330304d2011-08-12 14:28:05 -0700176 State GetState() const {
Carl Shapirob5573532011-07-12 18:22:59 -0700177 return state_;
178 }
179
180 void SetState(State new_state) {
181 state_ = new_state;
182 }
183
Ian Rogers45a76cb2011-07-21 22:00:15 -0700184 static ThreadOffset SuspendCountOffset() {
185 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
186 }
187
Ian Rogersb033c752011-07-20 12:22:35 -0700188 // Offset of state within Thread, used by generated code
189 static ThreadOffset StateOffset() {
190 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
191 }
192
Ian Rogersb033c752011-07-20 12:22:35 -0700193 // JNI methods
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700194 JNIEnv* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700195 return jni_env_;
196 }
197
198 // Offset of JNI environment within Thread, used by generated code
199 static ThreadOffset JniEnvOffset() {
200 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
201 }
202
Ian Rogers45a76cb2011-07-21 22:00:15 -0700203 // Offset of top of managed stack address, used by generated code
204 static ThreadOffset TopOfManagedStackOffset() {
205 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_));
206 }
207
Ian Rogersb033c752011-07-20 12:22:35 -0700208 // Offset of top stack handle block within Thread, used by generated code
209 static ThreadOffset TopShbOffset() {
210 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_shb_));
211 }
212
213 // Number of references allocated in StackHandleBlocks on this thread
214 size_t NumShbHandles() {
215 size_t count = 0;
216 for (StackHandleBlock* cur = top_shb_; cur; cur = cur->Link()) {
217 count += cur->NumberOfReferences();
218 }
219 return count;
220 }
221
Ian Rogers45a76cb2011-07-21 22:00:15 -0700222 // Offset of exception_entry_point_ within Thread, used by generated code
223 static ThreadOffset ExceptionEntryPointOffset() {
224 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
225 }
226
227 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
228 exception_entry_point_ = handler;
229 }
230
231 // Offset of suspend_count_entry_point_ within Thread, used by generated code
232 static ThreadOffset SuspendCountEntryPointOffset() {
233 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
234 }
235
236 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
237 suspend_count_entry_point_ = handler;
238 }
239
240 // Increasing the suspend count, will cause the thread to run to safepoint
241 void IncrementSuspendCount() { suspend_count_++; }
242 void DecrementSuspendCount() { suspend_count_--; }
243
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700244 private:
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700245 Thread()
Elliott Hughes330304d2011-08-12 14:28:05 -0700246 : id_(1234),
247 top_shb_(NULL),
248 jni_env_(NULL),
249 exception_(NULL),
250 suspend_count_(0) {
Ian Rogersb033c752011-07-20 12:22:35 -0700251 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700252
Ian Rogersdf20fe02011-07-20 20:34:16 -0700253 ~Thread() {
254 delete jni_env_;
255 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700256
Ian Rogersb033c752011-07-20 12:22:35 -0700257 void InitCpu();
258
Carl Shapiro69759ea2011-07-21 18:13:35 -0700259 // Managed thread id.
260 uint32_t id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700261
Ian Rogers45a76cb2011-07-21 22:00:15 -0700262 // Top of the managed stack, written out prior to the state transition from
263 // kRunnable to kNative. Uses include to give the starting point for scanning
264 // a managed stack when a thread is in native code.
265 void* top_of_managed_stack_;
266
Ian Rogersb033c752011-07-20 12:22:35 -0700267 // Top of linked list of stack handle blocks or NULL for none
268 StackHandleBlock* top_shb_;
269
270 // Every thread may have an associated JNI environment
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700271 JNIEnv* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700272
Carl Shapirob5573532011-07-12 18:22:59 -0700273 State state_;
274
Carl Shapiro69759ea2011-07-21 18:13:35 -0700275 // Native (kernel) thread id.
Carl Shapirob5573532011-07-12 18:22:59 -0700276 pid_t native_id_;
277
Carl Shapiro69759ea2011-07-21 18:13:35 -0700278 // Native thread handle.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700279 pthread_t handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700280
Carl Shapiro69759ea2011-07-21 18:13:35 -0700281 // Initialized to "this". On certain architectures (such as x86) reading
282 // off of Thread::Current is easy but getting the address of Thread::Current
283 // is hard. This field can be read off of Thread::Current to give the address.
284 Thread* self_;
285
286 Runtime* runtime_;
287
288 // The pending exception or NULL.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700289 Object* exception_;
290
Ian Rogers45a76cb2011-07-21 22:00:15 -0700291 // A non-zero value is used to tell the current thread to enter a safe point
292 // at the next poll.
293 int suspend_count_;
294
Brian Carlstromb765be02011-08-17 23:54:10 -0700295 // The memory mapping of the stack for non-attached threads.
296 scoped_ptr<MemMap> stack_;
297
Carl Shapiro69759ea2011-07-21 18:13:35 -0700298 // The inclusive base of the control stack.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700299 byte* stack_base_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700300
301 // The exclusive limit of the control stack.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700302 byte* stack_limit_;
303
Carl Shapiro69759ea2011-07-21 18:13:35 -0700304 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700305 static pthread_key_t pthread_key_self_;
306
Ian Rogers45a76cb2011-07-21 22:00:15 -0700307 // Entry point called when exception_ is set
308 void (*exception_entry_point_)(Method** frame);
309
310 // Entry point called when suspend_count_ is non-zero
311 void (*suspend_count_entry_point_)(Method** frame);
312
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700313 DISALLOW_COPY_AND_ASSIGN(Thread);
314};
Elliott Hughes330304d2011-08-12 14:28:05 -0700315std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700316std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700317
Carl Shapirob5573532011-07-12 18:22:59 -0700318class ThreadList {
319 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700320 static const int kMaxId = 0xFFFF;
321 static const int kInvalidId = 0;
322 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700323
Carl Shapiro61e019d2011-07-14 16:53:09 -0700324 static ThreadList* Create();
325
326 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700327
328 void Register(Thread* thread);
329
330 void Unregister(Thread* thread);
331
Carl Shapirob5573532011-07-12 18:22:59 -0700332 void Lock() {
333 lock_->Lock();
334 }
335
336 void Unlock() {
337 lock_->Unlock();
338 };
339
340 private:
341 ThreadList();
342
343 std::list<Thread*> list_;
344
345 Mutex* lock_;
346
347 DISALLOW_COPY_AND_ASSIGN(ThreadList);
348};
349
350class ThreadListLock {
351 public:
352 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
353 : thread_list_(thread_list) {
354 if (current_thread == NULL) { // try to get it from TLS
355 current_thread = Thread::Current();
356 }
357 Thread::State old_state;
358 if (current_thread != NULL) {
359 old_state = current_thread->GetState();
360 current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
361 } else {
362 // happens during VM shutdown
363 old_state = Thread::kUnknown; // TODO: something else
364 }
365 thread_list_->Lock();
366 if (current_thread != NULL) {
367 current_thread->SetState(old_state);
368 }
369 }
370
371 ~ThreadListLock() {
372 thread_list_->Unlock();
373 }
374
Carl Shapirob5573532011-07-12 18:22:59 -0700375 private:
376 ThreadList* thread_list_;
377
378 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
379};
380
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700381} // namespace art
382
383#endif // ART_SRC_THREAD_H_