blob: 6e145fd547446ffbb221e577c6e1ee19d9790a7f [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);
buzbee439c4fa2011-08-27 15:59:07 -0700199 long long (*pLmul)(long long, long long);
buzbeec143c552011-08-20 17:38:58 -0700200 long long (*pLdivmod)(long long, long long);
buzbeedfd3d702011-08-28 12:56:51 -0700201 Array* (*pAllocFromCode)(uint32_t, Method*, int32_t);
202 Object* (*pNewInstanceFromCode)(uint32_t, Method*);
buzbeec143c552011-08-20 17:38:58 -0700203 bool (*pArtUnlockObject)(struct Thread*, struct Object*);
204 bool (*pArtCanPutArrayElementNoThrow)(const struct ClassObject*,
buzbee3ea4ec52011-08-22 17:37:19 -0700205 const struct ClassObject*);
206 int (*pArtInstanceofNonTrivialNoThrow) (const struct ClassObject*,
207 const struct ClassObject*);
208 int (*pArtInstanceofNonTrivial) (const struct ClassObject*, const struct ClassObject*);
buzbeec143c552011-08-20 17:38:58 -0700209 struct Method* (*pArtFindInterfaceMethodInCache)(ClassObject*, uint32_t,
buzbee3ea4ec52011-08-22 17:37:19 -0700210 const struct Method*, struct DvmDex*);
buzbeec143c552011-08-20 17:38:58 -0700211 bool (*pArtUnlockObjectNoThrow)(struct Thread*, struct Object*);
212 void (*pArtLockObjectNoThrow)(struct Thread*, struct Object*);
213 struct Object* (*pArtAllocObjectNoThrow)(struct ClassObject*, int);
214 void (*pArtThrowException)(struct Thread*, struct Object*);
buzbeee6d61962011-08-27 11:58:19 -0700215 void (*pArtHandleFillArrayDataNoThrow)(Array*, const uint16_t*);
buzbeec143c552011-08-20 17:38:58 -0700216
Carl Shapiro61e019d2011-07-14 16:53:09 -0700217 // Creates a new thread.
Brian Carlstromb765be02011-08-17 23:54:10 -0700218 static Thread* Create(const Runtime* runtime);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700219
220 // Creates a new thread from the calling thread.
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700221 static Thread* Attach(const Runtime* runtime);
Carl Shapirob5573532011-07-12 18:22:59 -0700222
223 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700224 void* thread = pthread_getspecific(Thread::pthread_key_self_);
225 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700226 }
227
Carl Shapirob5573532011-07-12 18:22:59 -0700228 uint32_t GetId() const {
229 return id_;
230 }
231
Elliott Hughese27955c2011-08-26 15:21:24 -0700232 pid_t GetTid() const;
233
234 pthread_t GetImpl() const {
235 return handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700236 }
237
238 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700239 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700240 }
241
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700242 Throwable* GetException() const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700243 return exception_;
244 }
245
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700246 Frame GetTopOfStack() const {
247 return top_of_managed_stack_;
248 }
249
250 // TODO: this is here for testing, remove when we have exception unit tests
251 // that use the real stack
252 void SetTopOfStack(void* stack) {
253 top_of_managed_stack_.SetSP(reinterpret_cast<const Method**>(stack));
254 }
255
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700256 void SetException(Throwable* new_exception) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700257 CHECK(new_exception != NULL);
258 // TODO: CHECK(exception_ == NULL);
259 exception_ = new_exception; // TODO
260 }
261
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700262 void ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700263 __attribute__ ((format(printf, 3, 4)));
264
Elliott Hughes79082e32011-08-25 12:07:32 -0700265 // This exception is special, because we need to pre-allocate an instance.
266 void ThrowOutOfMemoryError();
267
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700268 void ClearException() {
269 exception_ = NULL;
270 }
271
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700272 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
273
274 void* FindExceptionHandlerInMethod(const Method* method,
275 void* throw_pc,
276 const DexFile& dex_file,
277 ClassLinker* class_linker);
278
Ian Rogers45a76cb2011-07-21 22:00:15 -0700279 // Offset of exception within Thread, used by generated code
280 static ThreadOffset ExceptionOffset() {
281 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
282 }
283
buzbeec143c552011-08-20 17:38:58 -0700284 // Offset of id within Thread, used by generated code
285 static ThreadOffset IdOffset() {
286 return ThreadOffset(OFFSETOF_MEMBER(Thread, id_));
287 }
288
289 // Offset of card_table within Thread, used by generated code
290 static ThreadOffset CardTableOffset() {
291 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
292 }
293
Carl Shapirob5573532011-07-12 18:22:59 -0700294 void SetName(const char* name);
295
296 void Suspend();
297
298 bool IsSuspended();
299
300 void Resume();
301
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700302 static bool Startup();
303 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700304
Elliott Hughes330304d2011-08-12 14:28:05 -0700305 State GetState() const {
Carl Shapirob5573532011-07-12 18:22:59 -0700306 return state_;
307 }
308
309 void SetState(State new_state) {
310 state_ = new_state;
311 }
312
Ian Rogers45a76cb2011-07-21 22:00:15 -0700313 static ThreadOffset SuspendCountOffset() {
314 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
315 }
316
Ian Rogersb033c752011-07-20 12:22:35 -0700317 // Offset of state within Thread, used by generated code
318 static ThreadOffset StateOffset() {
319 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
320 }
321
Ian Rogersb033c752011-07-20 12:22:35 -0700322 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700323 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700324 return jni_env_;
325 }
326
327 // Offset of JNI environment within Thread, used by generated code
328 static ThreadOffset JniEnvOffset() {
329 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
330 }
331
Ian Rogers45a76cb2011-07-21 22:00:15 -0700332 // Offset of top of managed stack address, used by generated code
333 static ThreadOffset TopOfManagedStackOffset() {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700334 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
335 OFFSETOF_MEMBER(Frame, sp_));
Ian Rogers45a76cb2011-07-21 22:00:15 -0700336 }
337
Ian Rogers408f79a2011-08-23 18:22:33 -0700338 // Offset of top stack indirect reference table within Thread, used by
339 // generated code
340 static ThreadOffset TopSirtOffset() {
341 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
Ian Rogersb033c752011-07-20 12:22:35 -0700342 }
343
Ian Rogers408f79a2011-08-23 18:22:33 -0700344 // Number of references allocated in SIRTs on this thread
345 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700346
Ian Rogers408f79a2011-08-23 18:22:33 -0700347 // Is the given obj in this thread's stack indirect reference table?
348 bool SirtContains(jobject obj);
349
350 // Convert a jobject into a Object*
351 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700352
Ian Rogers45a76cb2011-07-21 22:00:15 -0700353 // Offset of exception_entry_point_ within Thread, used by generated code
354 static ThreadOffset ExceptionEntryPointOffset() {
355 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
356 }
357
358 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
359 exception_entry_point_ = handler;
360 }
361
362 // Offset of suspend_count_entry_point_ within Thread, used by generated code
363 static ThreadOffset SuspendCountEntryPointOffset() {
364 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
365 }
366
367 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
368 suspend_count_entry_point_ = handler;
369 }
370
371 // Increasing the suspend count, will cause the thread to run to safepoint
372 void IncrementSuspendCount() { suspend_count_++; }
373 void DecrementSuspendCount() { suspend_count_--; }
374
Ian Rogers6de08602011-08-19 14:52:39 -0700375 // Linked list recording transitions from native to managed code
376 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700377 record->last_top_of_managed_stack = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
Ian Rogers6de08602011-08-19 14:52:39 -0700378 record->link = native_to_managed_record_;
379 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700380 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700381 }
382 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
383 native_to_managed_record_ = record.link;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700384 top_of_managed_stack_.SetSP( reinterpret_cast<const Method**>(record.last_top_of_managed_stack) );
Ian Rogers6de08602011-08-19 14:52:39 -0700385 }
386
Brian Carlstrombffb1552011-08-25 12:23:53 -0700387 const ClassLoader* GetClassLoaderOverride() {
buzbeec143c552011-08-20 17:38:58 -0700388 return class_loader_override_;
389 }
390
Brian Carlstrombffb1552011-08-25 12:23:53 -0700391 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700392 class_loader_override_ = class_loader_override;
393 }
394
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700395 struct InternalStackTrace {
396 const Method* method;
397 uintptr_t pc;
398 };
399
400 // Get the top length frames information
401 InternalStackTrace* GetStackTrace(uint16_t length);
402
403 ObjectArray<StackTraceElement>* GetStackTraceElement(uint16_t length, InternalStackTrace *raw_trace);
404
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700405 private:
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700406 Thread()
Elliott Hughes330304d2011-08-12 14:28:05 -0700407 : id_(1234),
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700408 top_of_managed_stack_(),
Ian Rogers6de08602011-08-19 14:52:39 -0700409 native_to_managed_record_(NULL),
Ian Rogers408f79a2011-08-23 18:22:33 -0700410 top_sirt_(NULL),
Elliott Hughes330304d2011-08-12 14:28:05 -0700411 jni_env_(NULL),
412 exception_(NULL),
buzbeec143c552011-08-20 17:38:58 -0700413 suspend_count_(0),
414 class_loader_override_(NULL) {
buzbee3ea4ec52011-08-22 17:37:19 -0700415 InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700416 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700417
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700418 ~Thread();
419 friend class Runtime; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700420
Ian Rogersb033c752011-07-20 12:22:35 -0700421 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700422 void InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700423
Carl Shapiro69759ea2011-07-21 18:13:35 -0700424 // Managed thread id.
425 uint32_t id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700426
buzbeec143c552011-08-20 17:38:58 -0700427 // FIXME: placeholder for the gc cardTable
428 uint32_t card_table_;
429
Ian Rogers45a76cb2011-07-21 22:00:15 -0700430 // Top of the managed stack, written out prior to the state transition from
431 // kRunnable to kNative. Uses include to give the starting point for scanning
432 // a managed stack when a thread is in native code.
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700433 Frame top_of_managed_stack_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700434
Ian Rogers6de08602011-08-19 14:52:39 -0700435 // A linked list (of stack allocated records) recording transitions from
436 // native to managed code.
437 NativeToManagedRecord* native_to_managed_record_;
438
Ian Rogers408f79a2011-08-23 18:22:33 -0700439 // Top of linked list of stack indirect reference tables or NULL for none
440 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700441
442 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700443 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700444
Carl Shapirob5573532011-07-12 18:22:59 -0700445 State state_;
446
Carl Shapiro69759ea2011-07-21 18:13:35 -0700447 // Native thread handle.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700448 pthread_t handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700449
Carl Shapiro69759ea2011-07-21 18:13:35 -0700450 // Initialized to "this". On certain architectures (such as x86) reading
451 // off of Thread::Current is easy but getting the address of Thread::Current
452 // is hard. This field can be read off of Thread::Current to give the address.
453 Thread* self_;
454
455 Runtime* runtime_;
456
457 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700458 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700459
Ian Rogers45a76cb2011-07-21 22:00:15 -0700460 // A non-zero value is used to tell the current thread to enter a safe point
461 // at the next poll.
462 int suspend_count_;
463
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700464 // Needed to get the right ClassLoader in JNI_OnLoad, but also
465 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700466 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700467
Carl Shapiro69759ea2011-07-21 18:13:35 -0700468 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700469 static pthread_key_t pthread_key_self_;
470
Ian Rogers45a76cb2011-07-21 22:00:15 -0700471 // Entry point called when exception_ is set
472 void (*exception_entry_point_)(Method** frame);
473
474 // Entry point called when suspend_count_ is non-zero
475 void (*suspend_count_entry_point_)(Method** frame);
476
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700477 DISALLOW_COPY_AND_ASSIGN(Thread);
478};
Elliott Hughes330304d2011-08-12 14:28:05 -0700479std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700480std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700481
Carl Shapirob5573532011-07-12 18:22:59 -0700482class ThreadList {
483 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700484 static const int kMaxId = 0xFFFF;
485 static const int kInvalidId = 0;
486 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700487
Carl Shapiro61e019d2011-07-14 16:53:09 -0700488 static ThreadList* Create();
489
490 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700491
492 void Register(Thread* thread);
493
494 void Unregister(Thread* thread);
495
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700496 bool Contains(Thread* thread);
497
Carl Shapirob5573532011-07-12 18:22:59 -0700498 void Lock() {
499 lock_->Lock();
500 }
501
502 void Unlock() {
503 lock_->Unlock();
504 };
505
506 private:
507 ThreadList();
508
509 std::list<Thread*> list_;
510
511 Mutex* lock_;
512
513 DISALLOW_COPY_AND_ASSIGN(ThreadList);
514};
515
516class ThreadListLock {
517 public:
518 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
519 : thread_list_(thread_list) {
520 if (current_thread == NULL) { // try to get it from TLS
521 current_thread = Thread::Current();
522 }
523 Thread::State old_state;
524 if (current_thread != NULL) {
525 old_state = current_thread->GetState();
526 current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
527 } else {
528 // happens during VM shutdown
529 old_state = Thread::kUnknown; // TODO: something else
530 }
531 thread_list_->Lock();
532 if (current_thread != NULL) {
533 current_thread->SetState(old_state);
534 }
535 }
536
537 ~ThreadListLock() {
538 thread_list_->Unlock();
539 }
540
Carl Shapirob5573532011-07-12 18:22:59 -0700541 private:
542 ThreadList* thread_list_;
543
544 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
545};
546
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700547} // namespace art
548
549#endif // ART_SRC_THREAD_H_