blob: fc523a3d97a642263afc7b6e8aef92d7a2bf949f [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
8#include <iosfwd>
Ian Rogersb033c752011-07-20 12:22:35 -07009#include <list>
Carl Shapirob5573532011-07-12 18:22:59 -070010
Brian Carlstrom1f870082011-08-23 16:02:11 -070011#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070012#include "globals.h"
Elliott Hughes69f5bc62011-08-24 09:26:14 -070013#include "jni_internal.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070014#include "logging.h"
15#include "macros.h"
Brian Carlstromb765be02011-08-17 23:54:10 -070016#include "mem_map.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070017#include "offsets.h"
Ian Rogersb033c752011-07-20 12:22:35 -070018
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070019namespace art {
20
Elliott Hughes69f5bc62011-08-24 09:26:14 -070021class Array;
Elliott Hughes37f7a402011-08-22 18:56:01 -070022class Class;
Brian Carlstrom1f870082011-08-23 16:02:11 -070023class ClassLinker;
Elliott Hughesedcc09c2011-08-21 18:47:05 -070024class ClassLoader;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070025class Method;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070026class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070027class Runtime;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070028class Thread;
Carl Shapirob5573532011-07-12 18:22:59 -070029class ThreadList;
Elliott Hughese5b0dc82011-08-23 09:59:02 -070030class Throwable;
Shih-wei Liao55df06b2011-08-26 14:39:27 -070031class StackTraceElement;
32template<class T> class ObjectArray;
Shih-wei Liao44175362011-08-28 16:59:17 -070033template<class T> class PrimitiveArray;
34typedef PrimitiveArray<int32_t> IntArray;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070035
36class Mutex {
37 public:
38 virtual ~Mutex() {}
39
Carl Shapirob5573532011-07-12 18:22:59 -070040 void Lock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070041
Carl Shapirob5573532011-07-12 18:22:59 -070042 bool TryLock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070043
Carl Shapirob5573532011-07-12 18:22:59 -070044 void Unlock();
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070045
46 const char* GetName() { return name_; }
47
48 Thread* GetOwner() { return owner_; }
49
Carl Shapirob5573532011-07-12 18:22:59 -070050 static Mutex* Create(const char* name);
51
Elliott Hughes79082e32011-08-25 12:07:32 -070052 // TODO: only needed because we lack a condition variable abstraction.
53 pthread_mutex_t* GetImpl() { return &lock_impl_; }
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070054
55 private:
Elliott Hughes18c07532011-08-18 15:50:51 -070056 explicit Mutex(const char* name) : name_(name), owner_(NULL) {}
57
Elliott Hughes79082e32011-08-25 12:07:32 -070058 void SetOwner(Thread* thread) { owner_ = thread; }
59
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070060 const char* name_;
61
62 Thread* owner_;
63
Carl Shapirob5573532011-07-12 18:22:59 -070064 pthread_mutex_t lock_impl_;
65
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070066 DISALLOW_COPY_AND_ASSIGN(Mutex);
67};
68
69class MutexLock {
70 public:
71 explicit MutexLock(Mutex *mu) : mu_(mu) {
72 mu_->Lock();
73 }
74 ~MutexLock() { mu_->Unlock(); }
75 private:
76 Mutex* const mu_;
77 DISALLOW_COPY_AND_ASSIGN(MutexLock);
78};
79
Ian Rogers408f79a2011-08-23 18:22:33 -070080// Stack allocated indirect reference table, allocated within the bridge frame
81// between managed and native code.
82class StackIndirectReferenceTable {
Ian Rogersb033c752011-07-20 12:22:35 -070083 public:
Ian Rogers408f79a2011-08-23 18:22:33 -070084 // Number of references contained within this SIRT
Ian Rogersb033c752011-07-20 12:22:35 -070085 size_t NumberOfReferences() {
86 return number_of_references_;
87 }
88
Ian Rogers408f79a2011-08-23 18:22:33 -070089 // Link to previous SIRT or NULL
90 StackIndirectReferenceTable* Link() {
Ian Rogersb033c752011-07-20 12:22:35 -070091 return link_;
92 }
93
Ian Rogers408f79a2011-08-23 18:22:33 -070094 Object** References() {
95 return references_;
Ian Rogersa8cd9f42011-08-19 16:43:41 -070096 }
97
Ian Rogers408f79a2011-08-23 18:22:33 -070098 // Offset of length within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -070099 static size_t NumberOfReferencesOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -0700100 return OFFSETOF_MEMBER(StackIndirectReferenceTable, number_of_references_);
Ian Rogersb033c752011-07-20 12:22:35 -0700101 }
102
Ian Rogers408f79a2011-08-23 18:22:33 -0700103 // Offset of link within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -0700104 static size_t LinkOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -0700105 return OFFSETOF_MEMBER(StackIndirectReferenceTable, link_);
Ian Rogersb033c752011-07-20 12:22:35 -0700106 }
107
108 private:
Ian Rogers408f79a2011-08-23 18:22:33 -0700109 StackIndirectReferenceTable() {}
Ian Rogersb033c752011-07-20 12:22:35 -0700110
111 size_t number_of_references_;
Ian Rogers408f79a2011-08-23 18:22:33 -0700112 StackIndirectReferenceTable* link_;
Ian Rogersb033c752011-07-20 12:22:35 -0700113
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700114 // Fake array, really allocated and filled in by jni_compiler.
Ian Rogers408f79a2011-08-23 18:22:33 -0700115 Object* references_[0];
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700116
Ian Rogers408f79a2011-08-23 18:22:33 -0700117 DISALLOW_COPY_AND_ASSIGN(StackIndirectReferenceTable);
Ian Rogersb033c752011-07-20 12:22:35 -0700118};
119
Ian Rogers6de08602011-08-19 14:52:39 -0700120struct NativeToManagedRecord {
121 NativeToManagedRecord* link;
122 void* last_top_of_managed_stack;
123};
124
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700125// Iterator over managed frames up to the first native-to-managed transition
126class Frame {
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700127 public:
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700128 Frame() : sp_(NULL) {}
129
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700130 Method* GetMethod() const {
Elliott Hughesa0957642011-09-02 14:27:33 -0700131 return (sp_ != NULL) ? *sp_ : NULL;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700132 }
133
134 bool HasNext() const {
135 return NextMethod() != NULL;
136 }
137
138 void Next();
139
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700140 uintptr_t GetPC() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700141
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700142 Method** GetSP() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700143 return sp_;
144 }
145
146 // TODO: this is here for testing, remove when we have exception unit tests
147 // that use the real stack
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700148 void SetSP(Method** sp) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700149 sp_ = sp;
150 }
151
152 private:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700153 Method* NextMethod() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700154
155 friend class Thread;
156
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700157 Method** sp_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700158};
159
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700160class Thread {
161 public:
Carl Shapirob5573532011-07-12 18:22:59 -0700162 enum State {
163 kUnknown = -1,
164 kNew,
165 kRunnable,
166 kBlocked,
167 kWaiting,
168 kTimedWaiting,
Ian Rogersb033c752011-07-20 12:22:35 -0700169 kNative,
Carl Shapirob5573532011-07-12 18:22:59 -0700170 kTerminated,
171 };
172
buzbeec143c552011-08-20 17:38:58 -0700173
Carl Shapiro61e019d2011-07-14 16:53:09 -0700174 static const size_t kDefaultStackSize = 64 * KB;
175
buzbeec143c552011-08-20 17:38:58 -0700176 // Runtime support function pointers
buzbee4a3164f2011-09-03 11:25:10 -0700177 void (*pDebugMe)(Method*, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700178 void* (*pMemcpy)(void*, const void*, size_t);
buzbee54330722011-08-23 16:46:55 -0700179 uint64_t (*pShlLong)(uint64_t, uint32_t);
180 uint64_t (*pShrLong)(uint64_t, uint32_t);
181 uint64_t (*pUshrLong)(uint64_t, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700182 float (*pI2f)(int);
183 int (*pF2iz)(float);
184 float (*pD2f)(double);
185 double (*pF2d)(float);
186 double (*pI2d)(int);
187 int (*pD2iz)(double);
188 float (*pL2f)(long);
189 double (*pL2d)(long);
buzbee1b4c8592011-08-31 10:43:51 -0700190 long long (*pF2l)(float);
191 long long (*pD2l)(double);
buzbeec143c552011-08-20 17:38:58 -0700192 float (*pFadd)(float, float);
193 float (*pFsub)(float, float);
194 float (*pFdiv)(float, float);
195 float (*pFmul)(float, float);
196 float (*pFmodf)(float, float);
197 double (*pDadd)(double, double);
198 double (*pDsub)(double, double);
199 double (*pDdiv)(double, double);
200 double (*pDmul)(double, double);
201 double (*pFmod)(double, double);
202 int (*pIdivmod)(int, int);
203 int (*pIdiv)(int, int);
buzbee439c4fa2011-08-27 15:59:07 -0700204 long long (*pLmul)(long long, long long);
buzbeec143c552011-08-20 17:38:58 -0700205 long long (*pLdivmod)(long long, long long);
buzbeedfd3d702011-08-28 12:56:51 -0700206 Array* (*pAllocFromCode)(uint32_t, Method*, int32_t);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700207 Object* (*pAllocObjectFromCode)(uint32_t, Method*);
buzbeee1931742011-08-28 21:15:53 -0700208 uint32_t (*pGet32Static)(uint32_t, const Method*);
209 void (*pSet32Static)(uint32_t, const Method*, uint32_t);
210 uint64_t (*pGet64Static)(uint32_t, const Method*);
211 void (*pSet64Static)(uint32_t, const Method*, uint64_t);
212 Object* (*pGetObjStatic)(uint32_t, const Method*);
213 void (*pSetObjStatic)(uint32_t, const Method*, Object*);
buzbee1b4c8592011-08-31 10:43:51 -0700214 bool (*pCanPutArrayElementFromCode)(const Class*, const Class*);
215 int (*pInstanceofNonTrivialFromCode) (const Class*, const Class*);
216 Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*);
217 bool (*pUnlockObjectFromCode)(Thread*, Object*);
218 void (*pLockObjectFromCode)(Thread*, Object*);
219 void (*pThrowException)(Thread*, Throwable*);
220 void (*pHandleFillArrayDataFromCode)(Array*, const uint16_t*);
221 Class* (*pInitializeTypeFromCode)(uint32_t, Method*);
buzbee561227c2011-09-02 15:28:19 -0700222 void (*pResolveMethodFromCode)(Method*, uint32_t);
buzbee4a3164f2011-09-03 11:25:10 -0700223 void (*pInvokeInterfaceTrampoline)(void*, void*, void*, void*);
buzbeec143c552011-08-20 17:38:58 -0700224
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700225 class StackVisitor {
226 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700227 virtual ~StackVisitor() {}
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700228 virtual bool VisitFrame(const Frame& frame) = 0;
229 };
230
Carl Shapiro61e019d2011-07-14 16:53:09 -0700231 // Creates a new thread.
Brian Carlstromb765be02011-08-17 23:54:10 -0700232 static Thread* Create(const Runtime* runtime);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700233
234 // Creates a new thread from the calling thread.
Elliott Hughes515a5bc2011-08-17 11:08:34 -0700235 static Thread* Attach(const Runtime* runtime);
Carl Shapirob5573532011-07-12 18:22:59 -0700236
237 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700238 void* thread = pthread_getspecific(Thread::pthread_key_self_);
239 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700240 }
241
Elliott Hughesa0957642011-09-02 14:27:33 -0700242 void Dump(std::ostream& os) const;
243
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700244 State GetState() const {
245 return state_;
246 }
247
248 State SetState(State new_state) {
249 State old_state = state_;
250 state_ = new_state;
251 return old_state;
252 }
253
254 bool CanAccessDirectReferences() const {
255 return state_ == kRunnable;
256 }
257
Carl Shapirob5573532011-07-12 18:22:59 -0700258 uint32_t GetId() const {
259 return id_;
260 }
261
Elliott Hughesd92bec42011-09-02 17:04:36 -0700262 pid_t GetTid() const {
263 return tid_;
264 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700265
266 pthread_t GetImpl() const {
267 return handle_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700268 }
269
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700270 // Returns the Method* for the current method.
271 // This is used by the JNI implementation for logging and diagnostic purposes.
272 const Method* GetCurrentMethod() const {
273 return top_of_managed_stack_.GetMethod();
274 }
275
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700276 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700277 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700278 }
279
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700280 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700281 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700282 return exception_;
283 }
284
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700285 void SetException(Throwable* new_exception) {
286 DCHECK(CanAccessDirectReferences());
287 CHECK(new_exception != NULL);
288 // TODO: CHECK(exception_ == NULL);
289 exception_ = new_exception; // TODO
290 }
291
292 void ClearException() {
293 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700294 }
295
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700296 Frame GetTopOfStack() const {
297 return top_of_managed_stack_;
298 }
299
300 // TODO: this is here for testing, remove when we have exception unit tests
301 // that use the real stack
302 void SetTopOfStack(void* stack) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700303 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700304 }
305
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700306 void ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700307 __attribute__ ((format(printf, 3, 4)));
308
Elliott Hughes79082e32011-08-25 12:07:32 -0700309 // This exception is special, because we need to pre-allocate an instance.
310 void ThrowOutOfMemoryError();
311
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700312 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
313
314 void* FindExceptionHandlerInMethod(const Method* method,
315 void* throw_pc,
316 const DexFile& dex_file,
317 ClassLinker* class_linker);
Shih-wei Liao668512a2011-09-01 14:18:34 -0700318 static ThreadOffset SelfOffset() {
319 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
320 }
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700321
Ian Rogers45a76cb2011-07-21 22:00:15 -0700322 // Offset of exception within Thread, used by generated code
323 static ThreadOffset ExceptionOffset() {
324 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
325 }
326
buzbeec143c552011-08-20 17:38:58 -0700327 // Offset of id within Thread, used by generated code
328 static ThreadOffset IdOffset() {
329 return ThreadOffset(OFFSETOF_MEMBER(Thread, id_));
330 }
331
332 // Offset of card_table within Thread, used by generated code
333 static ThreadOffset CardTableOffset() {
334 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
335 }
336
Carl Shapirob5573532011-07-12 18:22:59 -0700337 void SetName(const char* name);
338
339 void Suspend();
340
341 bool IsSuspended();
342
343 void Resume();
344
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700345 static bool Startup();
346 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700347
Ian Rogers45a76cb2011-07-21 22:00:15 -0700348 static ThreadOffset SuspendCountOffset() {
349 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
350 }
351
Ian Rogersb033c752011-07-20 12:22:35 -0700352 // Offset of state within Thread, used by generated code
353 static ThreadOffset StateOffset() {
354 return ThreadOffset(OFFSETOF_MEMBER(Thread, state_));
355 }
356
Ian Rogersb033c752011-07-20 12:22:35 -0700357 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700358 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700359 return jni_env_;
360 }
361
362 // Offset of JNI environment within Thread, used by generated code
363 static ThreadOffset JniEnvOffset() {
364 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
365 }
366
Ian Rogers45a76cb2011-07-21 22:00:15 -0700367 // Offset of top of managed stack address, used by generated code
368 static ThreadOffset TopOfManagedStackOffset() {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700369 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
370 OFFSETOF_MEMBER(Frame, sp_));
Ian Rogers45a76cb2011-07-21 22:00:15 -0700371 }
372
Ian Rogers408f79a2011-08-23 18:22:33 -0700373 // Offset of top stack indirect reference table within Thread, used by
374 // generated code
375 static ThreadOffset TopSirtOffset() {
376 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
Ian Rogersb033c752011-07-20 12:22:35 -0700377 }
378
Ian Rogers408f79a2011-08-23 18:22:33 -0700379 // Number of references allocated in SIRTs on this thread
380 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700381
Ian Rogers408f79a2011-08-23 18:22:33 -0700382 // Is the given obj in this thread's stack indirect reference table?
383 bool SirtContains(jobject obj);
384
385 // Convert a jobject into a Object*
386 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700387
Ian Rogers45a76cb2011-07-21 22:00:15 -0700388 // Offset of exception_entry_point_ within Thread, used by generated code
389 static ThreadOffset ExceptionEntryPointOffset() {
390 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
391 }
392
393 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
394 exception_entry_point_ = handler;
395 }
396
397 // Offset of suspend_count_entry_point_ within Thread, used by generated code
398 static ThreadOffset SuspendCountEntryPointOffset() {
399 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
400 }
401
402 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
403 suspend_count_entry_point_ = handler;
404 }
405
406 // Increasing the suspend count, will cause the thread to run to safepoint
407 void IncrementSuspendCount() { suspend_count_++; }
408 void DecrementSuspendCount() { suspend_count_--; }
409
Ian Rogers6de08602011-08-19 14:52:39 -0700410 // Linked list recording transitions from native to managed code
411 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700412 record->last_top_of_managed_stack = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
Ian Rogers6de08602011-08-19 14:52:39 -0700413 record->link = native_to_managed_record_;
414 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700415 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700416 }
417 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
418 native_to_managed_record_ = record.link;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700419 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(record.last_top_of_managed_stack));
Ian Rogers6de08602011-08-19 14:52:39 -0700420 }
421
Brian Carlstrombffb1552011-08-25 12:23:53 -0700422 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700423 // TODO: need to place the class_loader_override_ in a handle
424 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700425 return class_loader_override_;
426 }
427
Brian Carlstrombffb1552011-08-25 12:23:53 -0700428 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700429 class_loader_override_ = class_loader_override;
430 }
431
Shih-wei Liao44175362011-08-28 16:59:17 -0700432 // Allocate stack trace
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700433 ObjectArray<StackTraceElement>* AllocStackTrace();
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700434
Elliott Hughes410c0c82011-09-01 17:58:25 -0700435 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
436
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700437 private:
Elliott Hughes40ef99e2011-08-11 17:44:34 -0700438 Thread()
Elliott Hughes330304d2011-08-12 14:28:05 -0700439 : id_(1234),
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700440 top_of_managed_stack_(),
Ian Rogers6de08602011-08-19 14:52:39 -0700441 native_to_managed_record_(NULL),
Ian Rogers408f79a2011-08-23 18:22:33 -0700442 top_sirt_(NULL),
Elliott Hughes330304d2011-08-12 14:28:05 -0700443 jni_env_(NULL),
444 exception_(NULL),
buzbeec143c552011-08-20 17:38:58 -0700445 suspend_count_(0),
446 class_loader_override_(NULL) {
buzbee3ea4ec52011-08-22 17:37:19 -0700447 InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700448 }
Carl Shapiro69759ea2011-07-21 18:13:35 -0700449
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700450 ~Thread();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700451 friend class Runtime; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700452
Elliott Hughesd92bec42011-09-02 17:04:36 -0700453 void DumpState(std::ostream& os) const;
454 void DumpStack(std::ostream& os) const;
455
Ian Rogersb033c752011-07-20 12:22:35 -0700456 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700457 void InitFunctionPointers();
Ian Rogersb033c752011-07-20 12:22:35 -0700458
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700459 void WalkStack(StackVisitor* visitor);
Shih-wei Liao44175362011-08-28 16:59:17 -0700460
Carl Shapiro69759ea2011-07-21 18:13:35 -0700461 // Managed thread id.
462 uint32_t 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.
468 pthread_t handle_;
469
buzbeec143c552011-08-20 17:38:58 -0700470 // FIXME: placeholder for the gc cardTable
471 uint32_t card_table_;
472
Ian Rogers45a76cb2011-07-21 22:00:15 -0700473 // Top of the managed stack, written out prior to the state transition from
474 // kRunnable to kNative. Uses include to give the starting point for scanning
475 // a managed stack when a thread is in native code.
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700476 Frame top_of_managed_stack_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700477
Ian Rogers6de08602011-08-19 14:52:39 -0700478 // A linked list (of stack allocated records) recording transitions from
479 // native to managed code.
480 NativeToManagedRecord* native_to_managed_record_;
481
Ian Rogers408f79a2011-08-23 18:22:33 -0700482 // Top of linked list of stack indirect reference tables or NULL for none
483 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700484
485 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700486 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700487
Carl Shapirob5573532011-07-12 18:22:59 -0700488 State state_;
489
Carl Shapiro69759ea2011-07-21 18:13:35 -0700490 // Initialized to "this". On certain architectures (such as x86) reading
491 // off of Thread::Current is easy but getting the address of Thread::Current
492 // is hard. This field can be read off of Thread::Current to give the address.
493 Thread* self_;
494
495 Runtime* runtime_;
496
497 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700498 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700499
Ian Rogers45a76cb2011-07-21 22:00:15 -0700500 // A non-zero value is used to tell the current thread to enter a safe point
501 // at the next poll.
502 int suspend_count_;
503
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700504 // Needed to get the right ClassLoader in JNI_OnLoad, but also
505 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700506 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700507
Carl Shapiro69759ea2011-07-21 18:13:35 -0700508 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700509 static pthread_key_t pthread_key_self_;
510
Ian Rogers45a76cb2011-07-21 22:00:15 -0700511 // Entry point called when exception_ is set
512 void (*exception_entry_point_)(Method** frame);
513
514 // Entry point called when suspend_count_ is non-zero
515 void (*suspend_count_entry_point_)(Method** frame);
516
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700517 DISALLOW_COPY_AND_ASSIGN(Thread);
518};
Elliott Hughes330304d2011-08-12 14:28:05 -0700519std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700520std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700521
Carl Shapirob5573532011-07-12 18:22:59 -0700522class ThreadList {
523 public:
Carl Shapiro61e019d2011-07-14 16:53:09 -0700524 static const int kMaxId = 0xFFFF;
525 static const int kInvalidId = 0;
526 static const int kMainId = 1;
Carl Shapirob5573532011-07-12 18:22:59 -0700527
Carl Shapiro61e019d2011-07-14 16:53:09 -0700528 static ThreadList* Create();
529
530 ~ThreadList();
Carl Shapirob5573532011-07-12 18:22:59 -0700531
Elliott Hughesd92bec42011-09-02 17:04:36 -0700532 void Dump(std::ostream& os);
533
Carl Shapirob5573532011-07-12 18:22:59 -0700534 void Register(Thread* thread);
535
536 void Unregister(Thread* thread);
537
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700538 bool Contains(Thread* thread);
539
Carl Shapirob5573532011-07-12 18:22:59 -0700540 void Lock() {
541 lock_->Lock();
542 }
543
544 void Unlock() {
545 lock_->Unlock();
546 };
547
Elliott Hughes410c0c82011-09-01 17:58:25 -0700548 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
549
Carl Shapirob5573532011-07-12 18:22:59 -0700550 private:
551 ThreadList();
552
553 std::list<Thread*> list_;
554
555 Mutex* lock_;
556
557 DISALLOW_COPY_AND_ASSIGN(ThreadList);
558};
559
560class ThreadListLock {
561 public:
562 ThreadListLock(ThreadList* thread_list, Thread* current_thread)
563 : thread_list_(thread_list) {
564 if (current_thread == NULL) { // try to get it from TLS
565 current_thread = Thread::Current();
566 }
567 Thread::State old_state;
568 if (current_thread != NULL) {
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700569 old_state = current_thread->SetState(Thread::kWaiting); // TODO: VMWAIT
Carl Shapirob5573532011-07-12 18:22:59 -0700570 } else {
571 // happens during VM shutdown
572 old_state = Thread::kUnknown; // TODO: something else
573 }
574 thread_list_->Lock();
575 if (current_thread != NULL) {
576 current_thread->SetState(old_state);
577 }
578 }
579
580 ~ThreadListLock() {
581 thread_list_->Unlock();
582 }
583
Carl Shapirob5573532011-07-12 18:22:59 -0700584 private:
585 ThreadList* thread_list_;
586
587 DISALLOW_COPY_AND_ASSIGN(ThreadListLock);
588};
589
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700590class ScopedThreadStateChange {
591 public:
592 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
593 old_thread_state_ = thread_->SetState(new_state);
594 }
595
596 ~ScopedThreadStateChange() {
597 thread_->SetState(old_thread_state_);
598 }
599
600 private:
601 Thread* thread_;
602 Thread::State old_thread_state_;
603 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
604};
605
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700606} // namespace art
607
608#endif // ART_SRC_THREAD_H_