blob: 4b42a00ab931035c6163bb7ce9f9e00949cf689e [file] [log] [blame]
Elliott Hughes8d768a92011-09-14 16:35:25 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070016
17#ifndef ART_SRC_THREAD_H_
18#define ART_SRC_THREAD_H_
19
Carl Shapirob5573532011-07-12 18:22:59 -070020#include <pthread.h>
Elliott Hughesa0957642011-09-02 14:27:33 -070021
Elliott Hughes02b48d12011-09-07 17:15:51 -070022#include <bitset>
Elliott Hughesa0957642011-09-02 14:27:33 -070023#include <iosfwd>
Ian Rogersb033c752011-07-20 12:22:35 -070024#include <list>
Elliott Hughes8daa0922011-09-11 13:46:25 -070025#include <string>
Carl Shapirob5573532011-07-12 18:22:59 -070026
Brian Carlstrom1f870082011-08-23 16:02:11 -070027#include "dex_file.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070028#include "globals.h"
Elliott Hughes69f5bc62011-08-24 09:26:14 -070029#include "jni_internal.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070030#include "logging.h"
31#include "macros.h"
Elliott Hughes8daa0922011-09-11 13:46:25 -070032#include "mutex.h"
Brian Carlstromb765be02011-08-17 23:54:10 -070033#include "mem_map.h"
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070034#include "offsets.h"
Elliott Hughes9d5ccec2011-09-19 13:19:50 -070035#include "runtime_stats.h"
Elliott Hughes68e76522011-10-05 13:22:16 -070036#include "stack.h"
Ian Rogersbdb03912011-09-14 00:55:44 -070037#include "UniquePtr.h"
Ian Rogersb033c752011-07-20 12:22:35 -070038
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070039namespace art {
40
Elliott Hughes69f5bc62011-08-24 09:26:14 -070041class Array;
Elliott Hughes37f7a402011-08-22 18:56:01 -070042class Class;
Brian Carlstrom1f870082011-08-23 16:02:11 -070043class ClassLinker;
Elliott Hughesedcc09c2011-08-21 18:47:05 -070044class ClassLoader;
Ian Rogersbdb03912011-09-14 00:55:44 -070045class Context;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070046class Method;
Elliott Hughes8daa0922011-09-11 13:46:25 -070047class Monitor;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070048class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070049class Runtime;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070050class Thread;
Carl Shapirob5573532011-07-12 18:22:59 -070051class ThreadList;
Elliott Hughese5b0dc82011-08-23 09:59:02 -070052class Throwable;
Elliott Hughes68e76522011-10-05 13:22:16 -070053class StackIndirectReferenceTable;
Shih-wei Liao55df06b2011-08-26 14:39:27 -070054class StackTraceElement;
buzbee1da522d2011-09-04 11:22:20 -070055class StaticStorageBase;
56
Shih-wei Liao55df06b2011-08-26 14:39:27 -070057template<class T> class ObjectArray;
Shih-wei Liao44175362011-08-28 16:59:17 -070058template<class T> class PrimitiveArray;
59typedef PrimitiveArray<int32_t> IntArray;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070060
Elliott Hughes85d15452011-09-16 17:33:01 -070061class PACKED Thread {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070062 public:
Elliott Hughes8daa0922011-09-11 13:46:25 -070063 /* thread priorities, from java.lang.Thread */
64 enum Priority {
65 kMinPriority = 1,
66 kNormPriority = 5,
67 kMaxPriority = 10,
68 };
Carl Shapirob5573532011-07-12 18:22:59 -070069 enum State {
Elliott Hughes93e74e82011-09-13 11:07:03 -070070 // These match up with JDWP values.
71 kTerminated = 0, // TERMINATED
72 kRunnable = 1, // RUNNABLE or running now
73 kTimedWaiting = 2, // TIMED_WAITING in Object.wait()
74 kBlocked = 3, // BLOCKED on a monitor
75 kWaiting = 4, // WAITING in Object.wait()
76 // Non-JDWP states.
77 kInitializing = 5, // allocated, not yet running --- TODO: unnecessary?
78 kStarting = 6, // native thread started, not yet ready to run managed code
79 kNative = 7, // off in a JNI native method
80 kVmWait = 8, // waiting on a VM resource
81 kSuspended = 9, // suspended, usually by GC or debugger
Carl Shapirob5573532011-07-12 18:22:59 -070082 };
83
Ian Rogers932746a2011-09-22 18:57:50 -070084 // Space to throw a StackOverflowError in.
85 static const size_t kStackOverflowReservedBytes = 3 * KB;
buzbeec143c552011-08-20 17:38:58 -070086
Carl Shapiro61e019d2011-07-14 16:53:09 -070087 static const size_t kDefaultStackSize = 64 * KB;
88
buzbeec143c552011-08-20 17:38:58 -070089 // Runtime support function pointers
buzbee4a3164f2011-09-03 11:25:10 -070090 void (*pDebugMe)(Method*, uint32_t);
buzbeec143c552011-08-20 17:38:58 -070091 void* (*pMemcpy)(void*, const void*, size_t);
buzbee54330722011-08-23 16:46:55 -070092 uint64_t (*pShlLong)(uint64_t, uint32_t);
93 uint64_t (*pShrLong)(uint64_t, uint32_t);
94 uint64_t (*pUshrLong)(uint64_t, uint32_t);
buzbeec143c552011-08-20 17:38:58 -070095 float (*pI2f)(int);
96 int (*pF2iz)(float);
97 float (*pD2f)(double);
98 double (*pF2d)(float);
99 double (*pI2d)(int);
100 int (*pD2iz)(double);
101 float (*pL2f)(long);
102 double (*pL2d)(long);
buzbee1b4c8592011-08-31 10:43:51 -0700103 long long (*pF2l)(float);
104 long long (*pD2l)(double);
buzbeec143c552011-08-20 17:38:58 -0700105 float (*pFadd)(float, float);
106 float (*pFsub)(float, float);
107 float (*pFdiv)(float, float);
108 float (*pFmul)(float, float);
109 float (*pFmodf)(float, float);
110 double (*pDadd)(double, double);
111 double (*pDsub)(double, double);
112 double (*pDdiv)(double, double);
113 double (*pDmul)(double, double);
114 double (*pFmod)(double, double);
115 int (*pIdivmod)(int, int);
116 int (*pIdiv)(int, int);
buzbee439c4fa2011-08-27 15:59:07 -0700117 long long (*pLmul)(long long, long long);
buzbeec143c552011-08-20 17:38:58 -0700118 long long (*pLdivmod)(long long, long long);
Ian Rogers21d9e832011-09-23 17:05:09 -0700119 void* (*pAllocObjectFromCode)(uint32_t, void*);
Elliott Hughesb408de72011-10-04 14:35:05 -0700120 void* (*pAllocArrayFromCode)(uint32_t, void*, int32_t);
121 void* (*pCheckAndAllocArrayFromCode)(uint32_t, void*, int32_t);
buzbeee1931742011-08-28 21:15:53 -0700122 uint32_t (*pGet32Static)(uint32_t, const Method*);
123 void (*pSet32Static)(uint32_t, const Method*, uint32_t);
124 uint64_t (*pGet64Static)(uint32_t, const Method*);
125 void (*pSet64Static)(uint32_t, const Method*, uint64_t);
126 Object* (*pGetObjStatic)(uint32_t, const Method*);
127 void (*pSetObjStatic)(uint32_t, const Method*, Object*);
Ian Rogerse51a5112011-09-23 14:16:35 -0700128 void (*pCanPutArrayElementFromCode)(void*, void*);
buzbee991e3ac2011-09-29 15:44:22 -0700129 uint32_t (*pInstanceofNonTrivialFromCode) (const Class*, const Class*);
Ian Rogersff1ed472011-09-20 13:46:24 -0700130 void (*pCheckCastFromCode) (void*, void*);
buzbee1b4c8592011-08-31 10:43:51 -0700131 Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*);
Ian Rogersff1ed472011-09-20 13:46:24 -0700132 void (*pUnlockObjectFromCode)(void*, void*);
buzbee1b4c8592011-08-31 10:43:51 -0700133 void (*pLockObjectFromCode)(Thread*, Object*);
Ian Rogers67375ac2011-09-14 00:55:44 -0700134 void (*pDeliverException)(void*);
Ian Rogersff1ed472011-09-20 13:46:24 -0700135 void (*pHandleFillArrayDataFromCode)(void*, void*);
buzbee1b4c8592011-08-31 10:43:51 -0700136 Class* (*pInitializeTypeFromCode)(uint32_t, Method*);
buzbee561227c2011-09-02 15:28:19 -0700137 void (*pResolveMethodFromCode)(Method*, uint32_t);
buzbee4a3164f2011-09-03 11:25:10 -0700138 void (*pInvokeInterfaceTrampoline)(void*, void*, void*, void*);
Ian Rogerscbba6ac2011-09-22 16:28:37 -0700139 void* (*pInitializeStaticStorage)(uint32_t, void*);
Brian Carlstrom845490b2011-09-19 15:56:53 -0700140 Field* (*pFindInstanceFieldFromCode)(uint32_t, const Method*);
buzbee0d966cf2011-09-08 17:34:58 -0700141 void (*pCheckSuspendFromCode)(Thread*);
buzbeec1f45042011-09-21 16:03:19 -0700142 void (*pTestSuspendFromCode)();
Ian Rogers932746a2011-09-22 18:57:50 -0700143 void (*pThrowStackOverflowFromCode)(void*);
buzbee5ade1d22011-09-09 14:44:52 -0700144 void (*pThrowNullPointerFromCode)();
145 void (*pThrowArrayBoundsFromCode)(int32_t, int32_t);
146 void (*pThrowDivZeroFromCode)();
147 void (*pThrowVerificationErrorFromCode)(int32_t, int32_t);
148 void (*pThrowNegArraySizeFromCode)(int32_t);
buzbee5ade1d22011-09-09 14:44:52 -0700149 void (*pThrowNoSuchMethodFromCode)(int32_t);
Ian Rogersff1ed472011-09-20 13:46:24 -0700150 void (*pThrowAbstractMethodErrorFromCode)(Method* method, Thread* thread, Method** sp);
Brian Carlstrom16192862011-09-12 17:50:06 -0700151 void* (*pFindNativeMethod)(Thread* thread);
152 Object* (*pDecodeJObjectInThread)(Thread* thread, jobject obj);
buzbeece302932011-10-04 14:32:18 -0700153 String* (*pResolveStringFromCode)(Method*, int32_t);
buzbee99f27232011-10-05 12:56:36 -0700154 void (*pObjectInit)(Object*);
buzbeec143c552011-08-20 17:38:58 -0700155
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700156 class StackVisitor {
157 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700158 virtual ~StackVisitor() {}
Ian Rogersbdb03912011-09-14 00:55:44 -0700159 virtual void VisitFrame(const Frame& frame, uintptr_t pc) = 0;
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700160 };
161
Carl Shapiro61e019d2011-07-14 16:53:09 -0700162 // Creates a new thread.
Elliott Hughesd369bb72011-09-12 14:41:14 -0700163 static void Create(Object* peer, size_t stack_size);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700164
165 // Creates a new thread from the calling thread.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700166 static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon);
Carl Shapirob5573532011-07-12 18:22:59 -0700167
168 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700169 void* thread = pthread_getspecific(Thread::pthread_key_self_);
170 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700171 }
172
Elliott Hughes01158d72011-09-19 19:47:10 -0700173 static Thread* FromManagedThread(JNIEnv* env, jobject thread);
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700174 static uint32_t LockOwnerFromThreadLock(Object* thread_lock);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700175
Elliott Hughesa0957642011-09-02 14:27:33 -0700176 void Dump(std::ostream& os) const;
177
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700178 State GetState() const {
179 return state_;
180 }
181
Elliott Hughes8d768a92011-09-14 16:35:25 -0700182 State SetState(State new_state);
183
Elliott Hughes038a8062011-09-18 14:12:41 -0700184 bool IsDaemon();
185
Elliott Hughes8d768a92011-09-14 16:35:25 -0700186 void WaitUntilSuspended();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700187
Elliott Hughes5f791332011-09-15 17:45:30 -0700188 bool HoldsLock(Object*);
189
Elliott Hughes8daa0922011-09-11 13:46:25 -0700190 /*
191 * Changes the priority of this thread to match that of the java.lang.Thread object.
192 *
193 * We map a priority value from 1-10 to Linux "nice" values, where lower
194 * numbers indicate higher priority.
195 */
196 void SetNativePriority(int newPriority);
197
198 /*
199 * Returns the thread priority for the current thread by querying the system.
200 * This is useful when attaching a thread through JNI.
201 *
202 * Returns a value from 1 to 10 (compatible with java.lang.Thread values).
203 */
204 static int GetNativePriority();
205
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700206 bool CanAccessDirectReferences() const {
Elliott Hughesa59d1792011-09-04 18:42:35 -0700207 // TODO: when we have a moving collector, we'll need: return state_ == kRunnable;
208 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700209 }
210
Elliott Hughesdcc24742011-09-07 14:02:44 -0700211 uint32_t GetThinLockId() const {
212 return thin_lock_id_;
Carl Shapirob5573532011-07-12 18:22:59 -0700213 }
214
Elliott Hughesd92bec42011-09-02 17:04:36 -0700215 pid_t GetTid() const {
216 return tid_;
217 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700218
219 pthread_t GetImpl() const {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700220 return pthread_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700221 }
222
Elliott Hughesd369bb72011-09-12 14:41:14 -0700223 Object* GetPeer() const {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700224 return peer_;
225 }
226
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700227 RuntimeStats* GetStats() {
228 return &stats_;
229 }
230
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700231 // Returns the Method* for the current method.
232 // This is used by the JNI implementation for logging and diagnostic purposes.
233 const Method* GetCurrentMethod() const {
234 return top_of_managed_stack_.GetMethod();
235 }
236
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700237 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700238 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700239 }
240
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700241 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700242 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700243 return exception_;
244 }
245
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700246 void SetException(Throwable* new_exception) {
247 DCHECK(CanAccessDirectReferences());
248 CHECK(new_exception != NULL);
249 // TODO: CHECK(exception_ == NULL);
250 exception_ = new_exception; // TODO
251 }
252
253 void ClearException() {
254 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700255 }
256
Ian Rogersbdb03912011-09-14 00:55:44 -0700257 // Find catch block and perform long jump to appropriate exception handle
Ian Rogersff1ed472011-09-20 13:46:24 -0700258 void DeliverException();
Ian Rogersbdb03912011-09-14 00:55:44 -0700259
260 Context* GetLongJumpContext();
261
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700262 Frame GetTopOfStack() const {
263 return top_of_managed_stack_;
264 }
265
266 // TODO: this is here for testing, remove when we have exception unit tests
267 // that use the real stack
Ian Rogersbdb03912011-09-14 00:55:44 -0700268 void SetTopOfStack(void* stack, uintptr_t pc) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700269 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Ian Rogersbdb03912011-09-14 00:55:44 -0700270 top_of_managed_stack_pc_ = pc;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700271 }
272
Ian Rogersbdb03912011-09-14 00:55:44 -0700273 void SetTopOfStackPC(uintptr_t pc) {
274 top_of_managed_stack_pc_ = pc;
275 }
276
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700277 // 'msg' may be NULL.
278 void ThrowNewException(const char* exception_class_descriptor, const char* msg);
279
280 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700281 __attribute__ ((format(printf, 3, 4)));
282
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700283 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap);
284
Elliott Hughes79082e32011-08-25 12:07:32 -0700285 // This exception is special, because we need to pre-allocate an instance.
286 void ThrowOutOfMemoryError();
287
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700288 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
289
290 void* FindExceptionHandlerInMethod(const Method* method,
291 void* throw_pc,
292 const DexFile& dex_file,
293 ClassLinker* class_linker);
buzbeec143c552011-08-20 17:38:58 -0700294
Carl Shapirob5573532011-07-12 18:22:59 -0700295 void SetName(const char* name);
296
Elliott Hughesbe759c62011-09-08 19:38:21 -0700297 static void Startup();
Elliott Hughes038a8062011-09-18 14:12:41 -0700298 static void FinishStartup();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700299 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700300
Ian Rogersb033c752011-07-20 12:22:35 -0700301 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700302 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700303 return jni_env_;
304 }
305
Ian Rogers408f79a2011-08-23 18:22:33 -0700306 // Number of references allocated in SIRTs on this thread
307 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700308
Ian Rogers408f79a2011-08-23 18:22:33 -0700309 // Is the given obj in this thread's stack indirect reference table?
310 bool SirtContains(jobject obj);
311
Shih-wei Liao8dfc9d52011-09-28 18:06:15 -0700312 void SirtVisitRoots(Heap::RootVisitor* visitor, void* arg);
313
Ian Rogers67375ac2011-09-14 00:55:44 -0700314 // Pop the top SIRT
315 void PopSirt();
316
Ian Rogers408f79a2011-08-23 18:22:33 -0700317 // Convert a jobject into a Object*
318 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700319
Elliott Hughes8daa0922011-09-11 13:46:25 -0700320 // Implements java.lang.Thread.interrupted.
321 bool Interrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700322 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700323 bool interrupted = interrupted_;
324 interrupted_ = false;
325 return interrupted;
326 }
327
328 // Implements java.lang.Thread.isInterrupted.
329 bool IsInterrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700330 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700331 return interrupted_;
332 }
333
Elliott Hughes5f791332011-09-15 17:45:30 -0700334 void Interrupt() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700335 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700336 if (interrupted_) {
337 return;
338 }
339 interrupted_ = true;
340 NotifyLocked();
341 }
342
343 void Notify() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700344 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700345 NotifyLocked();
346 }
347
Ian Rogers6de08602011-08-19 14:52:39 -0700348 // Linked list recording transitions from native to managed code
349 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Ian Rogersbdb03912011-09-14 00:55:44 -0700350 record->last_top_of_managed_stack_ = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
351 record->last_top_of_managed_stack_pc_ = top_of_managed_stack_pc_;
352 record->link_ = native_to_managed_record_;
Ian Rogers6de08602011-08-19 14:52:39 -0700353 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700354 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700355 }
Ian Rogers5a7a74a2011-09-26 16:32:29 -0700356
Ian Rogers6de08602011-08-19 14:52:39 -0700357 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
Ian Rogersbdb03912011-09-14 00:55:44 -0700358 native_to_managed_record_ = record.link_;
359 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(record.last_top_of_managed_stack_));
360 top_of_managed_stack_pc_ = record.last_top_of_managed_stack_pc_;
Ian Rogers6de08602011-08-19 14:52:39 -0700361 }
362
Brian Carlstrombffb1552011-08-25 12:23:53 -0700363 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700364 // TODO: need to place the class_loader_override_ in a handle
365 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700366 return class_loader_override_;
367 }
368
Brian Carlstrombffb1552011-08-25 12:23:53 -0700369 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700370 class_loader_override_ = class_loader_override;
371 }
372
Ian Rogersaaa20802011-09-11 21:47:37 -0700373 // Create the internal representation of a stack trace, that is more time
374 // and space efficient to compute than the StackTraceElement[]
Elliott Hughes01158d72011-09-19 19:47:10 -0700375 jobject CreateInternalStackTrace(JNIEnv* env) const;
Ian Rogersaaa20802011-09-11 21:47:37 -0700376
Elliott Hughes01158d72011-09-19 19:47:10 -0700377 // Convert an internal stack trace representation (returned by CreateInternalStackTrace) to a
378 // StackTraceElement[]. If output_array is NULL, a new array is created, otherwise as many
379 // frames as will fit are written into the given array. If stack_depth is non-NULL, it's updated
380 // with the number of valid frames in the returned array.
381 static jobjectArray InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal,
382 jobjectArray output_array = NULL, int* stack_depth = NULL);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700383
Ian Rogersd6b1f612011-09-27 13:38:14 -0700384 void VisitRoots(Heap::RootVisitor* visitor, void* arg);
Elliott Hughes410c0c82011-09-01 17:58:25 -0700385
Elliott Hughesbe759c62011-09-08 19:38:21 -0700386 //
387 // Offsets of various members of native Thread class, used by compiled code.
388 //
389
390 static ThreadOffset SelfOffset() {
391 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
392 }
393
394 static ThreadOffset ExceptionOffset() {
395 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
396 }
397
Elliott Hughes54e7df12011-09-16 11:47:04 -0700398 static ThreadOffset ThinLockIdOffset() {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700399 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
400 }
401
402 static ThreadOffset CardTableOffset() {
403 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
404 }
405
406 static ThreadOffset SuspendCountOffset() {
407 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
408 }
409
410 static ThreadOffset StateOffset() {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700411 return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700412 }
413
Ian Rogers932746a2011-09-22 18:57:50 -0700414 // Size of stack less any space reserved for stack overflow
415 size_t GetStackSize() {
416 return stack_size_ - (stack_end_ - stack_base_);
417 }
418
419 // Set the stack end to that to be used during a stack overflow
420 void SetStackEndForStackOverflow() {
421 // During stack overflow we allow use of the full stack
422 CHECK(stack_end_ != stack_base_) << "Need to increase: kStackOverflowReservedBytes ("
423 << kStackOverflowReservedBytes << ")";
424 stack_end_ = stack_base_;
425 }
426
427 // Set the stack end to that to be used during regular execution
428 void ResetDefaultStackEnd() {
429 // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room
430 // to throw a StackOverflowError.
431 stack_end_ = stack_base_ + kStackOverflowReservedBytes;
432 }
433
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700434 static ThreadOffset StackEndOffset() {
435 return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700436 }
437
438 static ThreadOffset JniEnvOffset() {
439 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
440 }
441
442 static ThreadOffset TopOfManagedStackOffset() {
443 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
444 OFFSETOF_MEMBER(Frame, sp_));
445 }
446
Ian Rogersbdb03912011-09-14 00:55:44 -0700447 static ThreadOffset TopOfManagedStackPcOffset() {
448 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_pc_));
449 }
450
Elliott Hughesbe759c62011-09-08 19:38:21 -0700451 static ThreadOffset TopSirtOffset() {
452 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
453 }
454
Shih-wei Liao9407c602011-09-16 10:36:43 -0700455 void WalkStack(StackVisitor* visitor) const;
456
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700457 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700458 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700459 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700460 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700461
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700462 void CreatePeer(const char* name, bool as_daemon);
463 friend class Runtime; // For CreatePeer.
464
Elliott Hughesd92bec42011-09-02 17:04:36 -0700465 void DumpState(std::ostream& os) const;
466 void DumpStack(std::ostream& os) const;
467
Elliott Hughes93e74e82011-09-13 11:07:03 -0700468 void Attach(const Runtime* runtime);
469 static void* CreateCallback(void* arg);
470
Ian Rogersb033c752011-07-20 12:22:35 -0700471 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700472 void InitFunctionPointers();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700473 void InitStackHwm();
474
Elliott Hughes5f791332011-09-15 17:45:30 -0700475 void NotifyLocked() {
476 if (wait_monitor_ != NULL) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700477 wait_cond_->Signal();
Elliott Hughes5f791332011-09-15 17:45:30 -0700478 }
479 }
480
Elliott Hughesbe759c62011-09-08 19:38:21 -0700481 static void ThreadExitCallback(void* arg);
Ian Rogersb033c752011-07-20 12:22:35 -0700482
Ian Rogers67375ac2011-09-14 00:55:44 -0700483 void WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const;
Ian Rogersbdb03912011-09-14 00:55:44 -0700484
Elliott Hughesdcc24742011-09-07 14:02:44 -0700485 // Thin lock thread id. This is a small integer used by the thin lock implementation.
486 // This is not to be confused with the native thread's tid, nor is it the value returned
487 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
488 // important difference between this id and the ids visible to managed code is that these
489 // ones get reused (to ensure that they fit in the number of bits available).
490 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700491
Elliott Hughesd92bec42011-09-02 17:04:36 -0700492 // System thread id.
493 pid_t tid_;
494
495 // Native thread handle.
Elliott Hughesbe759c62011-09-08 19:38:21 -0700496 pthread_t pthread_;
Elliott Hughesd92bec42011-09-02 17:04:36 -0700497
Elliott Hughesdcc24742011-09-07 14:02:44 -0700498 // Our managed peer (an instance of java.lang.Thread).
Elliott Hughesd369bb72011-09-12 14:41:14 -0700499 Object* peer_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700500
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700501 // The top_of_managed_stack_ and top_of_managed_stack_pc_ fields are accessed from
502 // compiled code, so we keep them early in the structure to (a) avoid having to keep
503 // fixing the assembler offsets and (b) improve the chances that these will still be aligned.
504
505 // Top of the managed stack, written out prior to the state transition from
Elliott Hughes68e76522011-10-05 13:22:16 -0700506 // kRunnable to kNative. Uses include giving the starting point for scanning
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700507 // a managed stack when a thread is in native code.
508 Frame top_of_managed_stack_;
509 // PC corresponding to the call out of the top_of_managed_stack_ frame
510 uintptr_t top_of_managed_stack_pc_;
511
Elliott Hughes8daa0922011-09-11 13:46:25 -0700512 // Guards the 'interrupted_' and 'wait_monitor_' members.
Elliott Hughes85d15452011-09-16 17:33:01 -0700513 mutable Mutex* wait_mutex_;
514 ConditionVariable* wait_cond_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700515 // Pointer to the monitor lock we're currently waiting on (or NULL), guarded by wait_mutex_.
516 Monitor* wait_monitor_;
517 // Thread "interrupted" status; stays raised until queried or thrown, guarded by wait_mutex_.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700518 uint32_t interrupted_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700519 // The next thread in the wait set this thread is part of.
520 Thread* wait_next_;
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700521 // If we're blocked in MonitorEnter, this is the object we're trying to lock.
522 Object* monitor_enter_object_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700523
524 friend class Monitor;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700525
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700526 RuntimeStats stats_;
527
buzbeec143c552011-08-20 17:38:58 -0700528 // FIXME: placeholder for the gc cardTable
529 uint32_t card_table_;
530
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700531 // The end of this thread's stack. This is the lowest safely-addressable address on the stack.
532 // We leave extra space so there's room for the code that throws StackOverflowError.
533 byte* stack_end_;
Elliott Hughesbe759c62011-09-08 19:38:21 -0700534
Ian Rogers932746a2011-09-22 18:57:50 -0700535 // Size of the stack
536 size_t stack_size_;
537
538 // The "lowest addressable byte" of the stack
539 byte* stack_base_;
540
Ian Rogers6de08602011-08-19 14:52:39 -0700541 // A linked list (of stack allocated records) recording transitions from
542 // native to managed code.
543 NativeToManagedRecord* native_to_managed_record_;
544
Ian Rogers408f79a2011-08-23 18:22:33 -0700545 // Top of linked list of stack indirect reference tables or NULL for none
546 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700547
548 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700549 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700550
Elliott Hughes93e74e82011-09-13 11:07:03 -0700551 volatile State state_;
Carl Shapirob5573532011-07-12 18:22:59 -0700552
Carl Shapiro69759ea2011-07-21 18:13:35 -0700553 // Initialized to "this". On certain architectures (such as x86) reading
554 // off of Thread::Current is easy but getting the address of Thread::Current
555 // is hard. This field can be read off of Thread::Current to give the address.
556 Thread* self_;
557
558 Runtime* runtime_;
559
560 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700561 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700562
Ian Rogers45a76cb2011-07-21 22:00:15 -0700563 // A non-zero value is used to tell the current thread to enter a safe point
564 // at the next poll.
565 int suspend_count_;
566
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700567 // Needed to get the right ClassLoader in JNI_OnLoad, but also
568 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700569 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700570
Ian Rogersbdb03912011-09-14 00:55:44 -0700571 // Thread local, lazily allocated, long jump context. Used to deliver exceptions.
Elliott Hughes85d15452011-09-16 17:33:01 -0700572 Context* long_jump_context_;
Ian Rogersbdb03912011-09-14 00:55:44 -0700573
Carl Shapiro69759ea2011-07-21 18:13:35 -0700574 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700575 static pthread_key_t pthread_key_self_;
576
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700577 DISALLOW_COPY_AND_ASSIGN(Thread);
578};
Ian Rogersbdb03912011-09-14 00:55:44 -0700579
Elliott Hughes330304d2011-08-12 14:28:05 -0700580std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700581std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700582
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700583class ScopedThreadStateChange {
584 public:
585 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
586 old_thread_state_ = thread_->SetState(new_state);
587 }
588
589 ~ScopedThreadStateChange() {
590 thread_->SetState(old_thread_state_);
591 }
592
593 private:
594 Thread* thread_;
595 Thread::State old_thread_state_;
596 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
597};
598
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700599} // namespace art
600
601#endif // ART_SRC_THREAD_H_