blob: 23272f12fd36a0ad7cf44f8227a0e60aae5300cd [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"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070014#include "offsets.h"
15#include "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
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070021class Method;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070022class 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 {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700138 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700139 }
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
Elliott Hughes330304d2011-08-12 14:28:05 -0700174 State GetState() const {
Carl Shapirob5573532011-07-12 18:22:59 -0700175 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
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700192 JNIEnv* 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:
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700243 Thread()
Elliott Hughes330304d2011-08-12 14:28:05 -0700244 : id_(1234),
245 top_shb_(NULL),
246 jni_env_(NULL),
247 exception_(NULL),
248 suspend_count_(0) {
Ian Rogersb033c752011-07-20 12:22:35 -0700249 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700250
Ian Rogersdf20fe02011-07-20 20:34:16 -0700251 ~Thread() {
252 delete jni_env_;
253 }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700254
Ian Rogersb033c752011-07-20 12:22:35 -0700255 void InitCpu();
256
Carl Shapiro69759ea2011-07-21 18:13:35 -0700257 // Managed thread id.
258 uint32_t id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700259
Ian Rogers45a76cb2011-07-21 22:00:15 -0700260 // Top of the managed stack, written out prior to the state transition from
261 // kRunnable to kNative. Uses include to give the starting point for scanning
262 // a managed stack when a thread is in native code.
263 void* top_of_managed_stack_;
264
Ian Rogersb033c752011-07-20 12:22:35 -0700265 // Top of linked list of stack handle blocks or NULL for none
266 StackHandleBlock* top_shb_;
267
268 // Every thread may have an associated JNI environment
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700269 JNIEnv* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700270
Carl Shapirob5573532011-07-12 18:22:59 -0700271 State state_;
272
Carl Shapiro69759ea2011-07-21 18:13:35 -0700273 // Native (kernel) thread id.
Carl Shapirob5573532011-07-12 18:22:59 -0700274 pid_t native_id_;
275
Carl Shapiro69759ea2011-07-21 18:13:35 -0700276 // Native thread handle.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700277 pthread_t handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700278
Carl Shapiro69759ea2011-07-21 18:13:35 -0700279 // Initialized to "this". On certain architectures (such as x86) reading
280 // off of Thread::Current is easy but getting the address of Thread::Current
281 // is hard. This field can be read off of Thread::Current to give the address.
282 Thread* self_;
283
284 Runtime* runtime_;
285
286 // The pending exception or NULL.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700287 Object* exception_;
288
Ian Rogers45a76cb2011-07-21 22:00:15 -0700289 // A non-zero value is used to tell the current thread to enter a safe point
290 // at the next poll.
291 int suspend_count_;
292
Carl Shapiro69759ea2011-07-21 18:13:35 -0700293 // The inclusive base of the control stack.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700294 byte* stack_base_;
Carl Shapiro69759ea2011-07-21 18:13:35 -0700295
296 // The exclusive limit of the control stack.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700297 byte* stack_limit_;
298
Carl Shapiro69759ea2011-07-21 18:13:35 -0700299 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700300 static pthread_key_t pthread_key_self_;
301
Ian Rogers45a76cb2011-07-21 22:00:15 -0700302 // Entry point called when exception_ is set
303 void (*exception_entry_point_)(Method** frame);
304
305 // Entry point called when suspend_count_ is non-zero
306 void (*suspend_count_entry_point_)(Method** frame);
307
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700308 DISALLOW_COPY_AND_ASSIGN(Thread);
309};
Elliott Hughes330304d2011-08-12 14:28:05 -0700310std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700311std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700312
Carl Shapirob5573532011-07-12 18:22:59 -0700313class ThreadList {
314 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700315 static const int kMaxId = 0xFFFF;
316 static const int kInvalidId = 0;
317 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700318
Carl Shapiro61e019d2011-07-14 16:53:09 -0700319 static ThreadList* Create();
320
321 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700322
323 void Register(Thread* thread);
324
325 void Unregister(Thread* thread);
326
Carl Shapirob5573532011-07-12 18:22:59 -0700327 void Lock() {
328 lock_->Lock();
329 }
330
331 void Unlock() {
332 lock_->Unlock();
333 };
334
335 private:
336 ThreadList();
337
338 std::list<Thread*> list_;
339
340 Mutex* lock_;
341
342 DISALLOW_COPY_AND_ASSIGN(ThreadList);
343};
344
345class ThreadListLock {
346 public:
347 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
348 : thread_list_(thread_list) {
349 if (current_thread == NULL) { // try to get it from TLS
350 current_thread = Thread::Current();
351 }
352 Thread::State old_state;
353 if (current_thread != NULL) {
354 old_state = current_thread->GetState();
355 current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
356 } else {
357 // happens during VM shutdown
358 old_state = Thread::kUnknown; // TODO: something else
359 }
360 thread_list_->Lock();
361 if (current_thread != NULL) {
362 current_thread->SetState(old_state);
363 }
364 }
365
366 ~ThreadListLock() {
367 thread_list_->Unlock();
368 }
369
Carl Shapirob5573532011-07-12 18:22:59 -0700370 private:
371 ThreadList* thread_list_;
372
373 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
374};
375
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700376} // namespace art
377
378#endif // ART_SRC_THREAD_H_