blob: 8b642493fc984e10bc15ab799ce1edac2af2286f [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*);
buzbeee1931742011-08-28 21:15:53 -0700203 uint32_t (*pGet32Static)(uint32_t, const Method*);
204 void (*pSet32Static)(uint32_t, const Method*, uint32_t);
205 uint64_t (*pGet64Static)(uint32_t, const Method*);
206 void (*pSet64Static)(uint32_t, const Method*, uint64_t);
207 Object* (*pGetObjStatic)(uint32_t, const Method*);
208 void (*pSetObjStatic)(uint32_t, const Method*, Object*);
buzbeec143c552011-08-20 17:38:58 -0700209 bool (*pArtUnlockObject)(struct Thread*, struct Object*);
210 bool (*pArtCanPutArrayElementNoThrow)(const struct ClassObject*,
buzbee3ea4ec52011-08-22 17:37:19 -0700211 const struct ClassObject*);
212 int (*pArtInstanceofNonTrivialNoThrow) (const struct ClassObject*,
213 const struct ClassObject*);
214 int (*pArtInstanceofNonTrivial) (const struct ClassObject*, const struct ClassObject*);
buzbeec143c552011-08-20 17:38:58 -0700215 struct Method* (*pArtFindInterfaceMethodInCache)(ClassObject*, uint32_t,
buzbee3ea4ec52011-08-22 17:37:19 -0700216 const struct Method*, struct DvmDex*);
buzbeec143c552011-08-20 17:38:58 -0700217 bool (*pArtUnlockObjectNoThrow)(struct Thread*, struct Object*);
218 void (*pArtLockObjectNoThrow)(struct Thread*, struct Object*);
219 struct Object* (*pArtAllocObjectNoThrow)(struct ClassObject*, int);
220 void (*pArtThrowException)(struct Thread*, struct Object*);
buzbeee6d61962011-08-27 11:58:19 -0700221 void (*pArtHandleFillArrayDataNoThrow)(Array*, const uint16_t*);
buzbeec143c552011-08-20 17:38:58 -0700222
Carl Shapiro61e019d2011-07-14 16:53:09 -0700223 // Creates a new thread.
Brian Carlstromb765be02011-08-17 23:54:10 -0700224 static Thread* Create(const Runtime* runtime);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700225
226 // Creates a new thread from the calling thread.
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700227 static Thread* Attach(const Runtime* runtime);
Carl Shapirob5573532011-07-12 18:22:59 -0700228
229 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700230 void* thread = pthread_getspecific(Thread::pthread_key_self_);
231 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700232 }
233
Carl Shapirob5573532011-07-12 18:22:59 -0700234 uint32_t GetId() const {
235 return id_;
236 }
237
Elliott Hughese27955c2011-08-26 15:21:24 -0700238 pid_t GetTid() const;
239
240 pthread_t GetImpl() const {
241 return handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700242 }
243
244 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700245 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700246 }
247
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700248 Throwable* GetException() const {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700249 return exception_;
250 }
251
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700252 Frame GetTopOfStack() const {
253 return top_of_managed_stack_;
254 }
255
256 // TODO: this is here for testing, remove when we have exception unit tests
257 // that use the real stack
258 void SetTopOfStack(void* stack) {
259 top_of_managed_stack_.SetSP(reinterpret_cast<const Method**>(stack));
260 }
261
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700262 void SetException(Throwable* new_exception) {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700263 CHECK(new_exception != NULL);
264 // TODO: CHECK(exception_ == NULL);
265 exception_ = new_exception; // TODO
266 }
267
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700268 void ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700269 __attribute__ ((format(printf, 3, 4)));
270
Elliott Hughes79082e32011-08-25 12:07:32 -0700271 // This exception is special, because we need to pre-allocate an instance.
272 void ThrowOutOfMemoryError();
273
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700274 void ClearException() {
275 exception_ = NULL;
276 }
277
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700278 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
279
280 void* FindExceptionHandlerInMethod(const Method* method,
281 void* throw_pc,
282 const DexFile& dex_file,
283 ClassLinker* class_linker);
284
Ian Rogers45a76cb2011-07-21 22:00:15 -0700285 // Offset of exception within Thread, used by generated code
286 static ThreadOffset ExceptionOffset() {
287 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
288 }
289
buzbeec143c552011-08-20 17:38:58 -0700290 // Offset of id within Thread, used by generated code
291 static ThreadOffset IdOffset() {
292 return ThreadOffset(OFFSETOF_MEMBER(Thread, id_));
293 }
294
295 // Offset of card_table within Thread, used by generated code
296 static ThreadOffset CardTableOffset() {
297 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
298 }
299
Carl Shapirob5573532011-07-12 18:22:59 -0700300 void SetName(const char* name);
301
302 void Suspend();
303
304 bool IsSuspended();
305
306 void Resume();
307
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700308 static bool Startup();
309 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700310
Elliott Hughes330304d2011-08-12 14:28:05 -0700311 State GetState() const {
Carl Shapirob5573532011-07-12 18:22:59 -0700312 return state_;
313 }
314
315 void SetState(State new_state) {
316 state_ = new_state;
317 }
318
Ian Rogers45a76cb2011-07-21 22:00:15 -0700319 static ThreadOffset SuspendCountOffset() {
320 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
321 }
322
Ian Rogersb033c752011-07-20 12:22:35 -0700323 // Offset of state within Thread, used by generated code
324 static ThreadOffset StateOffset() {
325 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
326 }
327
Ian Rogersb033c752011-07-20 12:22:35 -0700328 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700329 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700330 return jni_env_;
331 }
332
333 // Offset of JNI environment within Thread, used by generated code
334 static ThreadOffset JniEnvOffset() {
335 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
336 }
337
Ian Rogers45a76cb2011-07-21 22:00:15 -0700338 // Offset of top of managed stack address, used by generated code
339 static ThreadOffset TopOfManagedStackOffset() {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700340 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
341 OFFSETOF_MEMBER(Frame, sp_));
Ian Rogers45a76cb2011-07-21 22:00:15 -0700342 }
343
Ian Rogers408f79a2011-08-23 18:22:33 -0700344 // Offset of top stack indirect reference table within Thread, used by
345 // generated code
346 static ThreadOffset TopSirtOffset() {
347 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
Ian Rogersb033c752011-07-20 12:22:35 -0700348 }
349
Ian Rogers408f79a2011-08-23 18:22:33 -0700350 // Number of references allocated in SIRTs on this thread
351 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700352
Ian Rogers408f79a2011-08-23 18:22:33 -0700353 // Is the given obj in this thread's stack indirect reference table?
354 bool SirtContains(jobject obj);
355
356 // Convert a jobject into a Object*
357 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700358
Ian Rogers45a76cb2011-07-21 22:00:15 -0700359 // Offset of exception_entry_point_ within Thread, used by generated code
360 static ThreadOffset ExceptionEntryPointOffset() {
361 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
362 }
363
364 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
365 exception_entry_point_ = handler;
366 }
367
368 // Offset of suspend_count_entry_point_ within Thread, used by generated code
369 static ThreadOffset SuspendCountEntryPointOffset() {
370 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
371 }
372
373 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
374 suspend_count_entry_point_ = handler;
375 }
376
377 // Increasing the suspend count, will cause the thread to run to safepoint
378 void IncrementSuspendCount() { suspend_count_++; }
379 void DecrementSuspendCount() { suspend_count_--; }
380
Ian Rogers6de08602011-08-19 14:52:39 -0700381 // Linked list recording transitions from native to managed code
382 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700383 record->last_top_of_managed_stack = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
Ian Rogers6de08602011-08-19 14:52:39 -0700384 record->link = native_to_managed_record_;
385 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700386 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700387 }
388 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
389 native_to_managed_record_ = record.link;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700390 top_of_managed_stack_.SetSP( reinterpret_cast<const Method**>(record.last_top_of_managed_stack) );
Ian Rogers6de08602011-08-19 14:52:39 -0700391 }
392
Brian Carlstrombffb1552011-08-25 12:23:53 -0700393 const ClassLoader* GetClassLoaderOverride() {
buzbeec143c552011-08-20 17:38:58 -0700394 return class_loader_override_;
395 }
396
Brian Carlstrombffb1552011-08-25 12:23:53 -0700397 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700398 class_loader_override_ = class_loader_override;
399 }
400
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700401 struct InternalStackTrace {
402 const Method* method;
403 uintptr_t pc;
404 };
405
406 // Get the top length frames information
407 InternalStackTrace* GetStackTrace(uint16_t length);
408
409 ObjectArray<StackTraceElement>* GetStackTraceElement(uint16_t length, InternalStackTrace *raw_trace);
410
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700411 private:
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700412 Thread()
Elliott Hughes330304d2011-08-12 14:28:05 -0700413 : id_(1234),
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700414 top_of_managed_stack_(),
Ian Rogers6de08602011-08-19 14:52:39 -0700415 native_to_managed_record_(NULL),
Ian Rogers408f79a2011-08-23 18:22:33 -0700416 top_sirt_(NULL),
Elliott Hughes330304d2011-08-12 14:28:05 -0700417 jni_env_(NULL),
418 exception_(NULL),
buzbeec143c552011-08-20 17:38:58 -0700419 suspend_count_(0),
420 class_loader_override_(NULL) {
buzbee3ea4ec52011-08-22 17:37:19 -0700421 InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700422 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700423
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700424 ~Thread();
425 friend class Runtime; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700426
Ian Rogersb033c752011-07-20 12:22:35 -0700427 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700428 void InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700429
Carl Shapiro69759ea2011-07-21 18:13:35 -0700430 // Managed thread id.
431 uint32_t id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700432
buzbeec143c552011-08-20 17:38:58 -0700433 // FIXME: placeholder for the gc cardTable
434 uint32_t card_table_;
435
Ian Rogers45a76cb2011-07-21 22:00:15 -0700436 // Top of the managed stack, written out prior to the state transition from
437 // kRunnable to kNative. Uses include to give the starting point for scanning
438 // a managed stack when a thread is in native code.
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700439 Frame top_of_managed_stack_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700440
Ian Rogers6de08602011-08-19 14:52:39 -0700441 // A linked list (of stack allocated records) recording transitions from
442 // native to managed code.
443 NativeToManagedRecord* native_to_managed_record_;
444
Ian Rogers408f79a2011-08-23 18:22:33 -0700445 // Top of linked list of stack indirect reference tables or NULL for none
446 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700447
448 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700449 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700450
Carl Shapirob5573532011-07-12 18:22:59 -0700451 State state_;
452
Carl Shapiro69759ea2011-07-21 18:13:35 -0700453 // Native thread handle.
Carl Shapiro61e019d2011-07-14 16:53:09 -0700454 pthread_t handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700455
Carl Shapiro69759ea2011-07-21 18:13:35 -0700456 // Initialized to "this". On certain architectures (such as x86) reading
457 // off of Thread::Current is easy but getting the address of Thread::Current
458 // is hard. This field can be read off of Thread::Current to give the address.
459 Thread* self_;
460
461 Runtime* runtime_;
462
463 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700464 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700465
Ian Rogers45a76cb2011-07-21 22:00:15 -0700466 // A non-zero value is used to tell the current thread to enter a safe point
467 // at the next poll.
468 int suspend_count_;
469
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700470 // Needed to get the right ClassLoader in JNI_OnLoad, but also
471 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700472 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700473
Carl Shapiro69759ea2011-07-21 18:13:35 -0700474 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700475 static pthread_key_t pthread_key_self_;
476
Ian Rogers45a76cb2011-07-21 22:00:15 -0700477 // Entry point called when exception_ is set
478 void (*exception_entry_point_)(Method** frame);
479
480 // Entry point called when suspend_count_ is non-zero
481 void (*suspend_count_entry_point_)(Method** frame);
482
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700483 DISALLOW_COPY_AND_ASSIGN(Thread);
484};
Elliott Hughes330304d2011-08-12 14:28:05 -0700485std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700486std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700487
Carl Shapirob5573532011-07-12 18:22:59 -0700488class ThreadList {
489 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700490 static const int kMaxId = 0xFFFF;
491 static const int kInvalidId = 0;
492 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700493
Carl Shapiro61e019d2011-07-14 16:53:09 -0700494 static ThreadList* Create();
495
496 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700497
498 void Register(Thread* thread);
499
500 void Unregister(Thread* thread);
501
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700502 bool Contains(Thread* thread);
503
Carl Shapirob5573532011-07-12 18:22:59 -0700504 void Lock() {
505 lock_->Lock();
506 }
507
508 void Unlock() {
509 lock_->Unlock();
510 };
511
512 private:
513 ThreadList();
514
515 std::list<Thread*> list_;
516
517 Mutex* lock_;
518
519 DISALLOW_COPY_AND_ASSIGN(ThreadList);
520};
521
522class ThreadListLock {
523 public:
524 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
525 : thread_list_(thread_list) {
526 if (current_thread == NULL) { // try to get it from TLS
527 current_thread = Thread::Current();
528 }
529 Thread::State old_state;
530 if (current_thread != NULL) {
531 old_state = current_thread->GetState();
532 current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
533 } else {
534 // happens during VM shutdown
535 old_state = Thread::kUnknown; // TODO: something else
536 }
537 thread_list_->Lock();
538 if (current_thread != NULL) {
539 current_thread->SetState(old_state);
540 }
541 }
542
543 ~ThreadListLock() {
544 thread_list_->Unlock();
545 }
546
Carl Shapirob5573532011-07-12 18:22:59 -0700547 private:
548 ThreadList* thread_list_;
549
550 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
551};
552
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700553} // namespace art
554
555#endif // ART_SRC_THREAD_H_