blob: 8edeaf2daf67c6dcbb9bf986015796bc76061101 [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;
Elliott Hughes68e76522011-10-05 13:22:16 -070050class StackIndirectReferenceTable;
Shih-wei Liao55df06b2011-08-26 14:39:27 -070051class StackTraceElement;
buzbee1da522d2011-09-04 11:22:20 -070052class StaticStorageBase;
Brian Carlstrom40381fb2011-10-19 14:13:40 -070053class Thread;
54class ThreadList;
55class Throwable;
buzbee1da522d2011-09-04 11:22:20 -070056
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.
Brian Carlstromaded5f72011-10-07 17:15:04 -070085 static const size_t kStackOverflowReservedBytes = 4 * 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 Rogers4a510d82011-10-09 14:30:24 -0700119 void (*pCheckSuspendFromCode)(Thread*); // Stub that is called when the suspend count is non-zero
120 void (*pTestSuspendFromCode)(); // Stub that is periodically called to test the suspend count
Ian Rogers21d9e832011-09-23 17:05:09 -0700121 void* (*pAllocObjectFromCode)(uint32_t, void*);
Elliott Hughesb408de72011-10-04 14:35:05 -0700122 void* (*pAllocArrayFromCode)(uint32_t, void*, int32_t);
Ian Rogerse51a5112011-09-23 14:16:35 -0700123 void (*pCanPutArrayElementFromCode)(void*, void*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700124 void* (*pCheckAndAllocArrayFromCode)(uint32_t, void*, int32_t);
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700125 void (*pCheckCastFromCode)(void*, void*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700126 Object* (*pDecodeJObjectInThread)(Thread* thread, jobject obj);
127 void (*pDeliverException)(void*);
128 void* (*pFindInstanceFieldFromCode)(uint32_t, void*);
129 Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*);
130 void* (*pFindNativeMethod)(Thread* thread);
131 int32_t (*pGet32Static)(uint32_t, void*);
132 int64_t (*pGet64Static)(uint32_t, void*);
133 void* (*pGetObjStatic)(uint32_t, void*);
134 void (*pHandleFillArrayDataFromCode)(void*, void*);
135 void* (*pInitializeStaticStorage)(uint32_t, void*);
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700136 uint32_t (*pInstanceofNonTrivialFromCode)(const Class*, const Class*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700137 void (*pInvokeInterfaceTrampoline)(uint32_t, void*);
138 Class* (*pInitializeTypeFromCode)(uint32_t, Method*);
139 void (*pLockObjectFromCode)(void*);
Brian Carlstrom6fd03fb2011-10-17 16:11:00 -0700140 void (*pObjectInit)(void*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700141 void (*pResolveMethodFromCode)(Method*, uint32_t);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700142 void* (*pResolveStringFromCode)(void*, uint32_t);
Ian Rogersce9eca62011-10-07 17:11:03 -0700143 int (*pSet32Static)(uint32_t, void*, int32_t);
144 int (*pSet64Static)(uint32_t, void*, int64_t);
145 int (*pSetObjStatic)(uint32_t, void*, void*);
Ian Rogers932746a2011-09-22 18:57:50 -0700146 void (*pThrowStackOverflowFromCode)(void*);
buzbee5ade1d22011-09-09 14:44:52 -0700147 void (*pThrowNullPointerFromCode)();
148 void (*pThrowArrayBoundsFromCode)(int32_t, int32_t);
149 void (*pThrowDivZeroFromCode)();
150 void (*pThrowVerificationErrorFromCode)(int32_t, int32_t);
151 void (*pThrowNegArraySizeFromCode)(int32_t);
buzbee5ade1d22011-09-09 14:44:52 -0700152 void (*pThrowNoSuchMethodFromCode)(int32_t);
Ian Rogersff1ed472011-09-20 13:46:24 -0700153 void (*pThrowAbstractMethodErrorFromCode)(Method* method, Thread* thread, Method** sp);
Ian Rogersce9eca62011-10-07 17:11:03 -0700154 void (*pUnlockObjectFromCode)(void*);
Brian Carlstrom6a4be3a2011-10-20 16:34:03 -0700155 void* (*pUnresolvedDirectMethodTrampolineFromCode)(int32_t, Method**, Thread*,
Ian Rogersce9eca62011-10-07 17:11:03 -0700156 Runtime::TrampolineType);
buzbeec143c552011-08-20 17:38:58 -0700157
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700158 class StackVisitor {
159 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700160 virtual ~StackVisitor() {}
Ian Rogersbdb03912011-09-14 00:55:44 -0700161 virtual void VisitFrame(const Frame& frame, uintptr_t pc) = 0;
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700162 };
163
Carl Shapiro61e019d2011-07-14 16:53:09 -0700164 // Creates a new thread.
Elliott Hughesd369bb72011-09-12 14:41:14 -0700165 static void Create(Object* peer, size_t stack_size);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700166
167 // Creates a new thread from the calling thread.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700168 static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon);
Carl Shapirob5573532011-07-12 18:22:59 -0700169
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700170 // Reset internal state of child thread after fork.
171 void InitAfterFork();
172
Carl Shapirob5573532011-07-12 18:22:59 -0700173 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700174 void* thread = pthread_getspecific(Thread::pthread_key_self_);
175 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700176 }
177
Elliott Hughes01158d72011-09-19 19:47:10 -0700178 static Thread* FromManagedThread(JNIEnv* env, jobject thread);
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700179 static uint32_t LockOwnerFromThreadLock(Object* thread_lock);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700180
Elliott Hughesa0957642011-09-02 14:27:33 -0700181 void Dump(std::ostream& os) const;
182
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700183 State GetState() const {
184 return state_;
185 }
186
Elliott Hughes8d768a92011-09-14 16:35:25 -0700187 State SetState(State new_state);
188
Elliott Hughes038a8062011-09-18 14:12:41 -0700189 bool IsDaemon();
190
Elliott Hughes8d768a92011-09-14 16:35:25 -0700191 void WaitUntilSuspended();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700192
Elliott Hughes5f791332011-09-15 17:45:30 -0700193 bool HoldsLock(Object*);
194
Elliott Hughes8daa0922011-09-11 13:46:25 -0700195 /*
196 * Changes the priority of this thread to match that of the java.lang.Thread object.
197 *
198 * We map a priority value from 1-10 to Linux "nice" values, where lower
199 * numbers indicate higher priority.
200 */
201 void SetNativePriority(int newPriority);
202
203 /*
204 * Returns the thread priority for the current thread by querying the system.
205 * This is useful when attaching a thread through JNI.
206 *
207 * Returns a value from 1 to 10 (compatible with java.lang.Thread values).
208 */
209 static int GetNativePriority();
210
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700211 bool CanAccessDirectReferences() const {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700212#ifdef MOVING_GARBAGE_COLLECTOR
Elliott Hughesa59d1792011-09-04 18:42:35 -0700213 // TODO: when we have a moving collector, we'll need: return state_ == kRunnable;
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700214#endif
Elliott Hughesa59d1792011-09-04 18:42:35 -0700215 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700216 }
217
Elliott Hughesdcc24742011-09-07 14:02:44 -0700218 uint32_t GetThinLockId() const {
219 return thin_lock_id_;
Carl Shapirob5573532011-07-12 18:22:59 -0700220 }
221
Elliott Hughesd92bec42011-09-02 17:04:36 -0700222 pid_t GetTid() const {
223 return tid_;
224 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700225
Elliott Hughesfc861622011-10-17 17:57:47 -0700226 // Returns the java.lang.Thread's name, or NULL.
227 String* GetName() const;
228
229 // Returns the current method's declaring class' source file and the current line number.
230 void GetCurrentLocation(const char*& source_file, uint32_t& line_number) 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 Hughes9d5ccec2011-09-19 13:19:50 -0700236 RuntimeStats* GetStats() {
237 return &stats_;
238 }
239
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700240 // Returns the Method* for the current method.
241 // This is used by the JNI implementation for logging and diagnostic purposes.
Elliott Hughes9fd66f52011-10-16 12:13:26 -0700242 const Method* GetCurrentMethod() const;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700243
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700244 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700245 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700246 }
247
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700248 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700249 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700250 return exception_;
251 }
252
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700253 void SetException(Throwable* new_exception) {
254 DCHECK(CanAccessDirectReferences());
255 CHECK(new_exception != NULL);
256 // TODO: CHECK(exception_ == NULL);
257 exception_ = new_exception; // TODO
258 }
259
260 void ClearException() {
261 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700262 }
263
Ian Rogersbdb03912011-09-14 00:55:44 -0700264 // Find catch block and perform long jump to appropriate exception handle
Ian Rogersff1ed472011-09-20 13:46:24 -0700265 void DeliverException();
Ian Rogersbdb03912011-09-14 00:55:44 -0700266
267 Context* GetLongJumpContext();
268
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700269 Frame GetTopOfStack() const {
270 return top_of_managed_stack_;
271 }
272
273 // TODO: this is here for testing, remove when we have exception unit tests
274 // that use the real stack
Ian Rogersbdb03912011-09-14 00:55:44 -0700275 void SetTopOfStack(void* stack, uintptr_t pc) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700276 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Ian Rogersbdb03912011-09-14 00:55:44 -0700277 top_of_managed_stack_pc_ = pc;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700278 }
279
Ian Rogersbdb03912011-09-14 00:55:44 -0700280 void SetTopOfStackPC(uintptr_t pc) {
281 top_of_managed_stack_pc_ = pc;
282 }
283
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700284 // 'msg' may be NULL.
285 void ThrowNewException(const char* exception_class_descriptor, const char* msg);
286
287 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700288 __attribute__((format(printf, 3, 4)));
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700289
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700290 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap);
291
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700292 // OutOfMemoryError is special, because we need to pre-allocate an instance.
293 void ThrowOutOfMemoryError(const char* msg);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700294 void ThrowOutOfMemoryError(Class* c, size_t byte_count);
Elliott Hughes79082e32011-08-25 12:07:32 -0700295
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700296 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
297
298 void* FindExceptionHandlerInMethod(const Method* method,
299 void* throw_pc,
300 const DexFile& dex_file,
301 ClassLinker* class_linker);
buzbeec143c552011-08-20 17:38:58 -0700302
Carl Shapirob5573532011-07-12 18:22:59 -0700303 void SetName(const char* name);
304
Elliott Hughesbe759c62011-09-08 19:38:21 -0700305 static void Startup();
Elliott Hughes038a8062011-09-18 14:12:41 -0700306 static void FinishStartup();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700307 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700308
Ian Rogersb033c752011-07-20 12:22:35 -0700309 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700310 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700311 return jni_env_;
312 }
313
Ian Rogers408f79a2011-08-23 18:22:33 -0700314 // Number of references allocated in SIRTs on this thread
315 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700316
Ian Rogers408f79a2011-08-23 18:22:33 -0700317 // Is the given obj in this thread's stack indirect reference table?
318 bool SirtContains(jobject obj);
319
Shih-wei Liao8dfc9d52011-09-28 18:06:15 -0700320 void SirtVisitRoots(Heap::RootVisitor* visitor, void* arg);
321
Ian Rogers408f79a2011-08-23 18:22:33 -0700322 // Convert a jobject into a Object*
323 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700324
Elliott Hughes8daa0922011-09-11 13:46:25 -0700325 // Implements java.lang.Thread.interrupted.
326 bool Interrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700327 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700328 bool interrupted = interrupted_;
329 interrupted_ = false;
330 return interrupted;
331 }
332
333 // Implements java.lang.Thread.isInterrupted.
334 bool IsInterrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700335 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700336 return interrupted_;
337 }
338
Elliott Hughes5f791332011-09-15 17:45:30 -0700339 void Interrupt() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700340 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700341 if (interrupted_) {
342 return;
343 }
344 interrupted_ = true;
345 NotifyLocked();
346 }
347
348 void Notify() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700349 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700350 NotifyLocked();
351 }
352
Ian Rogers6de08602011-08-19 14:52:39 -0700353 // Linked list recording transitions from native to managed code
Ian Rogersb04f69f2011-10-17 00:40:54 -0700354 void PushNativeToManagedRecord(NativeToManagedRecord* record);
355 void PopNativeToManagedRecord(const NativeToManagedRecord& record);
Ian Rogers6de08602011-08-19 14:52:39 -0700356
Brian Carlstrombffb1552011-08-25 12:23:53 -0700357 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700358 // TODO: need to place the class_loader_override_ in a handle
359 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700360 return class_loader_override_;
361 }
362
Brian Carlstrombffb1552011-08-25 12:23:53 -0700363 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700364 class_loader_override_ = class_loader_override;
365 }
366
Ian Rogersaaa20802011-09-11 21:47:37 -0700367 // Create the internal representation of a stack trace, that is more time
368 // and space efficient to compute than the StackTraceElement[]
Elliott Hughes01158d72011-09-19 19:47:10 -0700369 jobject CreateInternalStackTrace(JNIEnv* env) const;
Ian Rogersaaa20802011-09-11 21:47:37 -0700370
Elliott Hughes01158d72011-09-19 19:47:10 -0700371 // Convert an internal stack trace representation (returned by CreateInternalStackTrace) to a
372 // StackTraceElement[]. If output_array is NULL, a new array is created, otherwise as many
373 // frames as will fit are written into the given array. If stack_depth is non-NULL, it's updated
374 // with the number of valid frames in the returned array.
375 static jobjectArray InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal,
376 jobjectArray output_array = NULL, int* stack_depth = NULL);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700377
Ian Rogersd6b1f612011-09-27 13:38:14 -0700378 void VisitRoots(Heap::RootVisitor* visitor, void* arg);
Elliott Hughes410c0c82011-09-01 17:58:25 -0700379
Elliott Hughesbe759c62011-09-08 19:38:21 -0700380 //
381 // Offsets of various members of native Thread class, used by compiled code.
382 //
383
384 static ThreadOffset SelfOffset() {
385 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
386 }
387
388 static ThreadOffset ExceptionOffset() {
389 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
390 }
391
Elliott Hughes54e7df12011-09-16 11:47:04 -0700392 static ThreadOffset ThinLockIdOffset() {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700393 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
394 }
395
396 static ThreadOffset CardTableOffset() {
397 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
398 }
399
400 static ThreadOffset SuspendCountOffset() {
401 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
402 }
403
404 static ThreadOffset StateOffset() {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700405 return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700406 }
407
Ian Rogers932746a2011-09-22 18:57:50 -0700408 // Size of stack less any space reserved for stack overflow
409 size_t GetStackSize() {
410 return stack_size_ - (stack_end_ - stack_base_);
411 }
412
413 // Set the stack end to that to be used during a stack overflow
414 void SetStackEndForStackOverflow() {
415 // During stack overflow we allow use of the full stack
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700416 if (stack_end_ == stack_base_) {
417 DumpStack(std::cerr);
418 LOG(FATAL) << "Need to increase kStackOverflowReservedBytes (currently "
419 << kStackOverflowReservedBytes << ")";
420 }
421
Ian Rogers932746a2011-09-22 18:57:50 -0700422 stack_end_ = stack_base_;
423 }
424
425 // Set the stack end to that to be used during regular execution
426 void ResetDefaultStackEnd() {
427 // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room
428 // to throw a StackOverflowError.
429 stack_end_ = stack_base_ + kStackOverflowReservedBytes;
430 }
431
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700432 static ThreadOffset StackEndOffset() {
433 return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700434 }
435
436 static ThreadOffset JniEnvOffset() {
437 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
438 }
439
440 static ThreadOffset TopOfManagedStackOffset() {
441 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
442 OFFSETOF_MEMBER(Frame, sp_));
443 }
444
Ian Rogersbdb03912011-09-14 00:55:44 -0700445 static ThreadOffset TopOfManagedStackPcOffset() {
446 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_pc_));
447 }
448
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700449 void PushSirt(StackIndirectReferenceTable* sirt);
450 StackIndirectReferenceTable* PopSirt();
451
Elliott Hughesbe759c62011-09-08 19:38:21 -0700452 static ThreadOffset TopSirtOffset() {
453 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
454 }
455
Shih-wei Liao9407c602011-09-16 10:36:43 -0700456 void WalkStack(StackVisitor* visitor) const;
457
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700458 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700459 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700460 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700461 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700462
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700463 void CreatePeer(const char* name, bool as_daemon);
464 friend class Runtime; // For CreatePeer.
465
Elliott Hughesd92bec42011-09-02 17:04:36 -0700466 void DumpState(std::ostream& os) const;
467 void DumpStack(std::ostream& os) const;
468
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700469 // Out-of-line conveniences for debugging in gdb.
Elliott Hughes498508c2011-10-17 14:58:22 -0700470 static Thread* CurrentFromGdb(); // Like Thread::Current.
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700471 void DumpFromGdb() const; // Like Thread::Dump(std::cerr).
472
Elliott Hughes93e74e82011-09-13 11:07:03 -0700473 void Attach(const Runtime* runtime);
474 static void* CreateCallback(void* arg);
475
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700476 void HandleUncaughtExceptions();
Brian Carlstrom4514d3c2011-10-21 17:01:31 -0700477 void RemoveFromThreadGroup();
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700478
Ian Rogersb033c752011-07-20 12:22:35 -0700479 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700480 void InitFunctionPointers();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700481 void InitTid();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700482 void InitPthreadKeySelf();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700483 void InitStackHwm();
484
Elliott Hughes5f791332011-09-15 17:45:30 -0700485 void NotifyLocked() {
486 if (wait_monitor_ != NULL) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700487 wait_cond_->Signal();
Elliott Hughes5f791332011-09-15 17:45:30 -0700488 }
489 }
490
Elliott Hughesbe759c62011-09-08 19:38:21 -0700491 static void ThreadExitCallback(void* arg);
Ian Rogersb033c752011-07-20 12:22:35 -0700492
Ian Rogers67375ac2011-09-14 00:55:44 -0700493 void WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const;
Ian Rogersbdb03912011-09-14 00:55:44 -0700494
Elliott Hughesdcc24742011-09-07 14:02:44 -0700495 // Thin lock thread id. This is a small integer used by the thin lock implementation.
496 // This is not to be confused with the native thread's tid, nor is it the value returned
497 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
498 // important difference between this id and the ids visible to managed code is that these
499 // ones get reused (to ensure that they fit in the number of bits available).
500 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700501
Elliott Hughesd92bec42011-09-02 17:04:36 -0700502 // System thread id.
503 pid_t tid_;
504
Elliott Hughesdcc24742011-09-07 14:02:44 -0700505 // Our managed peer (an instance of java.lang.Thread).
Elliott Hughesd369bb72011-09-12 14:41:14 -0700506 Object* peer_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700507
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700508 // The top_of_managed_stack_ and top_of_managed_stack_pc_ fields are accessed from
509 // compiled code, so we keep them early in the structure to (a) avoid having to keep
510 // fixing the assembler offsets and (b) improve the chances that these will still be aligned.
511
512 // Top of the managed stack, written out prior to the state transition from
Elliott Hughes68e76522011-10-05 13:22:16 -0700513 // kRunnable to kNative. Uses include giving the starting point for scanning
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700514 // a managed stack when a thread is in native code.
515 Frame top_of_managed_stack_;
516 // PC corresponding to the call out of the top_of_managed_stack_ frame
517 uintptr_t top_of_managed_stack_pc_;
518
Elliott Hughes8daa0922011-09-11 13:46:25 -0700519 // Guards the 'interrupted_' and 'wait_monitor_' members.
Elliott Hughes85d15452011-09-16 17:33:01 -0700520 mutable Mutex* wait_mutex_;
521 ConditionVariable* wait_cond_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700522 // Pointer to the monitor lock we're currently waiting on (or NULL), guarded by wait_mutex_.
523 Monitor* wait_monitor_;
524 // Thread "interrupted" status; stays raised until queried or thrown, guarded by wait_mutex_.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700525 uint32_t interrupted_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700526 // The next thread in the wait set this thread is part of.
527 Thread* wait_next_;
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700528 // If we're blocked in MonitorEnter, this is the object we're trying to lock.
529 Object* monitor_enter_object_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700530
531 friend class Monitor;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700532
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700533 RuntimeStats stats_;
534
buzbeec143c552011-08-20 17:38:58 -0700535 // FIXME: placeholder for the gc cardTable
536 uint32_t card_table_;
537
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700538 // The end of this thread's stack. This is the lowest safely-addressable address on the stack.
539 // We leave extra space so there's room for the code that throws StackOverflowError.
540 byte* stack_end_;
Elliott Hughesbe759c62011-09-08 19:38:21 -0700541
Ian Rogers932746a2011-09-22 18:57:50 -0700542 // Size of the stack
543 size_t stack_size_;
544
545 // The "lowest addressable byte" of the stack
546 byte* stack_base_;
547
Ian Rogers6de08602011-08-19 14:52:39 -0700548 // A linked list (of stack allocated records) recording transitions from
549 // native to managed code.
550 NativeToManagedRecord* native_to_managed_record_;
551
Ian Rogers408f79a2011-08-23 18:22:33 -0700552 // Top of linked list of stack indirect reference tables or NULL for none
553 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700554
555 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700556 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700557
Elliott Hughes93e74e82011-09-13 11:07:03 -0700558 volatile State state_;
Carl Shapirob5573532011-07-12 18:22:59 -0700559
Carl Shapiro69759ea2011-07-21 18:13:35 -0700560 // Initialized to "this". On certain architectures (such as x86) reading
561 // off of Thread::Current is easy but getting the address of Thread::Current
562 // is hard. This field can be read off of Thread::Current to give the address.
563 Thread* self_;
564
565 Runtime* runtime_;
566
567 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700568 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700569
Ian Rogers45a76cb2011-07-21 22:00:15 -0700570 // A non-zero value is used to tell the current thread to enter a safe point
571 // at the next poll.
572 int suspend_count_;
573
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700574 // Needed to get the right ClassLoader in JNI_OnLoad, but also
575 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700576 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700577
Ian Rogersbdb03912011-09-14 00:55:44 -0700578 // Thread local, lazily allocated, long jump context. Used to deliver exceptions.
Elliott Hughes85d15452011-09-16 17:33:01 -0700579 Context* long_jump_context_;
Ian Rogersbdb03912011-09-14 00:55:44 -0700580
Elliott Hughes418dfe72011-10-06 18:56:27 -0700581 // A boolean telling us whether we're recursively throwing OOME.
Elliott Hughes726079d2011-10-07 18:43:44 -0700582 uint32_t throwing_OutOfMemoryError_;
583
584 Throwable* pre_allocated_OutOfMemoryError_;
Elliott Hughes418dfe72011-10-06 18:56:27 -0700585
Carl Shapiro69759ea2011-07-21 18:13:35 -0700586 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700587 static pthread_key_t pthread_key_self_;
588
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700589 DISALLOW_COPY_AND_ASSIGN(Thread);
590};
Ian Rogersbdb03912011-09-14 00:55:44 -0700591
Elliott Hughes330304d2011-08-12 14:28:05 -0700592std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700593std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700594
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700595class ScopedThreadStateChange {
596 public:
597 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
598 old_thread_state_ = thread_->SetState(new_state);
599 }
600
601 ~ScopedThreadStateChange() {
602 thread_->SetState(old_thread_state_);
603 }
604
605 private:
606 Thread* thread_;
607 Thread::State old_thread_state_;
608 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
609};
610
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700611} // namespace art
612
613#endif // ART_SRC_THREAD_H_