blob: bb3f63b0378ab568119f71d0f2627382a373137a [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"
Elliott Hughes69f5bc62011-08-24 09:26:14 -070010#include "jni_internal.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070011#include "logging.h"
12#include "macros.h"
Brian Carlstromb765be02011-08-17 23:54:10 -070013#include "mem_map.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
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070018namespace art {
19
Elliott Hughes69f5bc62011-08-24 09:26:14 -070020class Array;
Elliott Hughes37f7a402011-08-22 18:56:01 -070021class Class;
Elliott Hughesedcc09c2011-08-21 18:47:05 -070022class ClassLoader;
Elliott Hughes69f5bc62011-08-24 09:26:14 -070023class JNIEnvExt;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070024class Method;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070025class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070026class Runtime;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027class Thread;
Carl Shapirob5573532011-07-12 18:22:59 -070028class ThreadList;
Elliott Hughese5b0dc82011-08-23 09:59:02 -070029class Throwable;
Shih-wei Liao55df06b2011-08-26 14:39:27 -070030class StackTraceElement;
31template<class T> class ObjectArray;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070032
33class Mutex {
34 public:
35 virtual ~Mutex() {}
36
Carl Shapirob5573532011-07-12 18:22:59 -070037 void Lock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070038
Carl Shapirob5573532011-07-12 18:22:59 -070039 bool TryLock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070040
Carl Shapirob5573532011-07-12 18:22:59 -070041 void Unlock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070042
43 const char* GetName() { return name_; }
44
45 Thread* GetOwner() { return owner_; }
46
Carl Shapirob5573532011-07-12 18:22:59 -070047 static Mutex* Create(const char* name);
48
Elliott Hughes79082e32011-08-25 12:07:32 -070049 // TODO: only needed because we lack a condition variable abstraction.
50 pthread_mutex_t* GetImpl() { return &lock_impl_; }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070051
52 private:
Elliott Hughes18c07532011-08-18 15:50:51 -070053 explicit Mutex(const char* name) : name_(name), owner_(NULL) {}
54
Elliott Hughes79082e32011-08-25 12:07:32 -070055 void SetOwner(Thread* thread) { owner_ = thread; }
56
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070057 const char* name_;
58
59 Thread* owner_;
60
Carl Shapirob5573532011-07-12 18:22:59 -070061 pthread_mutex_t lock_impl_;
62
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070063 DISALLOW_COPY_AND_ASSIGN(Mutex);
64};
65
66class MutexLock {
67 public:
68 explicit MutexLock(Mutex *mu) : mu_(mu) {
69 mu_->Lock();
70 }
71 ~MutexLock() { mu_->Unlock(); }
72 private:
73 Mutex* const mu_;
74 DISALLOW_COPY_AND_ASSIGN(MutexLock);
75};
76
Ian Rogers408f79a2011-08-23 18:22:33 -070077// Stack allocated indirect reference table, allocated within the bridge frame
78// between managed and native code.
79class StackIndirectReferenceTable {
Ian Rogersb033c752011-07-20 12:22:35 -070080 public:
Ian Rogers408f79a2011-08-23 18:22:33 -070081 // Number of references contained within this SIRT
Ian Rogersb033c752011-07-20 12:22:35 -070082 size_t NumberOfReferences() {
83 return number_of_references_;
84 }
85
Ian Rogers408f79a2011-08-23 18:22:33 -070086 // Link to previous SIRT or NULL
87 StackIndirectReferenceTable* Link() {
Ian Rogersb033c752011-07-20 12:22:35 -070088 return link_;
89 }
90
Ian Rogers408f79a2011-08-23 18:22:33 -070091 Object** References() {
92 return references_;
Ian Rogersa8cd9f42011-08-19 16:43:41 -070093 }
94
Ian Rogers408f79a2011-08-23 18:22:33 -070095 // Offset of length within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -070096 static size_t NumberOfReferencesOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -070097 return OFFSETOF_MEMBER(StackIndirectReferenceTable, number_of_references_);
Ian Rogersb033c752011-07-20 12:22:35 -070098 }
99
Ian Rogers408f79a2011-08-23 18:22:33 -0700100 // Offset of link within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -0700101 static size_t LinkOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -0700102 return OFFSETOF_MEMBER(StackIndirectReferenceTable, link_);
Ian Rogersb033c752011-07-20 12:22:35 -0700103 }
104
105 private:
Ian Rogers408f79a2011-08-23 18:22:33 -0700106 StackIndirectReferenceTable() {}
Ian Rogersb033c752011-07-20 12:22:35 -0700107
108 size_t number_of_references_;
Ian Rogers408f79a2011-08-23 18:22:33 -0700109 StackIndirectReferenceTable* link_;
Ian Rogersb033c752011-07-20 12:22:35 -0700110
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700111 // Fake array, really allocated and filled in by jni_compiler.
Ian Rogers408f79a2011-08-23 18:22:33 -0700112 Object* references_[0];
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700113
Ian Rogers408f79a2011-08-23 18:22:33 -0700114 DISALLOW_COPY_AND_ASSIGN(StackIndirectReferenceTable);
Ian Rogersb033c752011-07-20 12:22:35 -0700115};
116
Ian Rogers6de08602011-08-19 14:52:39 -0700117struct NativeToManagedRecord {
118 NativeToManagedRecord* link;
119 void* last_top_of_managed_stack;
120};
121
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700122// Iterator over managed frames up to the first native-to-managed transition
123class Frame {
124 Frame() : sp_(NULL) {}
125
126 const Method* GetMethod() const {
127 return *sp_;
128 }
129
130 bool HasNext() const {
131 return NextMethod() != NULL;
132 }
133
134 void Next();
135
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700136 uintptr_t GetPC() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700137
138 const Method** GetSP() const {
139 return sp_;
140 }
141
142 // TODO: this is here for testing, remove when we have exception unit tests
143 // that use the real stack
144 void SetSP(const Method** sp) {
145 sp_ = sp;
146 }
147
148 private:
149 const Method* NextMethod() const;
150
151 friend class Thread;
152
153 const Method** sp_;
154};
155
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700156class Thread {
157 public:
Carl Shapirob5573532011-07-12 18:22:59 -0700158 enum State {
159 kUnknown = -1,
160 kNew,
161 kRunnable,
162 kBlocked,
163 kWaiting,
164 kTimedWaiting,
Ian Rogersb033c752011-07-20 12:22:35 -0700165 kNative,
Carl Shapirob5573532011-07-12 18:22:59 -0700166 kTerminated,
167 };
168
buzbeec143c552011-08-20 17:38:58 -0700169
Carl Shapiro61e019d2011-07-14 16:53:09 -0700170 static const size_t kDefaultStackSize = 64 * KB;
171
buzbeec143c552011-08-20 17:38:58 -0700172 // Runtime support function pointers
173 void* (*pMemcpy)(void*, const void*, size_t);
buzbee54330722011-08-23 16:46:55 -0700174 uint64_t (*pShlLong)(uint64_t, uint32_t);
175 uint64_t (*pShrLong)(uint64_t, uint32_t);
176 uint64_t (*pUshrLong)(uint64_t, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700177 float (*pI2f)(int);
178 int (*pF2iz)(float);
179 float (*pD2f)(double);
180 double (*pF2d)(float);
181 double (*pI2d)(int);
182 int (*pD2iz)(double);
183 float (*pL2f)(long);
184 double (*pL2d)(long);
185 long long (*pArtF2l)(float);
186 long long (*pArtD2l)(double);
187 float (*pFadd)(float, float);
188 float (*pFsub)(float, float);
189 float (*pFdiv)(float, float);
190 float (*pFmul)(float, float);
191 float (*pFmodf)(float, float);
192 double (*pDadd)(double, double);
193 double (*pDsub)(double, double);
194 double (*pDdiv)(double, double);
195 double (*pDmul)(double, double);
196 double (*pFmod)(double, double);
197 int (*pIdivmod)(int, int);
198 int (*pIdiv)(int, int);
199 long long (*pLdivmod)(long long, long long);
200 bool (*pArtUnlockObject)(struct Thread*, struct Object*);
201 bool (*pArtCanPutArrayElementNoThrow)(const struct ClassObject*,
buzbee3ea4ec52011-08-22 17:37:19 -0700202 const struct ClassObject*);
203 int (*pArtInstanceofNonTrivialNoThrow) (const struct ClassObject*,
204 const struct ClassObject*);
205 int (*pArtInstanceofNonTrivial) (const struct ClassObject*, const struct ClassObject*);
206 Array* (*pArtAllocArrayByClass)(Class*, size_t);
buzbeec143c552011-08-20 17:38:58 -0700207 struct Method* (*pArtFindInterfaceMethodInCache)(ClassObject*, uint32_t,
buzbee3ea4ec52011-08-22 17:37:19 -0700208 const struct Method*, struct DvmDex*);
buzbeec143c552011-08-20 17:38:58 -0700209 bool (*pArtUnlockObjectNoThrow)(struct Thread*, struct Object*);
210 void (*pArtLockObjectNoThrow)(struct Thread*, struct Object*);
211 struct Object* (*pArtAllocObjectNoThrow)(struct ClassObject*, int);
212 void (*pArtThrowException)(struct Thread*, struct Object*);
buzbeee6d61962011-08-27 11:58:19 -0700213 void (*pArtHandleFillArrayDataNoThrow)(Array*, const uint16_t*);
buzbeec143c552011-08-20 17:38:58 -0700214
Carl Shapiro61e019d2011-07-14 16:53:09 -0700215 // Creates a new thread.
Brian Carlstromb765be02011-08-17 23:54:10 -0700216 static Thread* Create(const Runtime* runtime);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700217
218 // Creates a new thread from the calling thread.
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700219 static Thread* Attach(const Runtime* runtime);
Carl Shapirob5573532011-07-12 18:22:59 -0700220
221 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700222 void* thread = pthread_getspecific(Thread::pthread_key_self_);
223 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700224 }
225
Carl Shapirob5573532011-07-12 18:22:59 -0700226 uint32_t GetId() const {
227 return id_;
228 }
229
Elliott Hughese27955c2011-08-26 15:21:24 -0700230 pid_t GetTid() const;
231
232 pthread_t GetImpl() const {
233 return handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700234 }
235
236 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700237 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700238 }
239
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700240 Throwable* GetException() const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700241 return exception_;
242 }
243
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700244 Frame GetTopOfStack() const {
245 return top_of_managed_stack_;
246 }
247
248 // TODO: this is here for testing, remove when we have exception unit tests
249 // that use the real stack
250 void SetTopOfStack(void* stack) {
251 top_of_managed_stack_.SetSP(reinterpret_cast<const Method**>(stack));
252 }
253
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700254 void SetException(Throwable* new_exception) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700255 CHECK(new_exception != NULL);
256 // TODO: CHECK(exception_ == NULL);
257 exception_ = new_exception; // TODO
258 }
259
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700260 void ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700261 __attribute__ ((format(printf, 3, 4)));
262
Elliott Hughes79082e32011-08-25 12:07:32 -0700263 // This exception is special, because we need to pre-allocate an instance.
264 void ThrowOutOfMemoryError();
265
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700266 void ClearException() {
267 exception_ = NULL;
268 }
269
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700270 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
271
272 void* FindExceptionHandlerInMethod(const Method* method,
273 void* throw_pc,
274 const DexFile& dex_file,
275 ClassLinker* class_linker);
276
Ian Rogers45a76cb2011-07-21 22:00:15 -0700277 // Offset of exception within Thread, used by generated code
278 static ThreadOffset ExceptionOffset() {
279 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
280 }
281
buzbeec143c552011-08-20 17:38:58 -0700282 // Offset of id within Thread, used by generated code
283 static ThreadOffset IdOffset() {
284 return ThreadOffset(OFFSETOF_MEMBER(Thread, id_));
285 }
286
287 // Offset of card_table within Thread, used by generated code
288 static ThreadOffset CardTableOffset() {
289 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
290 }
291
Carl Shapirob5573532011-07-12 18:22:59 -0700292 void SetName(const char* name);
293
294 void Suspend();
295
296 bool IsSuspended();
297
298 void Resume();
299
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700300 static bool Startup();
301 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700302
Elliott Hughes330304d2011-08-12 14:28:05 -0700303 State GetState() const {
Carl Shapirob5573532011-07-12 18:22:59 -0700304 return state_;
305 }
306
307 void SetState(State new_state) {
308 state_ = new_state;
309 }
310
Ian Rogers45a76cb2011-07-21 22:00:15 -0700311 static ThreadOffset SuspendCountOffset() {
312 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
313 }
314
Ian Rogersb033c752011-07-20 12:22:35 -0700315 // Offset of state within Thread, used by generated code
316 static ThreadOffset StateOffset() {
317 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
318 }
319
Ian Rogersb033c752011-07-20 12:22:35 -0700320 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700321 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700322 return jni_env_;
323 }
324
325 // Offset of JNI environment within Thread, used by generated code
326 static ThreadOffset JniEnvOffset() {
327 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
328 }
329
Ian Rogers45a76cb2011-07-21 22:00:15 -0700330 // Offset of top of managed stack address, used by generated code
331 static ThreadOffset TopOfManagedStackOffset() {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700332 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
333 OFFSETOF_MEMBER(Frame, sp_));
Ian Rogers45a76cb2011-07-21 22:00:15 -0700334 }
335
Ian Rogers408f79a2011-08-23 18:22:33 -0700336 // Offset of top stack indirect reference table within Thread, used by
337 // generated code
338 static ThreadOffset TopSirtOffset() {
339 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
Ian Rogersb033c752011-07-20 12:22:35 -0700340 }
341
Ian Rogers408f79a2011-08-23 18:22:33 -0700342 // Number of references allocated in SIRTs on this thread
343 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700344
Ian Rogers408f79a2011-08-23 18:22:33 -0700345 // Is the given obj in this thread's stack indirect reference table?
346 bool SirtContains(jobject obj);
347
348 // Convert a jobject into a Object*
349 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700350
Ian Rogers45a76cb2011-07-21 22:00:15 -0700351 // Offset of exception_entry_point_ within Thread, used by generated code
352 static ThreadOffset ExceptionEntryPointOffset() {
353 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
354 }
355
356 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
357 exception_entry_point_ = handler;
358 }
359
360 // Offset of suspend_count_entry_point_ within Thread, used by generated code
361 static ThreadOffset SuspendCountEntryPointOffset() {
362 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
363 }
364
365 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
366 suspend_count_entry_point_ = handler;
367 }
368
369 // Increasing the suspend count, will cause the thread to run to safepoint
370 void IncrementSuspendCount() { suspend_count_++; }
371 void DecrementSuspendCount() { suspend_count_--; }
372
Ian Rogers6de08602011-08-19 14:52:39 -0700373 // Linked list recording transitions from native to managed code
374 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700375 record->last_top_of_managed_stack = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
Ian Rogers6de08602011-08-19 14:52:39 -0700376 record->link = native_to_managed_record_;
377 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700378 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700379 }
380 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
381 native_to_managed_record_ = record.link;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700382 top_of_managed_stack_.SetSP( reinterpret_cast<const Method**>(record.last_top_of_managed_stack) );
Ian Rogers6de08602011-08-19 14:52:39 -0700383 }
384
Brian Carlstrombffb1552011-08-25 12:23:53 -0700385 const ClassLoader* GetClassLoaderOverride() {
buzbeec143c552011-08-20 17:38:58 -0700386 return class_loader_override_;
387 }
388
Brian Carlstrombffb1552011-08-25 12:23:53 -0700389 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700390 class_loader_override_ = class_loader_override;
391 }
392
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700393 struct InternalStackTrace {
394 const Method* method;
395 uintptr_t pc;
396 };
397
398 // Get the top length frames information
399 InternalStackTrace* GetStackTrace(uint16_t length);
400
401 ObjectArray<StackTraceElement>* GetStackTraceElement(uint16_t length, InternalStackTrace *raw_trace);
402
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700403 private:
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700404 Thread()
Elliott Hughes330304d2011-08-12 14:28:05 -0700405 : id_(1234),
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700406 top_of_managed_stack_(),
Ian Rogers6de08602011-08-19 14:52:39 -0700407 native_to_managed_record_(NULL),
Ian Rogers408f79a2011-08-23 18:22:33 -0700408 top_sirt_(NULL),
Elliott Hughes330304d2011-08-12 14:28:05 -0700409 jni_env_(NULL),
410 exception_(NULL),
buzbeec143c552011-08-20 17:38:58 -0700411 suspend_count_(0),
412 class_loader_override_(NULL) {
buzbee3ea4ec52011-08-22 17:37:19 -0700413 InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700414 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700415
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700416 ~Thread();
417 friend class Runtime; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700418
Ian Rogersb033c752011-07-20 12:22:35 -0700419 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700420 void InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700421
Carl Shapiro69759ea2011-07-21 18:13:35 -0700422 // Managed thread id.
423 uint32_t id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700424
buzbeec143c552011-08-20 17:38:58 -0700425 // FIXME: placeholder for the gc cardTable
426 uint32_t card_table_;
427
Ian Rogers45a76cb2011-07-21 22:00:15 -0700428 // Top of the managed stack, written out prior to the state transition from
429 // kRunnable to kNative. Uses include to give the starting point for scanning
430 // a managed stack when a thread is in native code.
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700431 Frame top_of_managed_stack_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700432
Ian Rogers6de08602011-08-19 14:52:39 -0700433 // A linked list (of stack allocated records) recording transitions from
434 // native to managed code.
435 NativeToManagedRecord* native_to_managed_record_;
436
Ian Rogers408f79a2011-08-23 18:22:33 -0700437 // Top of linked list of stack indirect reference tables or NULL for none
438 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700439
440 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700441 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700442
Carl Shapirob5573532011-07-12 18:22:59 -0700443 State state_;
444
Carl Shapiro69759ea2011-07-21 18:13:35 -0700445 // Native thread handle.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700446 pthread_t handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700447
Carl Shapiro69759ea2011-07-21 18:13:35 -0700448 // Initialized to "this". On certain architectures (such as x86) reading
449 // off of Thread::Current is easy but getting the address of Thread::Current
450 // is hard. This field can be read off of Thread::Current to give the address.
451 Thread* self_;
452
453 Runtime* runtime_;
454
455 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700456 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700457
Ian Rogers45a76cb2011-07-21 22:00:15 -0700458 // A non-zero value is used to tell the current thread to enter a safe point
459 // at the next poll.
460 int suspend_count_;
461
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700462 // Needed to get the right ClassLoader in JNI_OnLoad, but also
463 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700464 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700465
Carl Shapiro69759ea2011-07-21 18:13:35 -0700466 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700467 static pthread_key_t pthread_key_self_;
468
Ian Rogers45a76cb2011-07-21 22:00:15 -0700469 // Entry point called when exception_ is set
470 void (*exception_entry_point_)(Method** frame);
471
472 // Entry point called when suspend_count_ is non-zero
473 void (*suspend_count_entry_point_)(Method** frame);
474
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700475 DISALLOW_COPY_AND_ASSIGN(Thread);
476};
Elliott Hughes330304d2011-08-12 14:28:05 -0700477std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700478std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700479
Carl Shapirob5573532011-07-12 18:22:59 -0700480class ThreadList {
481 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700482 static const int kMaxId = 0xFFFF;
483 static const int kInvalidId = 0;
484 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700485
Carl Shapiro61e019d2011-07-14 16:53:09 -0700486 static ThreadList* Create();
487
488 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700489
490 void Register(Thread* thread);
491
492 void Unregister(Thread* thread);
493
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700494 bool Contains(Thread* thread);
495
Carl Shapirob5573532011-07-12 18:22:59 -0700496 void Lock() {
497 lock_->Lock();
498 }
499
500 void Unlock() {
501 lock_->Unlock();
502 };
503
504 private:
505 ThreadList();
506
507 std::list<Thread*> list_;
508
509 Mutex* lock_;
510
511 DISALLOW_COPY_AND_ASSIGN(ThreadList);
512};
513
514class ThreadListLock {
515 public:
516 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
517 : thread_list_(thread_list) {
518 if (current_thread == NULL) { // try to get it from TLS
519 current_thread = Thread::Current();
520 }
521 Thread::State old_state;
522 if (current_thread != NULL) {
523 old_state = current_thread->GetState();
524 current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
525 } else {
526 // happens during VM shutdown
527 old_state = Thread::kUnknown; // TODO: something else
528 }
529 thread_list_->Lock();
530 if (current_thread != NULL) {
531 current_thread->SetState(old_state);
532 }
533 }
534
535 ~ThreadListLock() {
536 thread_list_->Unlock();
537 }
538
Carl Shapirob5573532011-07-12 18:22:59 -0700539 private:
540 ThreadList* thread_list_;
541
542 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
543};
544
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700545} // namespace art
546
547#endif // ART_SRC_THREAD_H_