blob: a4fd3bcf34da78aa4bd2671bb4ed20dcef58ff72 [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
Brian Carlstrom72db0d72011-11-10 17:58:56 -080088 static const size_t kDefaultStackSize = 96 * KB;
Carl Shapiro61e019d2011-07-14 16:53:09 -070089
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
Elliott Hughesd369bb72011-09-12 14:41:14 -0700232 Object* GetPeer() const {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700233 return peer_;
234 }
235
Elliott Hughesa2155262011-11-16 16:26:58 -0800236 Object* GetThreadGroup() const;
237
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700238 RuntimeStats* GetStats() {
239 return &stats_;
240 }
241
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700242 // Returns the Method* for the current method.
243 // This is used by the JNI implementation for logging and diagnostic purposes.
Elliott Hughes9fd66f52011-10-16 12:13:26 -0700244 const Method* GetCurrentMethod() const;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700245
jeffhao33dc7712011-11-09 17:54:24 -0800246 uint32_t GetCurrentReturnPc() const;
247
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700248 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700249 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700250 }
251
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700252 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700253 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700254 return exception_;
255 }
256
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700257 void SetException(Throwable* new_exception) {
258 DCHECK(CanAccessDirectReferences());
259 CHECK(new_exception != NULL);
260 // TODO: CHECK(exception_ == NULL);
261 exception_ = new_exception; // TODO
262 }
263
264 void ClearException() {
265 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700266 }
267
Ian Rogersbdb03912011-09-14 00:55:44 -0700268 // Find catch block and perform long jump to appropriate exception handle
Ian Rogersff1ed472011-09-20 13:46:24 -0700269 void DeliverException();
Ian Rogersbdb03912011-09-14 00:55:44 -0700270
271 Context* GetLongJumpContext();
272
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700273 Frame GetTopOfStack() const {
274 return top_of_managed_stack_;
275 }
276
277 // TODO: this is here for testing, remove when we have exception unit tests
278 // that use the real stack
Ian Rogersbdb03912011-09-14 00:55:44 -0700279 void SetTopOfStack(void* stack, uintptr_t pc) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700280 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Ian Rogersbdb03912011-09-14 00:55:44 -0700281 top_of_managed_stack_pc_ = pc;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700282 }
283
Ian Rogersbdb03912011-09-14 00:55:44 -0700284 void SetTopOfStackPC(uintptr_t pc) {
285 top_of_managed_stack_pc_ = pc;
286 }
287
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700288 // 'msg' may be NULL.
289 void ThrowNewException(const char* exception_class_descriptor, const char* msg);
290
291 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700292 __attribute__((format(printf, 3, 4)));
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700293
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700294 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap);
295
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700296 // OutOfMemoryError is special, because we need to pre-allocate an instance.
297 void ThrowOutOfMemoryError(const char* msg);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700298 void ThrowOutOfMemoryError(Class* c, size_t byte_count);
Elliott Hughes79082e32011-08-25 12:07:32 -0700299
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700300 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
301
302 void* FindExceptionHandlerInMethod(const Method* method,
303 void* throw_pc,
304 const DexFile& dex_file,
305 ClassLinker* class_linker);
buzbeec143c552011-08-20 17:38:58 -0700306
Carl Shapirob5573532011-07-12 18:22:59 -0700307 void SetName(const char* name);
308
Elliott Hughesbe759c62011-09-08 19:38:21 -0700309 static void Startup();
Elliott Hughes038a8062011-09-18 14:12:41 -0700310 static void FinishStartup();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700311 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700312
Ian Rogersb033c752011-07-20 12:22:35 -0700313 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700314 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700315 return jni_env_;
316 }
317
Ian Rogers408f79a2011-08-23 18:22:33 -0700318 // Number of references allocated in SIRTs on this thread
319 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700320
Ian Rogers408f79a2011-08-23 18:22:33 -0700321 // Is the given obj in this thread's stack indirect reference table?
322 bool SirtContains(jobject obj);
323
Shih-wei Liao8dfc9d52011-09-28 18:06:15 -0700324 void SirtVisitRoots(Heap::RootVisitor* visitor, void* arg);
325
Ian Rogers408f79a2011-08-23 18:22:33 -0700326 // Convert a jobject into a Object*
327 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700328
Elliott Hughes8daa0922011-09-11 13:46:25 -0700329 // Implements java.lang.Thread.interrupted.
330 bool Interrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700331 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700332 bool interrupted = interrupted_;
333 interrupted_ = false;
334 return interrupted;
335 }
336
337 // Implements java.lang.Thread.isInterrupted.
338 bool IsInterrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700339 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700340 return interrupted_;
341 }
342
Elliott Hughes5f791332011-09-15 17:45:30 -0700343 void Interrupt() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700344 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700345 if (interrupted_) {
346 return;
347 }
348 interrupted_ = true;
349 NotifyLocked();
350 }
351
352 void Notify() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700353 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700354 NotifyLocked();
355 }
356
Ian Rogers6de08602011-08-19 14:52:39 -0700357 // Linked list recording transitions from native to managed code
Ian Rogersb04f69f2011-10-17 00:40:54 -0700358 void PushNativeToManagedRecord(NativeToManagedRecord* record);
359 void PopNativeToManagedRecord(const NativeToManagedRecord& record);
Ian Rogers6de08602011-08-19 14:52:39 -0700360
Brian Carlstrombffb1552011-08-25 12:23:53 -0700361 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700362 // TODO: need to place the class_loader_override_ in a handle
363 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700364 return class_loader_override_;
365 }
366
Brian Carlstrombffb1552011-08-25 12:23:53 -0700367 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700368 class_loader_override_ = class_loader_override;
369 }
370
Ian Rogersaaa20802011-09-11 21:47:37 -0700371 // Create the internal representation of a stack trace, that is more time
372 // and space efficient to compute than the StackTraceElement[]
Elliott Hughes01158d72011-09-19 19:47:10 -0700373 jobject CreateInternalStackTrace(JNIEnv* env) const;
Ian Rogersaaa20802011-09-11 21:47:37 -0700374
Elliott Hughes01158d72011-09-19 19:47:10 -0700375 // Convert an internal stack trace representation (returned by CreateInternalStackTrace) to a
376 // StackTraceElement[]. If output_array is NULL, a new array is created, otherwise as many
377 // frames as will fit are written into the given array. If stack_depth is non-NULL, it's updated
378 // with the number of valid frames in the returned array.
379 static jobjectArray InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal,
380 jobjectArray output_array = NULL, int* stack_depth = NULL);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700381
Ian Rogersd6b1f612011-09-27 13:38:14 -0700382 void VisitRoots(Heap::RootVisitor* visitor, void* arg);
Elliott Hughes410c0c82011-09-01 17:58:25 -0700383
Elliott Hughesbe759c62011-09-08 19:38:21 -0700384 //
385 // Offsets of various members of native Thread class, used by compiled code.
386 //
387
388 static ThreadOffset SelfOffset() {
389 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
390 }
391
392 static ThreadOffset ExceptionOffset() {
393 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
394 }
395
Elliott Hughes54e7df12011-09-16 11:47:04 -0700396 static ThreadOffset ThinLockIdOffset() {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700397 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
398 }
399
400 static ThreadOffset CardTableOffset() {
401 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
402 }
403
404 static ThreadOffset SuspendCountOffset() {
405 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
406 }
407
408 static ThreadOffset StateOffset() {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700409 return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700410 }
411
Ian Rogers932746a2011-09-22 18:57:50 -0700412 // Size of stack less any space reserved for stack overflow
413 size_t GetStackSize() {
414 return stack_size_ - (stack_end_ - stack_base_);
415 }
416
417 // Set the stack end to that to be used during a stack overflow
418 void SetStackEndForStackOverflow() {
419 // During stack overflow we allow use of the full stack
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700420 if (stack_end_ == stack_base_) {
421 DumpStack(std::cerr);
422 LOG(FATAL) << "Need to increase kStackOverflowReservedBytes (currently "
423 << kStackOverflowReservedBytes << ")";
424 }
425
Ian Rogers932746a2011-09-22 18:57:50 -0700426 stack_end_ = stack_base_;
427 }
428
429 // Set the stack end to that to be used during regular execution
430 void ResetDefaultStackEnd() {
431 // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room
432 // to throw a StackOverflowError.
433 stack_end_ = stack_base_ + kStackOverflowReservedBytes;
434 }
435
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700436 static ThreadOffset StackEndOffset() {
437 return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700438 }
439
440 static ThreadOffset JniEnvOffset() {
441 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
442 }
443
444 static ThreadOffset TopOfManagedStackOffset() {
445 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
446 OFFSETOF_MEMBER(Frame, sp_));
447 }
448
Ian Rogersbdb03912011-09-14 00:55:44 -0700449 static ThreadOffset TopOfManagedStackPcOffset() {
450 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_pc_));
451 }
452
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700453 void PushSirt(StackIndirectReferenceTable* sirt);
454 StackIndirectReferenceTable* PopSirt();
455
Elliott Hughesbe759c62011-09-08 19:38:21 -0700456 static ThreadOffset TopSirtOffset() {
457 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
458 }
459
Shih-wei Liao9407c602011-09-16 10:36:43 -0700460 void WalkStack(StackVisitor* visitor) const;
461
Elliott Hughes475fc232011-10-25 15:00:35 -0700462 DebugInvokeReq* GetInvokeReq() {
463 return debug_invoke_req_;
464 }
465
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700466 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700467 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700468 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700469 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700470
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700471 void CreatePeer(const char* name, bool as_daemon);
472 friend class Runtime; // For CreatePeer.
473
Elliott Hughesd92bec42011-09-02 17:04:36 -0700474 void DumpState(std::ostream& os) const;
475 void DumpStack(std::ostream& os) const;
476
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700477 // Out-of-line conveniences for debugging in gdb.
Elliott Hughes498508c2011-10-17 14:58:22 -0700478 static Thread* CurrentFromGdb(); // Like Thread::Current.
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700479 void DumpFromGdb() const; // Like Thread::Dump(std::cerr).
480
Elliott Hughes93e74e82011-09-13 11:07:03 -0700481 void Attach(const Runtime* runtime);
482 static void* CreateCallback(void* arg);
483
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700484 void HandleUncaughtExceptions();
Brian Carlstrom4514d3c2011-10-21 17:01:31 -0700485 void RemoveFromThreadGroup();
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700486
Ian Rogers5d76c432011-10-31 21:42:49 -0700487 void InitCardTable();
Ian Rogersb033c752011-07-20 12:22:35 -0700488 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700489 void InitFunctionPointers();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700490 void InitTid();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700491 void InitPthreadKeySelf();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700492 void InitStackHwm();
493
Elliott Hughes5f791332011-09-15 17:45:30 -0700494 void NotifyLocked() {
495 if (wait_monitor_ != NULL) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700496 wait_cond_->Signal();
Elliott Hughes5f791332011-09-15 17:45:30 -0700497 }
498 }
499
Elliott Hughesbe759c62011-09-08 19:38:21 -0700500 static void ThreadExitCallback(void* arg);
Ian Rogersb033c752011-07-20 12:22:35 -0700501
Ian Rogers67375ac2011-09-14 00:55:44 -0700502 void WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const;
Ian Rogersbdb03912011-09-14 00:55:44 -0700503
Elliott Hughesdcc24742011-09-07 14:02:44 -0700504 // Thin lock thread id. This is a small integer used by the thin lock implementation.
505 // This is not to be confused with the native thread's tid, nor is it the value returned
506 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
507 // important difference between this id and the ids visible to managed code is that these
508 // ones get reused (to ensure that they fit in the number of bits available).
509 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700510
Elliott Hughesd92bec42011-09-02 17:04:36 -0700511 // System thread id.
512 pid_t tid_;
513
Elliott Hughesdcc24742011-09-07 14:02:44 -0700514 // Our managed peer (an instance of java.lang.Thread).
Elliott Hughesd369bb72011-09-12 14:41:14 -0700515 Object* peer_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700516
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700517 // The top_of_managed_stack_ and top_of_managed_stack_pc_ fields are accessed from
518 // compiled code, so we keep them early in the structure to (a) avoid having to keep
519 // fixing the assembler offsets and (b) improve the chances that these will still be aligned.
520
521 // Top of the managed stack, written out prior to the state transition from
Elliott Hughes68e76522011-10-05 13:22:16 -0700522 // kRunnable to kNative. Uses include giving the starting point for scanning
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700523 // a managed stack when a thread is in native code.
524 Frame top_of_managed_stack_;
525 // PC corresponding to the call out of the top_of_managed_stack_ frame
526 uintptr_t top_of_managed_stack_pc_;
527
Elliott Hughes8daa0922011-09-11 13:46:25 -0700528 // Guards the 'interrupted_' and 'wait_monitor_' members.
Elliott Hughes85d15452011-09-16 17:33:01 -0700529 mutable Mutex* wait_mutex_;
530 ConditionVariable* wait_cond_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700531 // Pointer to the monitor lock we're currently waiting on (or NULL), guarded by wait_mutex_.
532 Monitor* wait_monitor_;
533 // Thread "interrupted" status; stays raised until queried or thrown, guarded by wait_mutex_.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700534 uint32_t interrupted_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700535 // The next thread in the wait set this thread is part of.
536 Thread* wait_next_;
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700537 // If we're blocked in MonitorEnter, this is the object we're trying to lock.
538 Object* monitor_enter_object_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700539
540 friend class Monitor;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700541
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700542 RuntimeStats stats_;
543
Ian Rogers5d76c432011-10-31 21:42:49 -0700544 // The biased card table, see CardTable for details
545 byte* card_table_;
buzbeec143c552011-08-20 17:38:58 -0700546
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700547 // The end of this thread's stack. This is the lowest safely-addressable address on the stack.
548 // We leave extra space so there's room for the code that throws StackOverflowError.
549 byte* stack_end_;
Elliott Hughesbe759c62011-09-08 19:38:21 -0700550
Ian Rogers932746a2011-09-22 18:57:50 -0700551 // Size of the stack
552 size_t stack_size_;
553
554 // The "lowest addressable byte" of the stack
555 byte* stack_base_;
556
Ian Rogers6de08602011-08-19 14:52:39 -0700557 // A linked list (of stack allocated records) recording transitions from
558 // native to managed code.
559 NativeToManagedRecord* native_to_managed_record_;
560
Ian Rogers408f79a2011-08-23 18:22:33 -0700561 // Top of linked list of stack indirect reference tables or NULL for none
562 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700563
564 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700565 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700566
Elliott Hughes93e74e82011-09-13 11:07:03 -0700567 volatile State state_;
Carl Shapirob5573532011-07-12 18:22:59 -0700568
Carl Shapiro69759ea2011-07-21 18:13:35 -0700569 // Initialized to "this". On certain architectures (such as x86) reading
570 // off of Thread::Current is easy but getting the address of Thread::Current
571 // is hard. This field can be read off of Thread::Current to give the address.
572 Thread* self_;
573
574 Runtime* runtime_;
575
576 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700577 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700578
Ian Rogers45a76cb2011-07-21 22:00:15 -0700579 // A non-zero value is used to tell the current thread to enter a safe point
580 // at the next poll.
581 int suspend_count_;
Elliott Hughes234ab152011-10-26 14:02:26 -0700582 // How much of 'suspend_count_' is by request of the debugger, used to set things right
583 // when the debugger detaches. Must be <= suspend_count_.
584 int debug_suspend_count_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700585
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700586 // Needed to get the right ClassLoader in JNI_OnLoad, but also
587 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700588 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700589
Ian Rogersbdb03912011-09-14 00:55:44 -0700590 // Thread local, lazily allocated, long jump context. Used to deliver exceptions.
Elliott Hughes85d15452011-09-16 17:33:01 -0700591 Context* long_jump_context_;
Ian Rogersbdb03912011-09-14 00:55:44 -0700592
Elliott Hughes418dfe72011-10-06 18:56:27 -0700593 // A boolean telling us whether we're recursively throwing OOME.
Elliott Hughes726079d2011-10-07 18:43:44 -0700594 uint32_t throwing_OutOfMemoryError_;
595
596 Throwable* pre_allocated_OutOfMemoryError_;
Elliott Hughes418dfe72011-10-06 18:56:27 -0700597
Elliott Hughes475fc232011-10-25 15:00:35 -0700598 // JDWP invoke-during-breakpoint support.
599 DebugInvokeReq* debug_invoke_req_;
600
Carl Shapiro69759ea2011-07-21 18:13:35 -0700601 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700602 static pthread_key_t pthread_key_self_;
603
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700604 DISALLOW_COPY_AND_ASSIGN(Thread);
605};
Ian Rogersbdb03912011-09-14 00:55:44 -0700606
Elliott Hughes330304d2011-08-12 14:28:05 -0700607std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700608std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700609
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700610class ScopedThreadStateChange {
611 public:
612 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
613 old_thread_state_ = thread_->SetState(new_state);
614 }
615
616 ~ScopedThreadStateChange() {
617 thread_->SetState(old_thread_state_);
618 }
619
620 private:
621 Thread* thread_;
622 Thread::State old_thread_state_;
623 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
624};
625
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700626} // namespace art
627
628#endif // ART_SRC_THREAD_H_