blob: 3f962d54caeff56ab6ef9a9c29971e7014de14eb [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 Rogersb033c752011-07-20 12:22:35 -070011#include "src/heap.h"
Ian Rogersdf20fe02011-07-20 20:34:16 -070012#include "src/jni_internal.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070013#include "src/logging.h"
14#include "src/macros.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
Carl Shapiro61e019d2011-07-14 16:53:09 -070021class Heap;
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 {
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
Carl Shapirob5573532011-07-12 18:22:59 -0700155 void SetName(const char* name);
156
157 void Suspend();
158
159 bool IsSuspended();
160
161 void Resume();
162
163 static bool Init();
164
Carl Shapirob5573532011-07-12 18:22:59 -0700165 State GetState() {
166 return state_;
167 }
168
169 void SetState(State new_state) {
170 state_ = new_state;
171 }
172
Ian Rogersb033c752011-07-20 12:22:35 -0700173 // Offset of state within Thread, used by generated code
174 static ThreadOffset StateOffset() {
175 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
176 }
177
178 Heap* GetHeap() {
179 return heap_;
180 }
181
182 // JNI methods
Ian Rogersdf20fe02011-07-20 20:34:16 -0700183 JniEnvironment* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700184 return jni_env_;
185 }
186
187 // Offset of JNI environment within Thread, used by generated code
188 static ThreadOffset JniEnvOffset() {
189 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
190 }
191
192 // Offset of top stack handle block within Thread, used by generated code
193 static ThreadOffset TopShbOffset() {
194 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_shb_));
195 }
196
197 // Number of references allocated in StackHandleBlocks on this thread
198 size_t NumShbHandles() {
199 size_t count = 0;
200 for (StackHandleBlock* cur = top_shb_; cur; cur = cur->Link()) {
201 count += cur->NumberOfReferences();
202 }
203 return count;
204 }
205
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700206 private:
Ian Rogersb033c752011-07-20 12:22:35 -0700207 Thread() :
Ian Rogersdf20fe02011-07-20 20:34:16 -0700208 thread_id_(1234), top_shb_(NULL), exception_(NULL) {
209 jni_env_ = new JniEnvironment();
Ian Rogersb033c752011-07-20 12:22: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
217 // Initialized to "this". On certain architectures (such as x86) reading
218 // off of Thread::Current is easy but getting the address of Thread::Current
219 // is hard. This field can be read off of Thread::Current to give the address.
220 Thread* self_;
221
222 uint32_t thread_id_;
223
224 Heap* heap_;
225
226 // Top of linked list of stack handle blocks or NULL for none
227 StackHandleBlock* top_shb_;
228
229 // Every thread may have an associated JNI environment
Ian Rogersdf20fe02011-07-20 20:34:16 -0700230 JniEnvironment* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700231
Carl Shapirob5573532011-07-12 18:22:59 -0700232 State state_;
233
234 uint32_t id_;
235
236 pid_t native_id_;
237
Carl Shapiro61e019d2011-07-14 16:53:09 -0700238 pthread_t handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700239
240 Object* exception_;
241
Carl Shapiro61e019d2011-07-14 16:53:09 -0700242 byte* stack_base_;
243 byte* stack_limit_;
244
Carl Shapirob5573532011-07-12 18:22:59 -0700245 static pthread_key_t pthread_key_self_;
246
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700247 DISALLOW_COPY_AND_ASSIGN(Thread);
248};
Ian Rogersb033c752011-07-20 12:22:35 -0700249std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700250
Carl Shapirob5573532011-07-12 18:22:59 -0700251class ThreadList {
252 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700253 static const int kMaxId = 0xFFFF;
254 static const int kInvalidId = 0;
255 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700256
Carl Shapiro61e019d2011-07-14 16:53:09 -0700257 static ThreadList* Create();
258
259 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700260
261 void Register(Thread* thread);
262
263 void Unregister(Thread* thread);
264
Carl Shapirob5573532011-07-12 18:22:59 -0700265 void Lock() {
266 lock_->Lock();
267 }
268
269 void Unlock() {
270 lock_->Unlock();
271 };
272
273 private:
274 ThreadList();
275
276 std::list<Thread*> list_;
277
278 Mutex* lock_;
279
280 DISALLOW_COPY_AND_ASSIGN(ThreadList);
281};
282
283class ThreadListLock {
284 public:
285 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
286 : thread_list_(thread_list) {
287 if (current_thread == NULL) { // try to get it from TLS
288 current_thread = Thread::Current();
289 }
290 Thread::State old_state;
291 if (current_thread != NULL) {
292 old_state = current_thread->GetState();
293 current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
294 } else {
295 // happens during VM shutdown
296 old_state = Thread::kUnknown; // TODO: something else
297 }
298 thread_list_->Lock();
299 if (current_thread != NULL) {
300 current_thread->SetState(old_state);
301 }
302 }
303
304 ~ThreadListLock() {
305 thread_list_->Unlock();
306 }
307
Carl Shapirob5573532011-07-12 18:22:59 -0700308 private:
309 ThreadList* thread_list_;
310
311 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
312};
313
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700314} // namespace art
315
316#endif // ART_SRC_THREAD_H_