blob: b255d6b2ecf00e3a19fae3e1ba494286d29406d1 [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:
41 virtual ~Mutex() {}
42
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
51 Thread* GetOwner() { return owner_; }
52
Elliott Hughes02b48d12011-09-07 17:15:51 -070053 bool HaveLock();
54
Carl Shapirob5573532011-07-12 18:22:59 -070055 static Mutex* Create(const char* name);
56
Elliott Hughes79082e32011-08-25 12:07:32 -070057 // TODO: only needed because we lack a condition variable abstraction.
58 pthread_mutex_t* GetImpl() { return &lock_impl_; }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070059
60 private:
Elliott Hughes18c07532011-08-18 15:50:51 -070061 explicit Mutex(const char* name) : name_(name), owner_(NULL) {}
62
Elliott Hughes79082e32011-08-25 12:07:32 -070063 void SetOwner(Thread* thread) { owner_ = thread; }
64
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070065 const char* name_;
66
67 Thread* owner_;
68
Carl Shapirob5573532011-07-12 18:22:59 -070069 pthread_mutex_t lock_impl_;
70
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070071 DISALLOW_COPY_AND_ASSIGN(Mutex);
72};
73
74class MutexLock {
75 public:
76 explicit MutexLock(Mutex *mu) : mu_(mu) {
77 mu_->Lock();
78 }
79 ~MutexLock() { mu_->Unlock(); }
80 private:
81 Mutex* const mu_;
82 DISALLOW_COPY_AND_ASSIGN(MutexLock);
83};
84
Ian Rogers408f79a2011-08-23 18:22:33 -070085// Stack allocated indirect reference table, allocated within the bridge frame
86// between managed and native code.
87class StackIndirectReferenceTable {
Ian Rogersb033c752011-07-20 12:22:35 -070088 public:
Ian Rogers408f79a2011-08-23 18:22:33 -070089 // Number of references contained within this SIRT
Ian Rogersb033c752011-07-20 12:22:35 -070090 size_t NumberOfReferences() {
91 return number_of_references_;
92 }
93
Ian Rogers408f79a2011-08-23 18:22:33 -070094 // Link to previous SIRT or NULL
95 StackIndirectReferenceTable* Link() {
Ian Rogersb033c752011-07-20 12:22:35 -070096 return link_;
97 }
98
Ian Rogers408f79a2011-08-23 18:22:33 -070099 Object** References() {
100 return references_;
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700101 }
102
Ian Rogers408f79a2011-08-23 18:22:33 -0700103 // Offset of length within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -0700104 static size_t NumberOfReferencesOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -0700105 return OFFSETOF_MEMBER(StackIndirectReferenceTable, number_of_references_);
Ian Rogersb033c752011-07-20 12:22:35 -0700106 }
107
Ian Rogers408f79a2011-08-23 18:22:33 -0700108 // Offset of link within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -0700109 static size_t LinkOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -0700110 return OFFSETOF_MEMBER(StackIndirectReferenceTable, link_);
Ian Rogersb033c752011-07-20 12:22:35 -0700111 }
112
113 private:
Ian Rogers408f79a2011-08-23 18:22:33 -0700114 StackIndirectReferenceTable() {}
Ian Rogersb033c752011-07-20 12:22:35 -0700115
116 size_t number_of_references_;
Ian Rogers408f79a2011-08-23 18:22:33 -0700117 StackIndirectReferenceTable* link_;
Ian Rogersb033c752011-07-20 12:22:35 -0700118
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700119 // Fake array, really allocated and filled in by jni_compiler.
Ian Rogers408f79a2011-08-23 18:22:33 -0700120 Object* references_[0];
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700121
Ian Rogers408f79a2011-08-23 18:22:33 -0700122 DISALLOW_COPY_AND_ASSIGN(StackIndirectReferenceTable);
Ian Rogersb033c752011-07-20 12:22:35 -0700123};
124
Ian Rogers6de08602011-08-19 14:52:39 -0700125struct NativeToManagedRecord {
126 NativeToManagedRecord* link;
127 void* last_top_of_managed_stack;
128};
129
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700130// Iterator over managed frames up to the first native-to-managed transition
131class Frame {
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700132 public:
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700133 Frame() : sp_(NULL) {}
134
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700135 Method* GetMethod() const {
Elliott Hughesa0957642011-09-02 14:27:33 -0700136 return (sp_ != NULL) ? *sp_ : NULL;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700137 }
138
139 bool HasNext() const {
140 return NextMethod() != NULL;
141 }
142
143 void Next();
144
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700145 uintptr_t GetPC() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700146
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700147 Method** GetSP() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700148 return sp_;
149 }
150
151 // TODO: this is here for testing, remove when we have exception unit tests
152 // that use the real stack
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700153 void SetSP(Method** sp) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700154 sp_ = sp;
155 }
156
157 private:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700158 Method* NextMethod() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700159
160 friend class Thread;
161
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700162 Method** sp_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700163};
164
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700165class Thread {
166 public:
Carl Shapirob5573532011-07-12 18:22:59 -0700167 enum State {
168 kUnknown = -1,
169 kNew,
170 kRunnable,
171 kBlocked,
172 kWaiting,
173 kTimedWaiting,
Ian Rogersb033c752011-07-20 12:22:35 -0700174 kNative,
Carl Shapirob5573532011-07-12 18:22:59 -0700175 kTerminated,
176 };
177
buzbeec143c552011-08-20 17:38:58 -0700178
Carl Shapiro61e019d2011-07-14 16:53:09 -0700179 static const size_t kDefaultStackSize = 64 * KB;
180
buzbeec143c552011-08-20 17:38:58 -0700181 // Runtime support function pointers
buzbee4a3164f2011-09-03 11:25:10 -0700182 void (*pDebugMe)(Method*, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700183 void* (*pMemcpy)(void*, const void*, size_t);
buzbee54330722011-08-23 16:46:55 -0700184 uint64_t (*pShlLong)(uint64_t, uint32_t);
185 uint64_t (*pShrLong)(uint64_t, uint32_t);
186 uint64_t (*pUshrLong)(uint64_t, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700187 float (*pI2f)(int);
188 int (*pF2iz)(float);
189 float (*pD2f)(double);
190 double (*pF2d)(float);
191 double (*pI2d)(int);
192 int (*pD2iz)(double);
193 float (*pL2f)(long);
194 double (*pL2d)(long);
buzbee1b4c8592011-08-31 10:43:51 -0700195 long long (*pF2l)(float);
196 long long (*pD2l)(double);
buzbeec143c552011-08-20 17:38:58 -0700197 float (*pFadd)(float, float);
198 float (*pFsub)(float, float);
199 float (*pFdiv)(float, float);
200 float (*pFmul)(float, float);
201 float (*pFmodf)(float, float);
202 double (*pDadd)(double, double);
203 double (*pDsub)(double, double);
204 double (*pDdiv)(double, double);
205 double (*pDmul)(double, double);
206 double (*pFmod)(double, double);
207 int (*pIdivmod)(int, int);
208 int (*pIdiv)(int, int);
buzbee439c4fa2011-08-27 15:59:07 -0700209 long long (*pLmul)(long long, long long);
buzbeec143c552011-08-20 17:38:58 -0700210 long long (*pLdivmod)(long long, long long);
buzbeedfd3d702011-08-28 12:56:51 -0700211 Array* (*pAllocFromCode)(uint32_t, Method*, int32_t);
buzbee1da522d2011-09-04 11:22:20 -0700212 Array* (*pCheckAndAllocFromCode)(uint32_t, Method*, int32_t);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700213 Object* (*pAllocObjectFromCode)(uint32_t, Method*);
buzbeee1931742011-08-28 21:15:53 -0700214 uint32_t (*pGet32Static)(uint32_t, const Method*);
215 void (*pSet32Static)(uint32_t, const Method*, uint32_t);
216 uint64_t (*pGet64Static)(uint32_t, const Method*);
217 void (*pSet64Static)(uint32_t, const Method*, uint64_t);
218 Object* (*pGetObjStatic)(uint32_t, const Method*);
219 void (*pSetObjStatic)(uint32_t, const Method*, Object*);
Elliott Hughes0f4c41d2011-09-04 14:58:03 -0700220 void (*pCanPutArrayElementFromCode)(const Class*, const Class*);
buzbee2a475e72011-09-07 17:19:17 -0700221 bool (*pInstanceofNonTrivialFromCode) (const Object*, const Class*);
222 void (*pCheckCastFromCode) (const Class*, const Class*);
buzbee1b4c8592011-08-31 10:43:51 -0700223 Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*);
buzbee2a475e72011-09-07 17:19:17 -0700224 void (*pUnlockObjectFromCode)(Thread*, Object*);
buzbee1b4c8592011-08-31 10:43:51 -0700225 void (*pLockObjectFromCode)(Thread*, Object*);
226 void (*pThrowException)(Thread*, Throwable*);
227 void (*pHandleFillArrayDataFromCode)(Array*, const uint16_t*);
228 Class* (*pInitializeTypeFromCode)(uint32_t, Method*);
buzbee561227c2011-09-02 15:28:19 -0700229 void (*pResolveMethodFromCode)(Method*, uint32_t);
buzbee4a3164f2011-09-03 11:25:10 -0700230 void (*pInvokeInterfaceTrampoline)(void*, void*, void*, void*);
buzbee1da522d2011-09-04 11:22:20 -0700231 StaticStorageBase* (*pInitializeStaticStorage)(uint32_t, const Method*);
buzbeec143c552011-08-20 17:38:58 -0700232
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700233 class StackVisitor {
234 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700235 virtual ~StackVisitor() {}
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700236 virtual bool VisitFrame(const Frame& frame) = 0;
237 };
238
Carl Shapiro61e019d2011-07-14 16:53:09 -0700239 // Creates a new thread.
Brian Carlstromb765be02011-08-17 23:54:10 -0700240 static Thread* Create(const Runtime* runtime);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700241
242 // Creates a new thread from the calling thread.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700243 static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon);
Carl Shapirob5573532011-07-12 18:22:59 -0700244
245 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700246 void* thread = pthread_getspecific(Thread::pthread_key_self_);
247 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700248 }
249
Elliott Hughesa0957642011-09-02 14:27:33 -0700250 void Dump(std::ostream& os) const;
251
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700252 State GetState() const {
253 return state_;
254 }
255
256 State SetState(State new_state) {
257 State old_state = state_;
258 state_ = new_state;
259 return old_state;
260 }
261
262 bool CanAccessDirectReferences() const {
Elliott Hughesa59d1792011-09-04 18:42:35 -0700263 // TODO: when we have a moving collector, we'll need: return state_ == kRunnable;
264 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700265 }
266
Elliott Hughesdcc24742011-09-07 14:02:44 -0700267 uint32_t GetThinLockId() const {
268 return thin_lock_id_;
Carl Shapirob5573532011-07-12 18:22:59 -0700269 }
270
Elliott Hughesd92bec42011-09-02 17:04:36 -0700271 pid_t GetTid() const {
272 return tid_;
273 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700274
275 pthread_t GetImpl() const {
276 return handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700277 }
278
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700279 // Returns the Method* for the current method.
280 // This is used by the JNI implementation for logging and diagnostic purposes.
281 const Method* GetCurrentMethod() const {
282 return top_of_managed_stack_.GetMethod();
283 }
284
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700285 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700286 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700287 }
288
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700289 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700290 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700291 return exception_;
292 }
293
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700294 void SetException(Throwable* new_exception) {
295 DCHECK(CanAccessDirectReferences());
296 CHECK(new_exception != NULL);
297 // TODO: CHECK(exception_ == NULL);
298 exception_ = new_exception; // TODO
299 }
300
301 void ClearException() {
302 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700303 }
304
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700305 Frame GetTopOfStack() const {
306 return top_of_managed_stack_;
307 }
308
309 // TODO: this is here for testing, remove when we have exception unit tests
310 // that use the real stack
311 void SetTopOfStack(void* stack) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700312 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700313 }
314
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700315 void ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700316 __attribute__ ((format(printf, 3, 4)));
317
Elliott Hughes79082e32011-08-25 12:07:32 -0700318 // This exception is special, because we need to pre-allocate an instance.
319 void ThrowOutOfMemoryError();
320
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700321 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
322
323 void* FindExceptionHandlerInMethod(const Method* method,
324 void* throw_pc,
325 const DexFile& dex_file,
326 ClassLinker* class_linker);
Shih-wei Liao668512a2011-09-01 14:18:34 -0700327 static ThreadOffset SelfOffset() {
328 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
329 }
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700330
Elliott Hughesdcc24742011-09-07 14:02:44 -0700331 // Offset of exception_ within Thread, used by generated code
Ian Rogers45a76cb2011-07-21 22:00:15 -0700332 static ThreadOffset ExceptionOffset() {
333 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
334 }
335
Elliott Hughesdcc24742011-09-07 14:02:44 -0700336 // Offset of thin_lock_id_ within Thread, used by generated code
buzbeec143c552011-08-20 17:38:58 -0700337 static ThreadOffset IdOffset() {
Elliott Hughesdcc24742011-09-07 14:02:44 -0700338 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
buzbeec143c552011-08-20 17:38:58 -0700339 }
340
341 // Offset of card_table within Thread, used by generated code
342 static ThreadOffset CardTableOffset() {
343 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
344 }
345
Carl Shapirob5573532011-07-12 18:22:59 -0700346 void SetName(const char* name);
347
348 void Suspend();
349
350 bool IsSuspended();
351
352 void Resume();
353
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700354 static bool Startup();
355 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700356
Ian Rogers45a76cb2011-07-21 22:00:15 -0700357 static ThreadOffset SuspendCountOffset() {
358 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
359 }
360
Ian Rogersb033c752011-07-20 12:22:35 -0700361 // Offset of state within Thread, used by generated code
362 static ThreadOffset StateOffset() {
363 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
364 }
365
Ian Rogersb033c752011-07-20 12:22:35 -0700366 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700367 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700368 return jni_env_;
369 }
370
371 // Offset of JNI environment within Thread, used by generated code
372 static ThreadOffset JniEnvOffset() {
373 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
374 }
375
Ian Rogers45a76cb2011-07-21 22:00:15 -0700376 // Offset of top of managed stack address, used by generated code
377 static ThreadOffset TopOfManagedStackOffset() {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700378 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
379 OFFSETOF_MEMBER(Frame, sp_));
Ian Rogers45a76cb2011-07-21 22:00:15 -0700380 }
381
Ian Rogers408f79a2011-08-23 18:22:33 -0700382 // Offset of top stack indirect reference table within Thread, used by
383 // generated code
384 static ThreadOffset TopSirtOffset() {
385 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
Ian Rogersb033c752011-07-20 12:22:35 -0700386 }
387
Ian Rogers408f79a2011-08-23 18:22:33 -0700388 // Number of references allocated in SIRTs on this thread
389 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700390
Ian Rogers408f79a2011-08-23 18:22:33 -0700391 // Is the given obj in this thread's stack indirect reference table?
392 bool SirtContains(jobject obj);
393
394 // Convert a jobject into a Object*
395 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700396
Ian Rogers45a76cb2011-07-21 22:00:15 -0700397 // Offset of exception_entry_point_ within Thread, used by generated code
398 static ThreadOffset ExceptionEntryPointOffset() {
399 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
400 }
401
402 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
403 exception_entry_point_ = handler;
404 }
405
406 // Offset of suspend_count_entry_point_ within Thread, used by generated code
407 static ThreadOffset SuspendCountEntryPointOffset() {
408 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
409 }
410
411 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
412 suspend_count_entry_point_ = handler;
413 }
414
415 // Increasing the suspend count, will cause the thread to run to safepoint
416 void IncrementSuspendCount() { suspend_count_++; }
417 void DecrementSuspendCount() { suspend_count_--; }
418
Ian Rogers6de08602011-08-19 14:52:39 -0700419 // Linked list recording transitions from native to managed code
420 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700421 record->last_top_of_managed_stack = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
Ian Rogers6de08602011-08-19 14:52:39 -0700422 record->link = native_to_managed_record_;
423 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700424 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700425 }
426 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
427 native_to_managed_record_ = record.link;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700428 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(record.last_top_of_managed_stack));
Ian Rogers6de08602011-08-19 14:52:39 -0700429 }
430
Brian Carlstrombffb1552011-08-25 12:23:53 -0700431 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700432 // TODO: need to place the class_loader_override_ in a handle
433 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700434 return class_loader_override_;
435 }
436
Brian Carlstrombffb1552011-08-25 12:23:53 -0700437 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700438 class_loader_override_ = class_loader_override;
439 }
440
Shih-wei Liao44175362011-08-28 16:59:17 -0700441 // Allocate stack trace
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700442 ObjectArray<StackTraceElement>* AllocStackTrace();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700443
Elliott Hughes410c0c82011-09-01 17:58:25 -0700444 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
445
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700446 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700447 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700448 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700449 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700450
Elliott Hughesd92bec42011-09-02 17:04:36 -0700451 void DumpState(std::ostream& os) const;
452 void DumpStack(std::ostream& os) const;
453
Ian Rogersb033c752011-07-20 12:22:35 -0700454 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700455 void InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700456
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700457 void WalkStack(StackVisitor* visitor);
Shih-wei Liao44175362011-08-28 16:59:17 -0700458
Elliott Hughesdcc24742011-09-07 14:02:44 -0700459 // Thin lock thread id. This is a small integer used by the thin lock implementation.
460 // This is not to be confused with the native thread's tid, nor is it the value returned
461 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
462 // important difference between this id and the ids visible to managed code is that these
463 // ones get reused (to ensure that they fit in the number of bits available).
464 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700465
Elliott Hughesd92bec42011-09-02 17:04:36 -0700466 // System thread id.
467 pid_t tid_;
468
469 // Native thread handle.
470 pthread_t handle_;
471
Elliott Hughesdcc24742011-09-07 14:02:44 -0700472 bool is_daemon_;
473
474 // Our managed peer (an instance of java.lang.Thread).
475 Object* peer_;
476
buzbeec143c552011-08-20 17:38:58 -0700477 // FIXME: placeholder for the gc cardTable
478 uint32_t card_table_;
479
Ian Rogers45a76cb2011-07-21 22:00:15 -0700480 // Top of the managed stack, written out prior to the state transition from
481 // kRunnable to kNative. Uses include to give the starting point for scanning
482 // a managed stack when a thread is in native code.
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700483 Frame top_of_managed_stack_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700484
Ian Rogers6de08602011-08-19 14:52:39 -0700485 // A linked list (of stack allocated records) recording transitions from
486 // native to managed code.
487 NativeToManagedRecord* native_to_managed_record_;
488
Ian Rogers408f79a2011-08-23 18:22:33 -0700489 // Top of linked list of stack indirect reference tables or NULL for none
490 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700491
492 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700493 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700494
Carl Shapirob5573532011-07-12 18:22:59 -0700495 State state_;
496
Carl Shapiro69759ea2011-07-21 18:13:35 -0700497 // Initialized to "this". On certain architectures (such as x86) reading
498 // off of Thread::Current is easy but getting the address of Thread::Current
499 // is hard. This field can be read off of Thread::Current to give the address.
500 Thread* self_;
501
502 Runtime* runtime_;
503
504 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700505 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700506
Ian Rogers45a76cb2011-07-21 22:00:15 -0700507 // A non-zero value is used to tell the current thread to enter a safe point
508 // at the next poll.
509 int suspend_count_;
510
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700511 // Needed to get the right ClassLoader in JNI_OnLoad, but also
512 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700513 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700514
Carl Shapiro69759ea2011-07-21 18:13:35 -0700515 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700516 static pthread_key_t pthread_key_self_;
517
Ian Rogers45a76cb2011-07-21 22:00:15 -0700518 // Entry point called when exception_ is set
519 void (*exception_entry_point_)(Method** frame);
520
521 // Entry point called when suspend_count_ is non-zero
522 void (*suspend_count_entry_point_)(Method** frame);
523
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700524 DISALLOW_COPY_AND_ASSIGN(Thread);
525};
Elliott Hughes330304d2011-08-12 14:28:05 -0700526std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700527std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700528
Carl Shapirob5573532011-07-12 18:22:59 -0700529class ThreadList {
530 public:
Elliott Hughes02b48d12011-09-07 17:15:51 -0700531 static const int kMaxThreadId = 0xFFFF;
Carl Shapiro61e019d2011-07-14 16:53:09 -0700532 static const int kInvalidId = 0;
533 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700534
Carl Shapiro61e019d2011-07-14 16:53:09 -0700535 static ThreadList* Create();
536
537 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700538
Elliott Hughesd92bec42011-09-02 17:04:36 -0700539 void Dump(std::ostream& os);
540
Carl Shapirob5573532011-07-12 18:22:59 -0700541 void Register(Thread* thread);
542
Elliott Hughes02b48d12011-09-07 17:15:51 -0700543 void Unregister();
Carl Shapirob5573532011-07-12 18:22:59 -0700544
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700545 bool Contains(Thread* thread);
546
Elliott Hughes02b48d12011-09-07 17:15:51 -0700547 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
548
549 private:
550 ThreadList();
551
552 uint32_t AllocThreadId();
553 void ReleaseThreadId(uint32_t id);
554
Carl Shapirob5573532011-07-12 18:22:59 -0700555 void Lock() {
556 lock_->Lock();
557 }
558
559 void Unlock() {
560 lock_->Unlock();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700561 }
Carl Shapirob5573532011-07-12 18:22:59 -0700562
563 Mutex* lock_;
564
Elliott Hughes02b48d12011-09-07 17:15:51 -0700565 std::bitset<kMaxThreadId> allocated_ids_;
566 std::list<Thread*> list_;
567
568 friend class Thread;
569 friend class ThreadListLock;
570
Carl Shapirob5573532011-07-12 18:22:59 -0700571 DISALLOW_COPY_AND_ASSIGN(ThreadList);
572};
573
574class ThreadListLock {
575 public:
Elliott Hughes02b48d12011-09-07 17:15:51 -0700576 ThreadListLock(Thread* self = NULL) {
577 if (self == NULL) {
578 // Try to get it from TLS.
579 self = Thread::Current();
Carl Shapirob5573532011-07-12 18:22:59 -0700580 }
581 Thread::State old_state;
Elliott Hughes02b48d12011-09-07 17:15:51 -0700582 if (self != NULL) {
583 old_state = self->SetState(Thread::kWaiting); // TODO: VMWAIT
Carl Shapirob5573532011-07-12 18:22:59 -0700584 } else {
Elliott Hughes02b48d12011-09-07 17:15:51 -0700585 // This happens during VM shutdown.
586 old_state = Thread::kUnknown;
Carl Shapirob5573532011-07-12 18:22:59 -0700587 }
Elliott Hughes02b48d12011-09-07 17:15:51 -0700588 Runtime::Current()->GetThreadList()->Lock();
589 if (self != NULL) {
590 self->SetState(old_state);
Carl Shapirob5573532011-07-12 18:22:59 -0700591 }
592 }
593
594 ~ThreadListLock() {
Elliott Hughes02b48d12011-09-07 17:15:51 -0700595 Runtime::Current()->GetThreadList()->Unlock();
Carl Shapirob5573532011-07-12 18:22:59 -0700596 }
597
Carl Shapirob5573532011-07-12 18:22:59 -0700598 private:
Carl Shapirob5573532011-07-12 18:22:59 -0700599 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
600};
601
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700602class ScopedThreadStateChange {
603 public:
604 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
605 old_thread_state_ = thread_->SetState(new_state);
606 }
607
608 ~ScopedThreadStateChange() {
609 thread_->SetState(old_thread_state_);
610 }
611
612 private:
613 Thread* thread_;
614 Thread::State old_thread_state_;
615 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
616};
617
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700618} // namespace art
619
620#endif // ART_SRC_THREAD_H_