blob: 6095407b4802640e8ba97c185ff4b76b97a3e450 [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>
Elliott Hughesa0957642011-09-02 14:27:33 -07007
Elliott Hughes02b48d12011-09-07 17:15:51 -07008#include <bitset>
Elliott Hughesa0957642011-09-02 14:27:33 -07009#include <iosfwd>
Ian Rogersb033c752011-07-20 12:22:35 -070010#include <list>
Carl Shapirob5573532011-07-12 18:22:59 -070011
Brian Carlstrom1f870082011-08-23 16:02:11 -070012#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070013#include "globals.h"
Elliott Hughes69f5bc62011-08-24 09:26:14 -070014#include "jni_internal.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070015#include "logging.h"
16#include "macros.h"
Brian Carlstromb765be02011-08-17 23:54:10 -070017#include "mem_map.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070018#include "offsets.h"
Ian Rogersb033c752011-07-20 12:22:35 -070019
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070020namespace art {
21
Elliott Hughes69f5bc62011-08-24 09:26:14 -070022class Array;
Elliott Hughes37f7a402011-08-22 18:56:01 -070023class Class;
Brian Carlstrom1f870082011-08-23 16:02:11 -070024class ClassLinker;
Elliott Hughesedcc09c2011-08-21 18:47:05 -070025class ClassLoader;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070026class Method;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070027class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070028class Runtime;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070029class Thread;
Carl Shapirob5573532011-07-12 18:22:59 -070030class ThreadList;
Elliott Hughese5b0dc82011-08-23 09:59:02 -070031class Throwable;
Shih-wei Liao55df06b2011-08-26 14:39:27 -070032class StackTraceElement;
buzbee1da522d2011-09-04 11:22:20 -070033class StaticStorageBase;
34
Shih-wei Liao55df06b2011-08-26 14:39:27 -070035template<class T> class ObjectArray;
Shih-wei Liao44175362011-08-28 16:59:17 -070036template<class T> class PrimitiveArray;
37typedef PrimitiveArray<int32_t> IntArray;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070038
39class Mutex {
40 public:
Elliott Hughesbe759c62011-09-08 19:38:21 -070041 ~Mutex();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070042
Carl Shapirob5573532011-07-12 18:22:59 -070043 void Lock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070044
Carl Shapirob5573532011-07-12 18:22:59 -070045 bool TryLock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070046
Carl Shapirob5573532011-07-12 18:22:59 -070047 void Unlock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070048
49 const char* GetName() { return name_; }
50
Carl Shapirob5573532011-07-12 18:22:59 -070051 static Mutex* Create(const char* name);
52
Elliott Hughesbe759c62011-09-08 19:38:21 -070053 pthread_mutex_t* GetImpl() { return &mutex_; }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070054
55 private:
Elliott Hughes92b3b562011-09-08 16:32:26 -070056 explicit Mutex(const char* name) : name_(name) {}
Elliott Hughes79082e32011-08-25 12:07:32 -070057
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070058 const char* name_;
59
Elliott Hughesbe759c62011-09-08 19:38:21 -070060 pthread_mutex_t mutex_;
Carl Shapirob5573532011-07-12 18:22:59 -070061
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070062 DISALLOW_COPY_AND_ASSIGN(Mutex);
63};
64
65class MutexLock {
66 public:
67 explicit MutexLock(Mutex *mu) : mu_(mu) {
68 mu_->Lock();
69 }
70 ~MutexLock() { mu_->Unlock(); }
71 private:
72 Mutex* const mu_;
73 DISALLOW_COPY_AND_ASSIGN(MutexLock);
74};
75
Ian Rogers408f79a2011-08-23 18:22:33 -070076// Stack allocated indirect reference table, allocated within the bridge frame
77// between managed and native code.
78class StackIndirectReferenceTable {
Ian Rogersb033c752011-07-20 12:22:35 -070079 public:
Ian Rogers408f79a2011-08-23 18:22:33 -070080 // Number of references contained within this SIRT
Ian Rogersb033c752011-07-20 12:22:35 -070081 size_t NumberOfReferences() {
82 return number_of_references_;
83 }
84
Ian Rogers408f79a2011-08-23 18:22:33 -070085 // Link to previous SIRT or NULL
86 StackIndirectReferenceTable* Link() {
Ian Rogersb033c752011-07-20 12:22:35 -070087 return link_;
88 }
89
Ian Rogers408f79a2011-08-23 18:22:33 -070090 Object** References() {
91 return references_;
Ian Rogersa8cd9f42011-08-19 16:43:41 -070092 }
93
Ian Rogers408f79a2011-08-23 18:22:33 -070094 // Offset of length within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -070095 static size_t NumberOfReferencesOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -070096 return OFFSETOF_MEMBER(StackIndirectReferenceTable, number_of_references_);
Ian Rogersb033c752011-07-20 12:22:35 -070097 }
98
Ian Rogers408f79a2011-08-23 18:22:33 -070099 // Offset of link within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -0700100 static size_t LinkOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -0700101 return OFFSETOF_MEMBER(StackIndirectReferenceTable, link_);
Ian Rogersb033c752011-07-20 12:22:35 -0700102 }
103
104 private:
Ian Rogers408f79a2011-08-23 18:22:33 -0700105 StackIndirectReferenceTable() {}
Ian Rogersb033c752011-07-20 12:22:35 -0700106
107 size_t number_of_references_;
Ian Rogers408f79a2011-08-23 18:22:33 -0700108 StackIndirectReferenceTable* link_;
Ian Rogersb033c752011-07-20 12:22:35 -0700109
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700110 // Fake array, really allocated and filled in by jni_compiler.
Ian Rogers408f79a2011-08-23 18:22:33 -0700111 Object* references_[0];
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700112
Ian Rogers408f79a2011-08-23 18:22:33 -0700113 DISALLOW_COPY_AND_ASSIGN(StackIndirectReferenceTable);
Ian Rogersb033c752011-07-20 12:22:35 -0700114};
115
Ian Rogers6de08602011-08-19 14:52:39 -0700116struct NativeToManagedRecord {
117 NativeToManagedRecord* link;
118 void* last_top_of_managed_stack;
119};
120
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700121// Iterator over managed frames up to the first native-to-managed transition
122class Frame {
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700123 public:
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700124 Frame() : sp_(NULL) {}
125
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700126 Method* GetMethod() const {
Elliott Hughesa0957642011-09-02 14:27:33 -0700127 return (sp_ != NULL) ? *sp_ : NULL;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700128 }
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
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700138 Method** GetSP() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700139 return sp_;
140 }
141
142 // TODO: this is here for testing, remove when we have exception unit tests
143 // that use the real stack
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700144 void SetSP(Method** sp) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700145 sp_ = sp;
146 }
147
148 private:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700149 Method* NextMethod() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700150
151 friend class Thread;
152
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700153 Method** sp_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700154};
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
buzbee4a3164f2011-09-03 11:25:10 -0700173 void (*pDebugMe)(Method*, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700174 void* (*pMemcpy)(void*, const void*, size_t);
buzbee54330722011-08-23 16:46:55 -0700175 uint64_t (*pShlLong)(uint64_t, uint32_t);
176 uint64_t (*pShrLong)(uint64_t, uint32_t);
177 uint64_t (*pUshrLong)(uint64_t, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700178 float (*pI2f)(int);
179 int (*pF2iz)(float);
180 float (*pD2f)(double);
181 double (*pF2d)(float);
182 double (*pI2d)(int);
183 int (*pD2iz)(double);
184 float (*pL2f)(long);
185 double (*pL2d)(long);
buzbee1b4c8592011-08-31 10:43:51 -0700186 long long (*pF2l)(float);
187 long long (*pD2l)(double);
buzbeec143c552011-08-20 17:38:58 -0700188 float (*pFadd)(float, float);
189 float (*pFsub)(float, float);
190 float (*pFdiv)(float, float);
191 float (*pFmul)(float, float);
192 float (*pFmodf)(float, float);
193 double (*pDadd)(double, double);
194 double (*pDsub)(double, double);
195 double (*pDdiv)(double, double);
196 double (*pDmul)(double, double);
197 double (*pFmod)(double, double);
198 int (*pIdivmod)(int, int);
199 int (*pIdiv)(int, int);
buzbee439c4fa2011-08-27 15:59:07 -0700200 long long (*pLmul)(long long, long long);
buzbeec143c552011-08-20 17:38:58 -0700201 long long (*pLdivmod)(long long, long long);
buzbeedfd3d702011-08-28 12:56:51 -0700202 Array* (*pAllocFromCode)(uint32_t, Method*, int32_t);
buzbee1da522d2011-09-04 11:22:20 -0700203 Array* (*pCheckAndAllocFromCode)(uint32_t, Method*, int32_t);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700204 Object* (*pAllocObjectFromCode)(uint32_t, Method*);
buzbeee1931742011-08-28 21:15:53 -0700205 uint32_t (*pGet32Static)(uint32_t, const Method*);
206 void (*pSet32Static)(uint32_t, const Method*, uint32_t);
207 uint64_t (*pGet64Static)(uint32_t, const Method*);
208 void (*pSet64Static)(uint32_t, const Method*, uint64_t);
209 Object* (*pGetObjStatic)(uint32_t, const Method*);
210 void (*pSetObjStatic)(uint32_t, const Method*, Object*);
Elliott Hughes0f4c41d2011-09-04 14:58:03 -0700211 void (*pCanPutArrayElementFromCode)(const Class*, const Class*);
buzbee2a475e72011-09-07 17:19:17 -0700212 bool (*pInstanceofNonTrivialFromCode) (const Object*, const Class*);
213 void (*pCheckCastFromCode) (const Class*, const Class*);
buzbee1b4c8592011-08-31 10:43:51 -0700214 Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*);
buzbee2a475e72011-09-07 17:19:17 -0700215 void (*pUnlockObjectFromCode)(Thread*, Object*);
buzbee1b4c8592011-08-31 10:43:51 -0700216 void (*pLockObjectFromCode)(Thread*, Object*);
217 void (*pThrowException)(Thread*, Throwable*);
218 void (*pHandleFillArrayDataFromCode)(Array*, const uint16_t*);
219 Class* (*pInitializeTypeFromCode)(uint32_t, Method*);
buzbee561227c2011-09-02 15:28:19 -0700220 void (*pResolveMethodFromCode)(Method*, uint32_t);
buzbee4a3164f2011-09-03 11:25:10 -0700221 void (*pInvokeInterfaceTrampoline)(void*, void*, void*, void*);
buzbee1da522d2011-09-04 11:22:20 -0700222 StaticStorageBase* (*pInitializeStaticStorage)(uint32_t, const Method*);
buzbee34cd9e52011-09-08 14:31:52 -0700223 Field* (*pFindFieldFromCode)(uint32_t, const Method*);
buzbee0d966cf2011-09-08 17:34:58 -0700224 void (*pCheckSuspendFromCode)(Thread*);
buzbeec143c552011-08-20 17:38:58 -0700225
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700226 class StackVisitor {
227 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700228 virtual ~StackVisitor() {}
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700229 virtual bool VisitFrame(const Frame& frame) = 0;
230 };
231
Carl Shapiro61e019d2011-07-14 16:53:09 -0700232 // Creates a new thread.
Brian Carlstromb765be02011-08-17 23:54:10 -0700233 static Thread* Create(const Runtime* runtime);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700234
235 // Creates a new thread from the calling thread.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700236 static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon);
Carl Shapirob5573532011-07-12 18:22:59 -0700237
238 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700239 void* thread = pthread_getspecific(Thread::pthread_key_self_);
240 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700241 }
242
Elliott Hughesa0957642011-09-02 14:27:33 -0700243 void Dump(std::ostream& os) const;
244
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700245 State GetState() const {
246 return state_;
247 }
248
249 State SetState(State new_state) {
250 State old_state = state_;
251 state_ = new_state;
252 return old_state;
253 }
254
255 bool CanAccessDirectReferences() const {
Elliott Hughesa59d1792011-09-04 18:42:35 -0700256 // TODO: when we have a moving collector, we'll need: return state_ == kRunnable;
257 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700258 }
259
Elliott Hughesdcc24742011-09-07 14:02:44 -0700260 uint32_t GetThinLockId() const {
261 return thin_lock_id_;
Carl Shapirob5573532011-07-12 18:22:59 -0700262 }
263
Elliott Hughesd92bec42011-09-02 17:04:36 -0700264 pid_t GetTid() const {
265 return tid_;
266 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700267
268 pthread_t GetImpl() const {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700269 return pthread_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700270 }
271
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700272 // Returns the Method* for the current method.
273 // This is used by the JNI implementation for logging and diagnostic purposes.
274 const Method* GetCurrentMethod() const {
275 return top_of_managed_stack_.GetMethod();
276 }
277
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700278 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700279 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700280 }
281
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700282 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700283 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700284 return exception_;
285 }
286
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700287 void SetException(Throwable* new_exception) {
288 DCHECK(CanAccessDirectReferences());
289 CHECK(new_exception != NULL);
290 // TODO: CHECK(exception_ == NULL);
291 exception_ = new_exception; // TODO
292 }
293
294 void ClearException() {
295 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700296 }
297
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700298 Frame GetTopOfStack() const {
299 return top_of_managed_stack_;
300 }
301
302 // TODO: this is here for testing, remove when we have exception unit tests
303 // that use the real stack
304 void SetTopOfStack(void* stack) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700305 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700306 }
307
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700308 void ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700309 __attribute__ ((format(printf, 3, 4)));
310
Elliott Hughes79082e32011-08-25 12:07:32 -0700311 // This exception is special, because we need to pre-allocate an instance.
312 void ThrowOutOfMemoryError();
313
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700314 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
315
316 void* FindExceptionHandlerInMethod(const Method* method,
317 void* throw_pc,
318 const DexFile& dex_file,
319 ClassLinker* class_linker);
buzbeec143c552011-08-20 17:38:58 -0700320
Carl Shapirob5573532011-07-12 18:22:59 -0700321 void SetName(const char* name);
322
323 void Suspend();
324
325 bool IsSuspended();
326
327 void Resume();
328
Elliott Hughesbe759c62011-09-08 19:38:21 -0700329 static void Startup();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700330 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700331
Ian Rogersb033c752011-07-20 12:22:35 -0700332 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700333 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700334 return jni_env_;
335 }
336
Ian Rogers408f79a2011-08-23 18:22:33 -0700337 // Number of references allocated in SIRTs on this thread
338 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700339
Ian Rogers408f79a2011-08-23 18:22:33 -0700340 // Is the given obj in this thread's stack indirect reference table?
341 bool SirtContains(jobject obj);
342
343 // Convert a jobject into a Object*
344 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700345
Ian Rogers45a76cb2011-07-21 22:00:15 -0700346 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
347 exception_entry_point_ = handler;
348 }
349
Ian Rogers45a76cb2011-07-21 22:00:15 -0700350 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
351 suspend_count_entry_point_ = handler;
352 }
353
354 // Increasing the suspend count, will cause the thread to run to safepoint
355 void IncrementSuspendCount() { suspend_count_++; }
356 void DecrementSuspendCount() { suspend_count_--; }
357
Ian Rogers6de08602011-08-19 14:52:39 -0700358 // Linked list recording transitions from native to managed code
359 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700360 record->last_top_of_managed_stack = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
Ian Rogers6de08602011-08-19 14:52:39 -0700361 record->link = native_to_managed_record_;
362 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700363 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700364 }
365 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
366 native_to_managed_record_ = record.link;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700367 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(record.last_top_of_managed_stack));
Ian Rogers6de08602011-08-19 14:52:39 -0700368 }
369
Brian Carlstrombffb1552011-08-25 12:23:53 -0700370 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700371 // TODO: need to place the class_loader_override_ in a handle
372 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700373 return class_loader_override_;
374 }
375
Brian Carlstrombffb1552011-08-25 12:23:53 -0700376 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700377 class_loader_override_ = class_loader_override;
378 }
379
Shih-wei Liao44175362011-08-28 16:59:17 -0700380 // Allocate stack trace
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700381 ObjectArray<StackTraceElement>* AllocStackTrace();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700382
Elliott Hughes410c0c82011-09-01 17:58:25 -0700383 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
384
Elliott Hughesbe759c62011-09-08 19:38:21 -0700385 //
386 // Offsets of various members of native Thread class, used by compiled code.
387 //
388
389 static ThreadOffset SelfOffset() {
390 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
391 }
392
393 static ThreadOffset ExceptionOffset() {
394 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
395 }
396
397 static ThreadOffset IdOffset() {
398 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
399 }
400
401 static ThreadOffset CardTableOffset() {
402 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
403 }
404
405 static ThreadOffset SuspendCountOffset() {
406 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
407 }
408
409 static ThreadOffset StateOffset() {
410 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
411 }
412
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700413 static ThreadOffset StackEndOffset() {
414 return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700415 }
416
417 static ThreadOffset JniEnvOffset() {
418 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
419 }
420
421 static ThreadOffset TopOfManagedStackOffset() {
422 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
423 OFFSETOF_MEMBER(Frame, sp_));
424 }
425
426 static ThreadOffset TopSirtOffset() {
427 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
428 }
429
430 static ThreadOffset ExceptionEntryPointOffset() {
431 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
432 }
433
434 static ThreadOffset SuspendCountEntryPointOffset() {
435 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
436 }
437
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700438 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700439 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700440 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700441 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700442
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700443 void CreatePeer(const char* name, bool as_daemon);
444 friend class Runtime; // For CreatePeer.
445
Elliott Hughesd92bec42011-09-02 17:04:36 -0700446 void DumpState(std::ostream& os) const;
447 void DumpStack(std::ostream& os) const;
448
Ian Rogersb033c752011-07-20 12:22:35 -0700449 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700450 void InitFunctionPointers();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700451 void InitStackHwm();
452
453 static void ThreadExitCallback(void* arg);
Ian Rogersb033c752011-07-20 12:22:35 -0700454
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700455 void WalkStack(StackVisitor* visitor);
Shih-wei Liao44175362011-08-28 16:59:17 -0700456
Elliott Hughesdcc24742011-09-07 14:02:44 -0700457 // Thin lock thread id. This is a small integer used by the thin lock implementation.
458 // This is not to be confused with the native thread's tid, nor is it the value returned
459 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
460 // important difference between this id and the ids visible to managed code is that these
461 // ones get reused (to ensure that they fit in the number of bits available).
462 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700463
Elliott Hughesd92bec42011-09-02 17:04:36 -0700464 // System thread id.
465 pid_t tid_;
466
467 // Native thread handle.
Elliott Hughesbe759c62011-09-08 19:38:21 -0700468 pthread_t pthread_;
Elliott Hughesd92bec42011-09-02 17:04:36 -0700469
Elliott Hughesdcc24742011-09-07 14:02:44 -0700470 bool is_daemon_;
471
472 // Our managed peer (an instance of java.lang.Thread).
473 Object* peer_;
474
buzbeec143c552011-08-20 17:38:58 -0700475 // FIXME: placeholder for the gc cardTable
476 uint32_t card_table_;
477
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700478 // The end of this thread's stack. This is the lowest safely-addressable address on the stack.
479 // We leave extra space so there's room for the code that throws StackOverflowError.
480 byte* stack_end_;
Elliott Hughesbe759c62011-09-08 19:38:21 -0700481
Ian Rogers45a76cb2011-07-21 22:00:15 -0700482 // Top of the managed stack, written out prior to the state transition from
483 // kRunnable to kNative. Uses include to give the starting point for scanning
484 // a managed stack when a thread is in native code.
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700485 Frame top_of_managed_stack_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700486
Ian Rogers6de08602011-08-19 14:52:39 -0700487 // A linked list (of stack allocated records) recording transitions from
488 // native to managed code.
489 NativeToManagedRecord* native_to_managed_record_;
490
Ian Rogers408f79a2011-08-23 18:22:33 -0700491 // Top of linked list of stack indirect reference tables or NULL for none
492 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700493
494 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700495 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700496
Carl Shapirob5573532011-07-12 18:22:59 -0700497 State state_;
498
Carl Shapiro69759ea2011-07-21 18:13:35 -0700499 // Initialized to "this". On certain architectures (such as x86) reading
500 // off of Thread::Current is easy but getting the address of Thread::Current
501 // is hard. This field can be read off of Thread::Current to give the address.
502 Thread* self_;
503
504 Runtime* runtime_;
505
506 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700507 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700508
Ian Rogers45a76cb2011-07-21 22:00:15 -0700509 // A non-zero value is used to tell the current thread to enter a safe point
510 // at the next poll.
511 int suspend_count_;
512
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700513 // Needed to get the right ClassLoader in JNI_OnLoad, but also
514 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700515 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700516
Carl Shapiro69759ea2011-07-21 18:13:35 -0700517 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700518 static pthread_key_t pthread_key_self_;
519
Ian Rogers45a76cb2011-07-21 22:00:15 -0700520 // Entry point called when exception_ is set
521 void (*exception_entry_point_)(Method** frame);
522
523 // Entry point called when suspend_count_ is non-zero
524 void (*suspend_count_entry_point_)(Method** frame);
525
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700526 DISALLOW_COPY_AND_ASSIGN(Thread);
527};
Elliott Hughes330304d2011-08-12 14:28:05 -0700528std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700529std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700530
Carl Shapirob5573532011-07-12 18:22:59 -0700531class ThreadList {
532 public:
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700533 static const uint32_t kMaxThreadId = 0xFFFF;
534 static const uint32_t kInvalidId = 0;
535 static const uint32_t kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700536
Carl Shapiro61e019d2011-07-14 16:53:09 -0700537 static ThreadList* Create();
538
539 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700540
Elliott Hughesd92bec42011-09-02 17:04:36 -0700541 void Dump(std::ostream& os);
542
Carl Shapirob5573532011-07-12 18:22:59 -0700543 void Register(Thread* thread);
544
Elliott Hughes02b48d12011-09-07 17:15:51 -0700545 void Unregister();
Carl Shapirob5573532011-07-12 18:22:59 -0700546
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700547 bool Contains(Thread* thread);
548
Elliott Hughes02b48d12011-09-07 17:15:51 -0700549 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
550
551 private:
552 ThreadList();
553
554 uint32_t AllocThreadId();
555 void ReleaseThreadId(uint32_t id);
556
Carl Shapirob5573532011-07-12 18:22:59 -0700557 void Lock() {
558 lock_->Lock();
559 }
560
561 void Unlock() {
562 lock_->Unlock();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700563 }
Carl Shapirob5573532011-07-12 18:22:59 -0700564
565 Mutex* lock_;
566
Elliott Hughes02b48d12011-09-07 17:15:51 -0700567 std::bitset<kMaxThreadId> allocated_ids_;
568 std::list<Thread*> list_;
569
570 friend class Thread;
571 friend class ThreadListLock;
572
Carl Shapirob5573532011-07-12 18:22:59 -0700573 DISALLOW_COPY_AND_ASSIGN(ThreadList);
574};
575
576class ThreadListLock {
577 public:
Elliott Hughes02b48d12011-09-07 17:15:51 -0700578 ThreadListLock(Thread* self = NULL) {
579 if (self == NULL) {
580 // Try to get it from TLS.
581 self = Thread::Current();
Carl Shapirob5573532011-07-12 18:22:59 -0700582 }
583 Thread::State old_state;
Elliott Hughes02b48d12011-09-07 17:15:51 -0700584 if (self != NULL) {
585 old_state = self->SetState(Thread::kWaiting); // TODO: VMWAIT
Carl Shapirob5573532011-07-12 18:22:59 -0700586 } else {
Elliott Hughes02b48d12011-09-07 17:15:51 -0700587 // This happens during VM shutdown.
588 old_state = Thread::kUnknown;
Carl Shapirob5573532011-07-12 18:22:59 -0700589 }
Elliott Hughes02b48d12011-09-07 17:15:51 -0700590 Runtime::Current()->GetThreadList()->Lock();
591 if (self != NULL) {
592 self->SetState(old_state);
Carl Shapirob5573532011-07-12 18:22:59 -0700593 }
594 }
595
596 ~ThreadListLock() {
Elliott Hughes02b48d12011-09-07 17:15:51 -0700597 Runtime::Current()->GetThreadList()->Unlock();
Carl Shapirob5573532011-07-12 18:22:59 -0700598 }
599
Carl Shapirob5573532011-07-12 18:22:59 -0700600 private:
Carl Shapirob5573532011-07-12 18:22:59 -0700601 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
602};
603
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700604class ScopedThreadStateChange {
605 public:
606 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
607 old_thread_state_ = thread_->SetState(new_state);
608 }
609
610 ~ScopedThreadStateChange() {
611 thread_->SetState(old_thread_state_);
612 }
613
614 private:
615 Thread* thread_;
616 Thread::State old_thread_state_;
617 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
618};
619
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700620} // namespace art
621
622#endif // ART_SRC_THREAD_H_