blob: 547fdfa7177847d094878c22767671310eac8cca [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;
Elliott Hughes475fc232011-10-25 15:00:35 -070046class DebugInvokeReq;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070047class Method;
Elliott Hughes8daa0922011-09-11 13:46:25 -070048class Monitor;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070049class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070050class Runtime;
Elliott Hughes68e76522011-10-05 13:22:16 -070051class StackIndirectReferenceTable;
Shih-wei Liao55df06b2011-08-26 14:39:27 -070052class StackTraceElement;
buzbee1da522d2011-09-04 11:22:20 -070053class StaticStorageBase;
Brian Carlstrom40381fb2011-10-19 14:13:40 -070054class Thread;
55class ThreadList;
56class Throwable;
buzbee1da522d2011-09-04 11:22:20 -070057
Shih-wei Liao55df06b2011-08-26 14:39:27 -070058template<class T> class ObjectArray;
Shih-wei Liao44175362011-08-28 16:59:17 -070059template<class T> class PrimitiveArray;
60typedef PrimitiveArray<int32_t> IntArray;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070061
Elliott Hughes85d15452011-09-16 17:33:01 -070062class PACKED Thread {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070063 public:
Elliott Hughes8daa0922011-09-11 13:46:25 -070064 /* thread priorities, from java.lang.Thread */
65 enum Priority {
66 kMinPriority = 1,
67 kNormPriority = 5,
68 kMaxPriority = 10,
69 };
Carl Shapirob5573532011-07-12 18:22:59 -070070 enum State {
Elliott Hughes93e74e82011-09-13 11:07:03 -070071 // These match up with JDWP values.
72 kTerminated = 0, // TERMINATED
73 kRunnable = 1, // RUNNABLE or running now
74 kTimedWaiting = 2, // TIMED_WAITING in Object.wait()
75 kBlocked = 3, // BLOCKED on a monitor
76 kWaiting = 4, // WAITING in Object.wait()
77 // Non-JDWP states.
78 kInitializing = 5, // allocated, not yet running --- TODO: unnecessary?
79 kStarting = 6, // native thread started, not yet ready to run managed code
80 kNative = 7, // off in a JNI native method
81 kVmWait = 8, // waiting on a VM resource
82 kSuspended = 9, // suspended, usually by GC or debugger
Carl Shapirob5573532011-07-12 18:22:59 -070083 };
84
Ian Rogers932746a2011-09-22 18:57:50 -070085 // Space to throw a StackOverflowError in.
Brian Carlstromaded5f72011-10-07 17:15:04 -070086 static const size_t kStackOverflowReservedBytes = 4 * KB;
buzbeec143c552011-08-20 17:38:58 -070087
Carl Shapiro61e019d2011-07-14 16:53:09 -070088 static const size_t kDefaultStackSize = 64 * KB;
89
buzbeec143c552011-08-20 17:38:58 -070090 // Runtime support function pointers
buzbee4a3164f2011-09-03 11:25:10 -070091 void (*pDebugMe)(Method*, uint32_t);
buzbeec143c552011-08-20 17:38:58 -070092 void* (*pMemcpy)(void*, const void*, size_t);
buzbee54330722011-08-23 16:46:55 -070093 uint64_t (*pShlLong)(uint64_t, uint32_t);
94 uint64_t (*pShrLong)(uint64_t, uint32_t);
95 uint64_t (*pUshrLong)(uint64_t, uint32_t);
buzbeec143c552011-08-20 17:38:58 -070096 float (*pI2f)(int);
97 int (*pF2iz)(float);
98 float (*pD2f)(double);
99 double (*pF2d)(float);
100 double (*pI2d)(int);
101 int (*pD2iz)(double);
102 float (*pL2f)(long);
103 double (*pL2d)(long);
buzbee1b4c8592011-08-31 10:43:51 -0700104 long long (*pF2l)(float);
105 long long (*pD2l)(double);
buzbeec143c552011-08-20 17:38:58 -0700106 float (*pFadd)(float, float);
107 float (*pFsub)(float, float);
108 float (*pFdiv)(float, float);
109 float (*pFmul)(float, float);
110 float (*pFmodf)(float, float);
111 double (*pDadd)(double, double);
112 double (*pDsub)(double, double);
113 double (*pDdiv)(double, double);
114 double (*pDmul)(double, double);
115 double (*pFmod)(double, double);
116 int (*pIdivmod)(int, int);
117 int (*pIdiv)(int, int);
buzbee439c4fa2011-08-27 15:59:07 -0700118 long long (*pLmul)(long long, long long);
buzbeec143c552011-08-20 17:38:58 -0700119 long long (*pLdivmod)(long long, long long);
Ian Rogers4a510d82011-10-09 14:30:24 -0700120 void (*pCheckSuspendFromCode)(Thread*); // Stub that is called when the suspend count is non-zero
121 void (*pTestSuspendFromCode)(); // Stub that is periodically called to test the suspend count
Ian Rogers21d9e832011-09-23 17:05:09 -0700122 void* (*pAllocObjectFromCode)(uint32_t, void*);
Ian Rogers28ad40d2011-10-27 15:19:26 -0700123 void* (*pAllocObjectFromCodeWithAccessCheck)(uint32_t, void*);
Elliott Hughesb408de72011-10-04 14:35:05 -0700124 void* (*pAllocArrayFromCode)(uint32_t, void*, int32_t);
Ian Rogerse51a5112011-09-23 14:16:35 -0700125 void (*pCanPutArrayElementFromCode)(void*, void*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700126 void* (*pCheckAndAllocArrayFromCode)(uint32_t, void*, int32_t);
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700127 void (*pCheckCastFromCode)(void*, void*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700128 Object* (*pDecodeJObjectInThread)(Thread* thread, jobject obj);
129 void (*pDeliverException)(void*);
130 void* (*pFindInstanceFieldFromCode)(uint32_t, void*);
131 Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*);
132 void* (*pFindNativeMethod)(Thread* thread);
133 int32_t (*pGet32Static)(uint32_t, void*);
134 int64_t (*pGet64Static)(uint32_t, void*);
135 void* (*pGetObjStatic)(uint32_t, void*);
136 void (*pHandleFillArrayDataFromCode)(void*, void*);
137 void* (*pInitializeStaticStorage)(uint32_t, void*);
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700138 uint32_t (*pInstanceofNonTrivialFromCode)(const Class*, const Class*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700139 void (*pInvokeInterfaceTrampoline)(uint32_t, void*);
Ian Rogers28ad40d2011-10-27 15:19:26 -0700140 void* (*pInitializeTypeFromCode)(uint32_t, void*);
Ian Rogersb093c6b2011-10-31 16:19:55 -0700141 void* (*pInitializeTypeAndVerifyAccessFromCode)(uint32_t, void*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700142 void (*pLockObjectFromCode)(void*);
Brian Carlstrom6fd03fb2011-10-17 16:11:00 -0700143 void (*pObjectInit)(void*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700144 void (*pResolveMethodFromCode)(Method*, uint32_t);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700145 void* (*pResolveStringFromCode)(void*, uint32_t);
Ian Rogersce9eca62011-10-07 17:11:03 -0700146 int (*pSet32Static)(uint32_t, void*, int32_t);
147 int (*pSet64Static)(uint32_t, void*, int64_t);
148 int (*pSetObjStatic)(uint32_t, void*, void*);
Ian Rogers932746a2011-09-22 18:57:50 -0700149 void (*pThrowStackOverflowFromCode)(void*);
buzbee5ade1d22011-09-09 14:44:52 -0700150 void (*pThrowNullPointerFromCode)();
151 void (*pThrowArrayBoundsFromCode)(int32_t, int32_t);
152 void (*pThrowDivZeroFromCode)();
153 void (*pThrowVerificationErrorFromCode)(int32_t, int32_t);
154 void (*pThrowNegArraySizeFromCode)(int32_t);
buzbee5ade1d22011-09-09 14:44:52 -0700155 void (*pThrowNoSuchMethodFromCode)(int32_t);
Ian Rogersff1ed472011-09-20 13:46:24 -0700156 void (*pThrowAbstractMethodErrorFromCode)(Method* method, Thread* thread, Method** sp);
Ian Rogersce9eca62011-10-07 17:11:03 -0700157 void (*pUnlockObjectFromCode)(void*);
Brian Carlstrom6a4be3a2011-10-20 16:34:03 -0700158 void* (*pUnresolvedDirectMethodTrampolineFromCode)(int32_t, Method**, Thread*,
Ian Rogersce9eca62011-10-07 17:11:03 -0700159 Runtime::TrampolineType);
buzbeec143c552011-08-20 17:38:58 -0700160
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700161 class StackVisitor {
162 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700163 virtual ~StackVisitor() {}
Ian Rogersbdb03912011-09-14 00:55:44 -0700164 virtual void VisitFrame(const Frame& frame, uintptr_t pc) = 0;
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700165 };
166
Carl Shapiro61e019d2011-07-14 16:53:09 -0700167 // Creates a new thread.
Elliott Hughesd369bb72011-09-12 14:41:14 -0700168 static void Create(Object* peer, size_t stack_size);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700169
170 // Creates a new thread from the calling thread.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700171 static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon);
Carl Shapirob5573532011-07-12 18:22:59 -0700172
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700173 // Reset internal state of child thread after fork.
174 void InitAfterFork();
175
Carl Shapirob5573532011-07-12 18:22:59 -0700176 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700177 void* thread = pthread_getspecific(Thread::pthread_key_self_);
178 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700179 }
180
Elliott Hughes01158d72011-09-19 19:47:10 -0700181 static Thread* FromManagedThread(JNIEnv* env, jobject thread);
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700182 static uint32_t LockOwnerFromThreadLock(Object* thread_lock);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700183
Elliott Hughese0918552011-10-28 17:18:29 -0700184 void Dump(std::ostream& os, bool dump_pending_exception = false) const;
Elliott Hughesa0957642011-09-02 14:27:33 -0700185
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700186 State GetState() const {
187 return state_;
188 }
189
Elliott Hughes8d768a92011-09-14 16:35:25 -0700190 State SetState(State new_state);
191
Elliott Hughes038a8062011-09-18 14:12:41 -0700192 bool IsDaemon();
193
Elliott Hughes8d768a92011-09-14 16:35:25 -0700194 void WaitUntilSuspended();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700195
Elliott Hughes5f791332011-09-15 17:45:30 -0700196 bool HoldsLock(Object*);
197
Elliott Hughes8daa0922011-09-11 13:46:25 -0700198 /*
199 * Changes the priority of this thread to match that of the java.lang.Thread object.
200 *
201 * We map a priority value from 1-10 to Linux "nice" values, where lower
202 * numbers indicate higher priority.
203 */
204 void SetNativePriority(int newPriority);
205
206 /*
207 * Returns the thread priority for the current thread by querying the system.
208 * This is useful when attaching a thread through JNI.
209 *
210 * Returns a value from 1 to 10 (compatible with java.lang.Thread values).
211 */
212 static int GetNativePriority();
213
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700214 bool CanAccessDirectReferences() const {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700215#ifdef MOVING_GARBAGE_COLLECTOR
Elliott Hughesa59d1792011-09-04 18:42:35 -0700216 // TODO: when we have a moving collector, we'll need: return state_ == kRunnable;
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700217#endif
Elliott Hughesa59d1792011-09-04 18:42:35 -0700218 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700219 }
220
Elliott Hughesdcc24742011-09-07 14:02:44 -0700221 uint32_t GetThinLockId() const {
222 return thin_lock_id_;
Carl Shapirob5573532011-07-12 18:22:59 -0700223 }
224
Elliott Hughesd92bec42011-09-02 17:04:36 -0700225 pid_t GetTid() const {
226 return tid_;
227 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700228
Elliott Hughesfc861622011-10-17 17:57:47 -0700229 // Returns the java.lang.Thread's name, or NULL.
230 String* GetName() const;
231
232 // Returns the current method's declaring class' source file and the current line number.
233 void GetCurrentLocation(const char*& source_file, uint32_t& line_number) const;
234
Elliott Hughesd369bb72011-09-12 14:41:14 -0700235 Object* GetPeer() const {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700236 return peer_;
237 }
238
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700239 RuntimeStats* GetStats() {
240 return &stats_;
241 }
242
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700243 // Returns the Method* for the current method.
244 // This is used by the JNI implementation for logging and diagnostic purposes.
Elliott Hughes9fd66f52011-10-16 12:13:26 -0700245 const Method* GetCurrentMethod() const;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700246
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700247 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700248 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700249 }
250
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700251 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700252 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700253 return exception_;
254 }
255
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700256 void SetException(Throwable* new_exception) {
257 DCHECK(CanAccessDirectReferences());
258 CHECK(new_exception != NULL);
259 // TODO: CHECK(exception_ == NULL);
260 exception_ = new_exception; // TODO
261 }
262
263 void ClearException() {
264 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700265 }
266
Ian Rogersbdb03912011-09-14 00:55:44 -0700267 // Find catch block and perform long jump to appropriate exception handle
Ian Rogersff1ed472011-09-20 13:46:24 -0700268 void DeliverException();
Ian Rogersbdb03912011-09-14 00:55:44 -0700269
270 Context* GetLongJumpContext();
271
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700272 Frame GetTopOfStack() const {
273 return top_of_managed_stack_;
274 }
275
276 // TODO: this is here for testing, remove when we have exception unit tests
277 // that use the real stack
Ian Rogersbdb03912011-09-14 00:55:44 -0700278 void SetTopOfStack(void* stack, uintptr_t pc) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700279 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Ian Rogersbdb03912011-09-14 00:55:44 -0700280 top_of_managed_stack_pc_ = pc;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700281 }
282
Ian Rogersbdb03912011-09-14 00:55:44 -0700283 void SetTopOfStackPC(uintptr_t pc) {
284 top_of_managed_stack_pc_ = pc;
285 }
286
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700287 // 'msg' may be NULL.
288 void ThrowNewException(const char* exception_class_descriptor, const char* msg);
289
290 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700291 __attribute__((format(printf, 3, 4)));
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700292
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700293 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap);
294
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700295 // OutOfMemoryError is special, because we need to pre-allocate an instance.
296 void ThrowOutOfMemoryError(const char* msg);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700297 void ThrowOutOfMemoryError(Class* c, size_t byte_count);
Elliott Hughes79082e32011-08-25 12:07:32 -0700298
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700299 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
300
301 void* FindExceptionHandlerInMethod(const Method* method,
302 void* throw_pc,
303 const DexFile& dex_file,
304 ClassLinker* class_linker);
buzbeec143c552011-08-20 17:38:58 -0700305
Carl Shapirob5573532011-07-12 18:22:59 -0700306 void SetName(const char* name);
307
Elliott Hughesbe759c62011-09-08 19:38:21 -0700308 static void Startup();
Elliott Hughes038a8062011-09-18 14:12:41 -0700309 static void FinishStartup();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700310 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700311
Ian Rogersb033c752011-07-20 12:22:35 -0700312 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700313 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700314 return jni_env_;
315 }
316
Ian Rogers408f79a2011-08-23 18:22:33 -0700317 // Number of references allocated in SIRTs on this thread
318 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700319
Ian Rogers408f79a2011-08-23 18:22:33 -0700320 // Is the given obj in this thread's stack indirect reference table?
321 bool SirtContains(jobject obj);
322
Shih-wei Liao8dfc9d52011-09-28 18:06:15 -0700323 void SirtVisitRoots(Heap::RootVisitor* visitor, void* arg);
324
Ian Rogers408f79a2011-08-23 18:22:33 -0700325 // Convert a jobject into a Object*
326 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700327
Elliott Hughes8daa0922011-09-11 13:46:25 -0700328 // Implements java.lang.Thread.interrupted.
329 bool Interrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700330 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700331 bool interrupted = interrupted_;
332 interrupted_ = false;
333 return interrupted;
334 }
335
336 // Implements java.lang.Thread.isInterrupted.
337 bool IsInterrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700338 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700339 return interrupted_;
340 }
341
Elliott Hughes5f791332011-09-15 17:45:30 -0700342 void Interrupt() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700343 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700344 if (interrupted_) {
345 return;
346 }
347 interrupted_ = true;
348 NotifyLocked();
349 }
350
351 void Notify() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700352 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700353 NotifyLocked();
354 }
355
Ian Rogers6de08602011-08-19 14:52:39 -0700356 // Linked list recording transitions from native to managed code
Ian Rogersb04f69f2011-10-17 00:40:54 -0700357 void PushNativeToManagedRecord(NativeToManagedRecord* record);
358 void PopNativeToManagedRecord(const NativeToManagedRecord& record);
Ian Rogers6de08602011-08-19 14:52:39 -0700359
Brian Carlstrombffb1552011-08-25 12:23:53 -0700360 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700361 // TODO: need to place the class_loader_override_ in a handle
362 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700363 return class_loader_override_;
364 }
365
Brian Carlstrombffb1552011-08-25 12:23:53 -0700366 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700367 class_loader_override_ = class_loader_override;
368 }
369
Ian Rogersaaa20802011-09-11 21:47:37 -0700370 // Create the internal representation of a stack trace, that is more time
371 // and space efficient to compute than the StackTraceElement[]
Elliott Hughes01158d72011-09-19 19:47:10 -0700372 jobject CreateInternalStackTrace(JNIEnv* env) const;
Ian Rogersaaa20802011-09-11 21:47:37 -0700373
Elliott Hughes01158d72011-09-19 19:47:10 -0700374 // Convert an internal stack trace representation (returned by CreateInternalStackTrace) to a
375 // StackTraceElement[]. If output_array is NULL, a new array is created, otherwise as many
376 // frames as will fit are written into the given array. If stack_depth is non-NULL, it's updated
377 // with the number of valid frames in the returned array.
378 static jobjectArray InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal,
379 jobjectArray output_array = NULL, int* stack_depth = NULL);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700380
Ian Rogersd6b1f612011-09-27 13:38:14 -0700381 void VisitRoots(Heap::RootVisitor* visitor, void* arg);
Elliott Hughes410c0c82011-09-01 17:58:25 -0700382
Elliott Hughesbe759c62011-09-08 19:38:21 -0700383 //
384 // Offsets of various members of native Thread class, used by compiled code.
385 //
386
387 static ThreadOffset SelfOffset() {
388 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
389 }
390
391 static ThreadOffset ExceptionOffset() {
392 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
393 }
394
Elliott Hughes54e7df12011-09-16 11:47:04 -0700395 static ThreadOffset ThinLockIdOffset() {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700396 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
397 }
398
399 static ThreadOffset CardTableOffset() {
400 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
401 }
402
403 static ThreadOffset SuspendCountOffset() {
404 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
405 }
406
407 static ThreadOffset StateOffset() {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700408 return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700409 }
410
Ian Rogers932746a2011-09-22 18:57:50 -0700411 // Size of stack less any space reserved for stack overflow
412 size_t GetStackSize() {
413 return stack_size_ - (stack_end_ - stack_base_);
414 }
415
416 // Set the stack end to that to be used during a stack overflow
417 void SetStackEndForStackOverflow() {
418 // During stack overflow we allow use of the full stack
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700419 if (stack_end_ == stack_base_) {
420 DumpStack(std::cerr);
421 LOG(FATAL) << "Need to increase kStackOverflowReservedBytes (currently "
422 << kStackOverflowReservedBytes << ")";
423 }
424
Ian Rogers932746a2011-09-22 18:57:50 -0700425 stack_end_ = stack_base_;
426 }
427
428 // Set the stack end to that to be used during regular execution
429 void ResetDefaultStackEnd() {
430 // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room
431 // to throw a StackOverflowError.
432 stack_end_ = stack_base_ + kStackOverflowReservedBytes;
433 }
434
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700435 static ThreadOffset StackEndOffset() {
436 return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700437 }
438
439 static ThreadOffset JniEnvOffset() {
440 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
441 }
442
443 static ThreadOffset TopOfManagedStackOffset() {
444 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
445 OFFSETOF_MEMBER(Frame, sp_));
446 }
447
Ian Rogersbdb03912011-09-14 00:55:44 -0700448 static ThreadOffset TopOfManagedStackPcOffset() {
449 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_pc_));
450 }
451
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700452 void PushSirt(StackIndirectReferenceTable* sirt);
453 StackIndirectReferenceTable* PopSirt();
454
Elliott Hughesbe759c62011-09-08 19:38:21 -0700455 static ThreadOffset TopSirtOffset() {
456 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
457 }
458
Shih-wei Liao9407c602011-09-16 10:36:43 -0700459 void WalkStack(StackVisitor* visitor) const;
460
Elliott Hughes475fc232011-10-25 15:00:35 -0700461 DebugInvokeReq* GetInvokeReq() {
462 return debug_invoke_req_;
463 }
464
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700465 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700466 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700467 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700468 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700469
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700470 void CreatePeer(const char* name, bool as_daemon);
471 friend class Runtime; // For CreatePeer.
472
Elliott Hughesd92bec42011-09-02 17:04:36 -0700473 void DumpState(std::ostream& os) const;
474 void DumpStack(std::ostream& os) const;
475
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700476 // Out-of-line conveniences for debugging in gdb.
Elliott Hughes498508c2011-10-17 14:58:22 -0700477 static Thread* CurrentFromGdb(); // Like Thread::Current.
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700478 void DumpFromGdb() const; // Like Thread::Dump(std::cerr).
479
Elliott Hughes93e74e82011-09-13 11:07:03 -0700480 void Attach(const Runtime* runtime);
481 static void* CreateCallback(void* arg);
482
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700483 void HandleUncaughtExceptions();
Brian Carlstrom4514d3c2011-10-21 17:01:31 -0700484 void RemoveFromThreadGroup();
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700485
Ian Rogersb033c752011-07-20 12:22:35 -0700486 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700487 void InitFunctionPointers();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700488 void InitTid();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700489 void InitPthreadKeySelf();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700490 void InitStackHwm();
491
Elliott Hughes5f791332011-09-15 17:45:30 -0700492 void NotifyLocked() {
493 if (wait_monitor_ != NULL) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700494 wait_cond_->Signal();
Elliott Hughes5f791332011-09-15 17:45:30 -0700495 }
496 }
497
Elliott Hughesbe759c62011-09-08 19:38:21 -0700498 static void ThreadExitCallback(void* arg);
Ian Rogersb033c752011-07-20 12:22:35 -0700499
Ian Rogers67375ac2011-09-14 00:55:44 -0700500 void WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const;
Ian Rogersbdb03912011-09-14 00:55:44 -0700501
Elliott Hughesdcc24742011-09-07 14:02:44 -0700502 // Thin lock thread id. This is a small integer used by the thin lock implementation.
503 // This is not to be confused with the native thread's tid, nor is it the value returned
504 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
505 // important difference between this id and the ids visible to managed code is that these
506 // ones get reused (to ensure that they fit in the number of bits available).
507 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700508
Elliott Hughesd92bec42011-09-02 17:04:36 -0700509 // System thread id.
510 pid_t tid_;
511
Elliott Hughesdcc24742011-09-07 14:02:44 -0700512 // Our managed peer (an instance of java.lang.Thread).
Elliott Hughesd369bb72011-09-12 14:41:14 -0700513 Object* peer_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700514
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700515 // The top_of_managed_stack_ and top_of_managed_stack_pc_ fields are accessed from
516 // compiled code, so we keep them early in the structure to (a) avoid having to keep
517 // fixing the assembler offsets and (b) improve the chances that these will still be aligned.
518
519 // Top of the managed stack, written out prior to the state transition from
Elliott Hughes68e76522011-10-05 13:22:16 -0700520 // kRunnable to kNative. Uses include giving the starting point for scanning
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700521 // a managed stack when a thread is in native code.
522 Frame top_of_managed_stack_;
523 // PC corresponding to the call out of the top_of_managed_stack_ frame
524 uintptr_t top_of_managed_stack_pc_;
525
Elliott Hughes8daa0922011-09-11 13:46:25 -0700526 // Guards the 'interrupted_' and 'wait_monitor_' members.
Elliott Hughes85d15452011-09-16 17:33:01 -0700527 mutable Mutex* wait_mutex_;
528 ConditionVariable* wait_cond_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700529 // Pointer to the monitor lock we're currently waiting on (or NULL), guarded by wait_mutex_.
530 Monitor* wait_monitor_;
531 // Thread "interrupted" status; stays raised until queried or thrown, guarded by wait_mutex_.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700532 uint32_t interrupted_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700533 // The next thread in the wait set this thread is part of.
534 Thread* wait_next_;
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700535 // If we're blocked in MonitorEnter, this is the object we're trying to lock.
536 Object* monitor_enter_object_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700537
538 friend class Monitor;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700539
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700540 RuntimeStats stats_;
541
buzbeec143c552011-08-20 17:38:58 -0700542 // FIXME: placeholder for the gc cardTable
543 uint32_t card_table_;
544
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700545 // The end of this thread's stack. This is the lowest safely-addressable address on the stack.
546 // We leave extra space so there's room for the code that throws StackOverflowError.
547 byte* stack_end_;
Elliott Hughesbe759c62011-09-08 19:38:21 -0700548
Ian Rogers932746a2011-09-22 18:57:50 -0700549 // Size of the stack
550 size_t stack_size_;
551
552 // The "lowest addressable byte" of the stack
553 byte* stack_base_;
554
Ian Rogers6de08602011-08-19 14:52:39 -0700555 // A linked list (of stack allocated records) recording transitions from
556 // native to managed code.
557 NativeToManagedRecord* native_to_managed_record_;
558
Ian Rogers408f79a2011-08-23 18:22:33 -0700559 // Top of linked list of stack indirect reference tables or NULL for none
560 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700561
562 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700563 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700564
Elliott Hughes93e74e82011-09-13 11:07:03 -0700565 volatile State state_;
Carl Shapirob5573532011-07-12 18:22:59 -0700566
Carl Shapiro69759ea2011-07-21 18:13:35 -0700567 // Initialized to "this". On certain architectures (such as x86) reading
568 // off of Thread::Current is easy but getting the address of Thread::Current
569 // is hard. This field can be read off of Thread::Current to give the address.
570 Thread* self_;
571
572 Runtime* runtime_;
573
574 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700575 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700576
Ian Rogers45a76cb2011-07-21 22:00:15 -0700577 // A non-zero value is used to tell the current thread to enter a safe point
578 // at the next poll.
579 int suspend_count_;
Elliott Hughes234ab152011-10-26 14:02:26 -0700580 // How much of 'suspend_count_' is by request of the debugger, used to set things right
581 // when the debugger detaches. Must be <= suspend_count_.
582 int debug_suspend_count_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700583
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700584 // Needed to get the right ClassLoader in JNI_OnLoad, but also
585 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700586 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700587
Ian Rogersbdb03912011-09-14 00:55:44 -0700588 // Thread local, lazily allocated, long jump context. Used to deliver exceptions.
Elliott Hughes85d15452011-09-16 17:33:01 -0700589 Context* long_jump_context_;
Ian Rogersbdb03912011-09-14 00:55:44 -0700590
Elliott Hughes418dfe72011-10-06 18:56:27 -0700591 // A boolean telling us whether we're recursively throwing OOME.
Elliott Hughes726079d2011-10-07 18:43:44 -0700592 uint32_t throwing_OutOfMemoryError_;
593
594 Throwable* pre_allocated_OutOfMemoryError_;
Elliott Hughes418dfe72011-10-06 18:56:27 -0700595
Elliott Hughes475fc232011-10-25 15:00:35 -0700596 // JDWP invoke-during-breakpoint support.
597 DebugInvokeReq* debug_invoke_req_;
598
Carl Shapiro69759ea2011-07-21 18:13:35 -0700599 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700600 static pthread_key_t pthread_key_self_;
601
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700602 DISALLOW_COPY_AND_ASSIGN(Thread);
603};
Ian Rogersbdb03912011-09-14 00:55:44 -0700604
Elliott Hughes330304d2011-08-12 14:28:05 -0700605std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700606std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700607
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700608class ScopedThreadStateChange {
609 public:
610 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
611 old_thread_state_ = thread_->SetState(new_state);
612 }
613
614 ~ScopedThreadStateChange() {
615 thread_->SetState(old_thread_state_);
616 }
617
618 private:
619 Thread* thread_;
620 Thread::State old_thread_state_;
621 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
622};
623
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700624} // namespace art
625
626#endif // ART_SRC_THREAD_H_