blob: eec9df40adadd14985c7f614e4026a9073630d3c [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 Rogersce9eca62011-10-07 17:11:03 -0700141 void (*pLockObjectFromCode)(void*);
Brian Carlstrom6fd03fb2011-10-17 16:11:00 -0700142 void (*pObjectInit)(void*);
Ian Rogersce9eca62011-10-07 17:11:03 -0700143 void (*pResolveMethodFromCode)(Method*, uint32_t);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700144 void* (*pResolveStringFromCode)(void*, uint32_t);
Ian Rogersce9eca62011-10-07 17:11:03 -0700145 int (*pSet32Static)(uint32_t, void*, int32_t);
146 int (*pSet64Static)(uint32_t, void*, int64_t);
147 int (*pSetObjStatic)(uint32_t, void*, void*);
Ian Rogers932746a2011-09-22 18:57:50 -0700148 void (*pThrowStackOverflowFromCode)(void*);
buzbee5ade1d22011-09-09 14:44:52 -0700149 void (*pThrowNullPointerFromCode)();
150 void (*pThrowArrayBoundsFromCode)(int32_t, int32_t);
151 void (*pThrowDivZeroFromCode)();
152 void (*pThrowVerificationErrorFromCode)(int32_t, int32_t);
153 void (*pThrowNegArraySizeFromCode)(int32_t);
buzbee5ade1d22011-09-09 14:44:52 -0700154 void (*pThrowNoSuchMethodFromCode)(int32_t);
Ian Rogersff1ed472011-09-20 13:46:24 -0700155 void (*pThrowAbstractMethodErrorFromCode)(Method* method, Thread* thread, Method** sp);
Ian Rogersce9eca62011-10-07 17:11:03 -0700156 void (*pUnlockObjectFromCode)(void*);
Brian Carlstrom6a4be3a2011-10-20 16:34:03 -0700157 void* (*pUnresolvedDirectMethodTrampolineFromCode)(int32_t, Method**, Thread*,
Ian Rogersce9eca62011-10-07 17:11:03 -0700158 Runtime::TrampolineType);
buzbeec143c552011-08-20 17:38:58 -0700159
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700160 class StackVisitor {
161 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700162 virtual ~StackVisitor() {}
Ian Rogersbdb03912011-09-14 00:55:44 -0700163 virtual void VisitFrame(const Frame& frame, uintptr_t pc) = 0;
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700164 };
165
Carl Shapiro61e019d2011-07-14 16:53:09 -0700166 // Creates a new thread.
Elliott Hughesd369bb72011-09-12 14:41:14 -0700167 static void Create(Object* peer, size_t stack_size);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700168
169 // Creates a new thread from the calling thread.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700170 static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon);
Carl Shapirob5573532011-07-12 18:22:59 -0700171
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700172 // Reset internal state of child thread after fork.
173 void InitAfterFork();
174
Carl Shapirob5573532011-07-12 18:22:59 -0700175 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700176 void* thread = pthread_getspecific(Thread::pthread_key_self_);
177 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700178 }
179
Elliott Hughes01158d72011-09-19 19:47:10 -0700180 static Thread* FromManagedThread(JNIEnv* env, jobject thread);
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700181 static uint32_t LockOwnerFromThreadLock(Object* thread_lock);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700182
Elliott Hughese0918552011-10-28 17:18:29 -0700183 void Dump(std::ostream& os, bool dump_pending_exception = false) const;
Elliott Hughesa0957642011-09-02 14:27:33 -0700184
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700185 State GetState() const {
186 return state_;
187 }
188
Elliott Hughes8d768a92011-09-14 16:35:25 -0700189 State SetState(State new_state);
190
Elliott Hughes038a8062011-09-18 14:12:41 -0700191 bool IsDaemon();
192
Elliott Hughes8d768a92011-09-14 16:35:25 -0700193 void WaitUntilSuspended();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700194
Elliott Hughes5f791332011-09-15 17:45:30 -0700195 bool HoldsLock(Object*);
196
Elliott Hughes8daa0922011-09-11 13:46:25 -0700197 /*
198 * Changes the priority of this thread to match that of the java.lang.Thread object.
199 *
200 * We map a priority value from 1-10 to Linux "nice" values, where lower
201 * numbers indicate higher priority.
202 */
203 void SetNativePriority(int newPriority);
204
205 /*
206 * Returns the thread priority for the current thread by querying the system.
207 * This is useful when attaching a thread through JNI.
208 *
209 * Returns a value from 1 to 10 (compatible with java.lang.Thread values).
210 */
211 static int GetNativePriority();
212
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700213 bool CanAccessDirectReferences() const {
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700214#ifdef MOVING_GARBAGE_COLLECTOR
Elliott Hughesa59d1792011-09-04 18:42:35 -0700215 // TODO: when we have a moving collector, we'll need: return state_ == kRunnable;
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700216#endif
Elliott Hughesa59d1792011-09-04 18:42:35 -0700217 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700218 }
219
Elliott Hughesdcc24742011-09-07 14:02:44 -0700220 uint32_t GetThinLockId() const {
221 return thin_lock_id_;
Carl Shapirob5573532011-07-12 18:22:59 -0700222 }
223
Elliott Hughesd92bec42011-09-02 17:04:36 -0700224 pid_t GetTid() const {
225 return tid_;
226 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700227
Elliott Hughesfc861622011-10-17 17:57:47 -0700228 // Returns the java.lang.Thread's name, or NULL.
229 String* GetName() const;
230
231 // Returns the current method's declaring class' source file and the current line number.
232 void GetCurrentLocation(const char*& source_file, uint32_t& line_number) const;
233
Elliott Hughesd369bb72011-09-12 14:41:14 -0700234 Object* GetPeer() const {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700235 return peer_;
236 }
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
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700246 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700247 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700248 }
249
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700250 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700251 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700252 return exception_;
253 }
254
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700255 void SetException(Throwable* new_exception) {
256 DCHECK(CanAccessDirectReferences());
257 CHECK(new_exception != NULL);
258 // TODO: CHECK(exception_ == NULL);
259 exception_ = new_exception; // TODO
260 }
261
262 void ClearException() {
263 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700264 }
265
Ian Rogersbdb03912011-09-14 00:55:44 -0700266 // Find catch block and perform long jump to appropriate exception handle
Ian Rogersff1ed472011-09-20 13:46:24 -0700267 void DeliverException();
Ian Rogersbdb03912011-09-14 00:55:44 -0700268
269 Context* GetLongJumpContext();
270
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700271 Frame GetTopOfStack() const {
272 return top_of_managed_stack_;
273 }
274
275 // TODO: this is here for testing, remove when we have exception unit tests
276 // that use the real stack
Ian Rogersbdb03912011-09-14 00:55:44 -0700277 void SetTopOfStack(void* stack, uintptr_t pc) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700278 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Ian Rogersbdb03912011-09-14 00:55:44 -0700279 top_of_managed_stack_pc_ = pc;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700280 }
281
Ian Rogersbdb03912011-09-14 00:55:44 -0700282 void SetTopOfStackPC(uintptr_t pc) {
283 top_of_managed_stack_pc_ = pc;
284 }
285
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700286 // 'msg' may be NULL.
287 void ThrowNewException(const char* exception_class_descriptor, const char* msg);
288
289 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700290 __attribute__((format(printf, 3, 4)));
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700291
Elliott Hughes4a2b4172011-09-20 17:08:25 -0700292 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap);
293
Elliott Hughes2ced6a52011-10-16 18:44:48 -0700294 // OutOfMemoryError is special, because we need to pre-allocate an instance.
295 void ThrowOutOfMemoryError(const char* msg);
Elliott Hughes418dfe72011-10-06 18:56:27 -0700296 void ThrowOutOfMemoryError(Class* c, size_t byte_count);
Elliott Hughes79082e32011-08-25 12:07:32 -0700297
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700298 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
299
300 void* FindExceptionHandlerInMethod(const Method* method,
301 void* throw_pc,
302 const DexFile& dex_file,
303 ClassLinker* class_linker);
buzbeec143c552011-08-20 17:38:58 -0700304
Carl Shapirob5573532011-07-12 18:22:59 -0700305 void SetName(const char* name);
306
Elliott Hughesbe759c62011-09-08 19:38:21 -0700307 static void Startup();
Elliott Hughes038a8062011-09-18 14:12:41 -0700308 static void FinishStartup();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700309 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700310
Ian Rogersb033c752011-07-20 12:22:35 -0700311 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700312 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700313 return jni_env_;
314 }
315
Ian Rogers408f79a2011-08-23 18:22:33 -0700316 // Number of references allocated in SIRTs on this thread
317 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700318
Ian Rogers408f79a2011-08-23 18:22:33 -0700319 // Is the given obj in this thread's stack indirect reference table?
320 bool SirtContains(jobject obj);
321
Shih-wei Liao8dfc9d52011-09-28 18:06:15 -0700322 void SirtVisitRoots(Heap::RootVisitor* visitor, void* arg);
323
Ian Rogers408f79a2011-08-23 18:22:33 -0700324 // Convert a jobject into a Object*
325 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700326
Elliott Hughes8daa0922011-09-11 13:46:25 -0700327 // Implements java.lang.Thread.interrupted.
328 bool Interrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700329 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700330 bool interrupted = interrupted_;
331 interrupted_ = false;
332 return interrupted;
333 }
334
335 // Implements java.lang.Thread.isInterrupted.
336 bool IsInterrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700337 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700338 return interrupted_;
339 }
340
Elliott Hughes5f791332011-09-15 17:45:30 -0700341 void Interrupt() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700342 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700343 if (interrupted_) {
344 return;
345 }
346 interrupted_ = true;
347 NotifyLocked();
348 }
349
350 void Notify() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700351 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700352 NotifyLocked();
353 }
354
Ian Rogers6de08602011-08-19 14:52:39 -0700355 // Linked list recording transitions from native to managed code
Ian Rogersb04f69f2011-10-17 00:40:54 -0700356 void PushNativeToManagedRecord(NativeToManagedRecord* record);
357 void PopNativeToManagedRecord(const NativeToManagedRecord& record);
Ian Rogers6de08602011-08-19 14:52:39 -0700358
Brian Carlstrombffb1552011-08-25 12:23:53 -0700359 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700360 // TODO: need to place the class_loader_override_ in a handle
361 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700362 return class_loader_override_;
363 }
364
Brian Carlstrombffb1552011-08-25 12:23:53 -0700365 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700366 class_loader_override_ = class_loader_override;
367 }
368
Ian Rogersaaa20802011-09-11 21:47:37 -0700369 // Create the internal representation of a stack trace, that is more time
370 // and space efficient to compute than the StackTraceElement[]
Elliott Hughes01158d72011-09-19 19:47:10 -0700371 jobject CreateInternalStackTrace(JNIEnv* env) const;
Ian Rogersaaa20802011-09-11 21:47:37 -0700372
Elliott Hughes01158d72011-09-19 19:47:10 -0700373 // Convert an internal stack trace representation (returned by CreateInternalStackTrace) to a
374 // StackTraceElement[]. If output_array is NULL, a new array is created, otherwise as many
375 // frames as will fit are written into the given array. If stack_depth is non-NULL, it's updated
376 // with the number of valid frames in the returned array.
377 static jobjectArray InternalStackTraceToStackTraceElementArray(JNIEnv* env, jobject internal,
378 jobjectArray output_array = NULL, int* stack_depth = NULL);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700379
Ian Rogersd6b1f612011-09-27 13:38:14 -0700380 void VisitRoots(Heap::RootVisitor* visitor, void* arg);
Elliott Hughes410c0c82011-09-01 17:58:25 -0700381
Elliott Hughesbe759c62011-09-08 19:38:21 -0700382 //
383 // Offsets of various members of native Thread class, used by compiled code.
384 //
385
386 static ThreadOffset SelfOffset() {
387 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
388 }
389
390 static ThreadOffset ExceptionOffset() {
391 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
392 }
393
Elliott Hughes54e7df12011-09-16 11:47:04 -0700394 static ThreadOffset ThinLockIdOffset() {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700395 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
396 }
397
398 static ThreadOffset CardTableOffset() {
399 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
400 }
401
402 static ThreadOffset SuspendCountOffset() {
403 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
404 }
405
406 static ThreadOffset StateOffset() {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700407 return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700408 }
409
Ian Rogers932746a2011-09-22 18:57:50 -0700410 // Size of stack less any space reserved for stack overflow
411 size_t GetStackSize() {
412 return stack_size_ - (stack_end_ - stack_base_);
413 }
414
415 // Set the stack end to that to be used during a stack overflow
416 void SetStackEndForStackOverflow() {
417 // During stack overflow we allow use of the full stack
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700418 if (stack_end_ == stack_base_) {
419 DumpStack(std::cerr);
420 LOG(FATAL) << "Need to increase kStackOverflowReservedBytes (currently "
421 << kStackOverflowReservedBytes << ")";
422 }
423
Ian Rogers932746a2011-09-22 18:57:50 -0700424 stack_end_ = stack_base_;
425 }
426
427 // Set the stack end to that to be used during regular execution
428 void ResetDefaultStackEnd() {
429 // Our stacks grow down, so we want stack_end_ to be near there, but reserving enough room
430 // to throw a StackOverflowError.
431 stack_end_ = stack_base_ + kStackOverflowReservedBytes;
432 }
433
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700434 static ThreadOffset StackEndOffset() {
435 return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700436 }
437
438 static ThreadOffset JniEnvOffset() {
439 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
440 }
441
442 static ThreadOffset TopOfManagedStackOffset() {
443 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
444 OFFSETOF_MEMBER(Frame, sp_));
445 }
446
Ian Rogersbdb03912011-09-14 00:55:44 -0700447 static ThreadOffset TopOfManagedStackPcOffset() {
448 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_pc_));
449 }
450
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700451 void PushSirt(StackIndirectReferenceTable* sirt);
452 StackIndirectReferenceTable* PopSirt();
453
Elliott Hughesbe759c62011-09-08 19:38:21 -0700454 static ThreadOffset TopSirtOffset() {
455 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
456 }
457
Shih-wei Liao9407c602011-09-16 10:36:43 -0700458 void WalkStack(StackVisitor* visitor) const;
459
Elliott Hughes475fc232011-10-25 15:00:35 -0700460 DebugInvokeReq* GetInvokeReq() {
461 return debug_invoke_req_;
462 }
463
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700464 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700465 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700466 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700467 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700468
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700469 void CreatePeer(const char* name, bool as_daemon);
470 friend class Runtime; // For CreatePeer.
471
Elliott Hughesd92bec42011-09-02 17:04:36 -0700472 void DumpState(std::ostream& os) const;
473 void DumpStack(std::ostream& os) const;
474
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700475 // Out-of-line conveniences for debugging in gdb.
Elliott Hughes498508c2011-10-17 14:58:22 -0700476 static Thread* CurrentFromGdb(); // Like Thread::Current.
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700477 void DumpFromGdb() const; // Like Thread::Dump(std::cerr).
478
Elliott Hughes93e74e82011-09-13 11:07:03 -0700479 void Attach(const Runtime* runtime);
480 static void* CreateCallback(void* arg);
481
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700482 void HandleUncaughtExceptions();
Brian Carlstrom4514d3c2011-10-21 17:01:31 -0700483 void RemoveFromThreadGroup();
Elliott Hughesaccd83d2011-10-17 14:25:58 -0700484
Ian Rogersb033c752011-07-20 12:22:35 -0700485 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700486 void InitFunctionPointers();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700487 void InitTid();
Brian Carlstromcaabb1b2011-10-11 18:09:13 -0700488 void InitPthreadKeySelf();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700489 void InitStackHwm();
490
Elliott Hughes5f791332011-09-15 17:45:30 -0700491 void NotifyLocked() {
492 if (wait_monitor_ != NULL) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700493 wait_cond_->Signal();
Elliott Hughes5f791332011-09-15 17:45:30 -0700494 }
495 }
496
Elliott Hughesbe759c62011-09-08 19:38:21 -0700497 static void ThreadExitCallback(void* arg);
Ian Rogersb033c752011-07-20 12:22:35 -0700498
Ian Rogers67375ac2011-09-14 00:55:44 -0700499 void WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const;
Ian Rogersbdb03912011-09-14 00:55:44 -0700500
Elliott Hughesdcc24742011-09-07 14:02:44 -0700501 // Thin lock thread id. This is a small integer used by the thin lock implementation.
502 // This is not to be confused with the native thread's tid, nor is it the value returned
503 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
504 // important difference between this id and the ids visible to managed code is that these
505 // ones get reused (to ensure that they fit in the number of bits available).
506 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700507
Elliott Hughesd92bec42011-09-02 17:04:36 -0700508 // System thread id.
509 pid_t tid_;
510
Elliott Hughesdcc24742011-09-07 14:02:44 -0700511 // Our managed peer (an instance of java.lang.Thread).
Elliott Hughesd369bb72011-09-12 14:41:14 -0700512 Object* peer_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700513
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700514 // The top_of_managed_stack_ and top_of_managed_stack_pc_ fields are accessed from
515 // compiled code, so we keep them early in the structure to (a) avoid having to keep
516 // fixing the assembler offsets and (b) improve the chances that these will still be aligned.
517
518 // Top of the managed stack, written out prior to the state transition from
Elliott Hughes68e76522011-10-05 13:22:16 -0700519 // kRunnable to kNative. Uses include giving the starting point for scanning
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700520 // a managed stack when a thread is in native code.
521 Frame top_of_managed_stack_;
522 // PC corresponding to the call out of the top_of_managed_stack_ frame
523 uintptr_t top_of_managed_stack_pc_;
524
Elliott Hughes8daa0922011-09-11 13:46:25 -0700525 // Guards the 'interrupted_' and 'wait_monitor_' members.
Elliott Hughes85d15452011-09-16 17:33:01 -0700526 mutable Mutex* wait_mutex_;
527 ConditionVariable* wait_cond_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700528 // Pointer to the monitor lock we're currently waiting on (or NULL), guarded by wait_mutex_.
529 Monitor* wait_monitor_;
530 // Thread "interrupted" status; stays raised until queried or thrown, guarded by wait_mutex_.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700531 uint32_t interrupted_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700532 // The next thread in the wait set this thread is part of.
533 Thread* wait_next_;
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700534 // If we're blocked in MonitorEnter, this is the object we're trying to lock.
535 Object* monitor_enter_object_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700536
537 friend class Monitor;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700538
Elliott Hughes9d5ccec2011-09-19 13:19:50 -0700539 RuntimeStats stats_;
540
buzbeec143c552011-08-20 17:38:58 -0700541 // FIXME: placeholder for the gc cardTable
542 uint32_t card_table_;
543
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700544 // The end of this thread's stack. This is the lowest safely-addressable address on the stack.
545 // We leave extra space so there's room for the code that throws StackOverflowError.
546 byte* stack_end_;
Elliott Hughesbe759c62011-09-08 19:38:21 -0700547
Ian Rogers932746a2011-09-22 18:57:50 -0700548 // Size of the stack
549 size_t stack_size_;
550
551 // The "lowest addressable byte" of the stack
552 byte* stack_base_;
553
Ian Rogers6de08602011-08-19 14:52:39 -0700554 // A linked list (of stack allocated records) recording transitions from
555 // native to managed code.
556 NativeToManagedRecord* native_to_managed_record_;
557
Ian Rogers408f79a2011-08-23 18:22:33 -0700558 // Top of linked list of stack indirect reference tables or NULL for none
559 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700560
561 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700562 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700563
Elliott Hughes93e74e82011-09-13 11:07:03 -0700564 volatile State state_;
Carl Shapirob5573532011-07-12 18:22:59 -0700565
Carl Shapiro69759ea2011-07-21 18:13:35 -0700566 // Initialized to "this". On certain architectures (such as x86) reading
567 // off of Thread::Current is easy but getting the address of Thread::Current
568 // is hard. This field can be read off of Thread::Current to give the address.
569 Thread* self_;
570
571 Runtime* runtime_;
572
573 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700574 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700575
Ian Rogers45a76cb2011-07-21 22:00:15 -0700576 // A non-zero value is used to tell the current thread to enter a safe point
577 // at the next poll.
578 int suspend_count_;
Elliott Hughes234ab152011-10-26 14:02:26 -0700579 // How much of 'suspend_count_' is by request of the debugger, used to set things right
580 // when the debugger detaches. Must be <= suspend_count_.
581 int debug_suspend_count_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700582
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700583 // Needed to get the right ClassLoader in JNI_OnLoad, but also
584 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700585 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700586
Ian Rogersbdb03912011-09-14 00:55:44 -0700587 // Thread local, lazily allocated, long jump context. Used to deliver exceptions.
Elliott Hughes85d15452011-09-16 17:33:01 -0700588 Context* long_jump_context_;
Ian Rogersbdb03912011-09-14 00:55:44 -0700589
Elliott Hughes418dfe72011-10-06 18:56:27 -0700590 // A boolean telling us whether we're recursively throwing OOME.
Elliott Hughes726079d2011-10-07 18:43:44 -0700591 uint32_t throwing_OutOfMemoryError_;
592
593 Throwable* pre_allocated_OutOfMemoryError_;
Elliott Hughes418dfe72011-10-06 18:56:27 -0700594
Elliott Hughes475fc232011-10-25 15:00:35 -0700595 // JDWP invoke-during-breakpoint support.
596 DebugInvokeReq* debug_invoke_req_;
597
Carl Shapiro69759ea2011-07-21 18:13:35 -0700598 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700599 static pthread_key_t pthread_key_self_;
600
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700601 DISALLOW_COPY_AND_ASSIGN(Thread);
602};
Ian Rogersbdb03912011-09-14 00:55:44 -0700603
Elliott Hughes330304d2011-08-12 14:28:05 -0700604std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700605std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700606
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700607class ScopedThreadStateChange {
608 public:
609 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
610 old_thread_state_ = thread_->SetState(new_state);
611 }
612
613 ~ScopedThreadStateChange() {
614 thread_->SetState(old_thread_state_);
615 }
616
617 private:
618 Thread* thread_;
619 Thread::State old_thread_state_;
620 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
621};
622
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700623} // namespace art
624
625#endif // ART_SRC_THREAD_H_