blob: 8539962a9e4e65079963ab98f064d4a0b7503687 [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"
Ian Rogersb033c752011-07-20 12:22:35 -070035
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070036namespace art {
37
Elliott Hughes69f5bc62011-08-24 09:26:14 -070038class Array;
Elliott Hughes37f7a402011-08-22 18:56:01 -070039class Class;
Brian Carlstrom1f870082011-08-23 16:02:11 -070040class ClassLinker;
Elliott Hughesedcc09c2011-08-21 18:47:05 -070041class ClassLoader;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070042class Method;
Elliott Hughes8daa0922011-09-11 13:46:25 -070043class Monitor;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070044class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070045class Runtime;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070046class Thread;
Carl Shapirob5573532011-07-12 18:22:59 -070047class ThreadList;
Elliott Hughese5b0dc82011-08-23 09:59:02 -070048class Throwable;
Shih-wei Liao55df06b2011-08-26 14:39:27 -070049class StackTraceElement;
buzbee1da522d2011-09-04 11:22:20 -070050class StaticStorageBase;
51
Shih-wei Liao55df06b2011-08-26 14:39:27 -070052template<class T> class ObjectArray;
Shih-wei Liao44175362011-08-28 16:59:17 -070053template<class T> class PrimitiveArray;
54typedef PrimitiveArray<int32_t> IntArray;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070055
Ian Rogers408f79a2011-08-23 18:22:33 -070056// Stack allocated indirect reference table, allocated within the bridge frame
57// between managed and native code.
58class StackIndirectReferenceTable {
Ian Rogersb033c752011-07-20 12:22:35 -070059 public:
Ian Rogers408f79a2011-08-23 18:22:33 -070060 // Number of references contained within this SIRT
Ian Rogersb033c752011-07-20 12:22:35 -070061 size_t NumberOfReferences() {
62 return number_of_references_;
63 }
64
Ian Rogers408f79a2011-08-23 18:22:33 -070065 // Link to previous SIRT or NULL
66 StackIndirectReferenceTable* Link() {
Ian Rogersb033c752011-07-20 12:22:35 -070067 return link_;
68 }
69
Ian Rogers408f79a2011-08-23 18:22:33 -070070 Object** References() {
71 return references_;
Ian Rogersa8cd9f42011-08-19 16:43:41 -070072 }
73
Ian Rogers408f79a2011-08-23 18:22:33 -070074 // Offset of length within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -070075 static size_t NumberOfReferencesOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -070076 return OFFSETOF_MEMBER(StackIndirectReferenceTable, number_of_references_);
Ian Rogersb033c752011-07-20 12:22:35 -070077 }
78
Ian Rogers408f79a2011-08-23 18:22:33 -070079 // Offset of link within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -070080 static size_t LinkOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -070081 return OFFSETOF_MEMBER(StackIndirectReferenceTable, link_);
Ian Rogersb033c752011-07-20 12:22:35 -070082 }
83
84 private:
Ian Rogers408f79a2011-08-23 18:22:33 -070085 StackIndirectReferenceTable() {}
Ian Rogersb033c752011-07-20 12:22:35 -070086
87 size_t number_of_references_;
Ian Rogers408f79a2011-08-23 18:22:33 -070088 StackIndirectReferenceTable* link_;
Ian Rogersb033c752011-07-20 12:22:35 -070089
Ian Rogersa8cd9f42011-08-19 16:43:41 -070090 // Fake array, really allocated and filled in by jni_compiler.
Ian Rogers408f79a2011-08-23 18:22:33 -070091 Object* references_[0];
Ian Rogersa8cd9f42011-08-19 16:43:41 -070092
Ian Rogers408f79a2011-08-23 18:22:33 -070093 DISALLOW_COPY_AND_ASSIGN(StackIndirectReferenceTable);
Ian Rogersb033c752011-07-20 12:22:35 -070094};
95
Ian Rogers6de08602011-08-19 14:52:39 -070096struct NativeToManagedRecord {
97 NativeToManagedRecord* link;
98 void* last_top_of_managed_stack;
99};
100
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700101// Iterator over managed frames up to the first native-to-managed transition
102class Frame {
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700103 public:
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700104 Frame() : sp_(NULL) {}
105
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700106 Method* GetMethod() const {
Elliott Hughesa0957642011-09-02 14:27:33 -0700107 return (sp_ != NULL) ? *sp_ : NULL;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700108 }
109
110 bool HasNext() const {
111 return NextMethod() != NULL;
112 }
113
114 void Next();
115
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700116 uintptr_t GetPC() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700117
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700118 Method** GetSP() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700119 return sp_;
120 }
121
122 // TODO: this is here for testing, remove when we have exception unit tests
123 // that use the real stack
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700124 void SetSP(Method** sp) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700125 sp_ = sp;
126 }
127
128 private:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700129 Method* NextMethod() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700130
131 friend class Thread;
132
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700133 Method** sp_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700134};
135
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700136class Thread {
137 public:
Elliott Hughes8daa0922011-09-11 13:46:25 -0700138 /* thread priorities, from java.lang.Thread */
139 enum Priority {
140 kMinPriority = 1,
141 kNormPriority = 5,
142 kMaxPriority = 10,
143 };
Carl Shapirob5573532011-07-12 18:22:59 -0700144 enum State {
145 kUnknown = -1,
Elliott Hughes93e74e82011-09-13 11:07:03 -0700146
147 // These match up with JDWP values.
148 kTerminated = 0, // TERMINATED
149 kRunnable = 1, // RUNNABLE or running now
150 kTimedWaiting = 2, // TIMED_WAITING in Object.wait()
151 kBlocked = 3, // BLOCKED on a monitor
152 kWaiting = 4, // WAITING in Object.wait()
153 // Non-JDWP states.
154 kInitializing = 5, // allocated, not yet running --- TODO: unnecessary?
155 kStarting = 6, // native thread started, not yet ready to run managed code
156 kNative = 7, // off in a JNI native method
157 kVmWait = 8, // waiting on a VM resource
158 kSuspended = 9, // suspended, usually by GC or debugger
Carl Shapirob5573532011-07-12 18:22:59 -0700159 };
160
buzbeecefd1872011-09-09 09:59:52 -0700161 static const size_t kStackOverflowReservedBytes = 1024; // Space to throw a StackOverflowError in.
buzbeec143c552011-08-20 17:38:58 -0700162
Carl Shapiro61e019d2011-07-14 16:53:09 -0700163 static const size_t kDefaultStackSize = 64 * KB;
164
buzbeec143c552011-08-20 17:38:58 -0700165 // Runtime support function pointers
buzbee4a3164f2011-09-03 11:25:10 -0700166 void (*pDebugMe)(Method*, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700167 void* (*pMemcpy)(void*, const void*, size_t);
buzbee54330722011-08-23 16:46:55 -0700168 uint64_t (*pShlLong)(uint64_t, uint32_t);
169 uint64_t (*pShrLong)(uint64_t, uint32_t);
170 uint64_t (*pUshrLong)(uint64_t, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700171 float (*pI2f)(int);
172 int (*pF2iz)(float);
173 float (*pD2f)(double);
174 double (*pF2d)(float);
175 double (*pI2d)(int);
176 int (*pD2iz)(double);
177 float (*pL2f)(long);
178 double (*pL2d)(long);
buzbee1b4c8592011-08-31 10:43:51 -0700179 long long (*pF2l)(float);
180 long long (*pD2l)(double);
buzbeec143c552011-08-20 17:38:58 -0700181 float (*pFadd)(float, float);
182 float (*pFsub)(float, float);
183 float (*pFdiv)(float, float);
184 float (*pFmul)(float, float);
185 float (*pFmodf)(float, float);
186 double (*pDadd)(double, double);
187 double (*pDsub)(double, double);
188 double (*pDdiv)(double, double);
189 double (*pDmul)(double, double);
190 double (*pFmod)(double, double);
191 int (*pIdivmod)(int, int);
192 int (*pIdiv)(int, int);
buzbee439c4fa2011-08-27 15:59:07 -0700193 long long (*pLmul)(long long, long long);
buzbeec143c552011-08-20 17:38:58 -0700194 long long (*pLdivmod)(long long, long long);
buzbeedfd3d702011-08-28 12:56:51 -0700195 Array* (*pAllocFromCode)(uint32_t, Method*, int32_t);
buzbee1da522d2011-09-04 11:22:20 -0700196 Array* (*pCheckAndAllocFromCode)(uint32_t, Method*, int32_t);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700197 Object* (*pAllocObjectFromCode)(uint32_t, Method*);
buzbeee1931742011-08-28 21:15:53 -0700198 uint32_t (*pGet32Static)(uint32_t, const Method*);
199 void (*pSet32Static)(uint32_t, const Method*, uint32_t);
200 uint64_t (*pGet64Static)(uint32_t, const Method*);
201 void (*pSet64Static)(uint32_t, const Method*, uint64_t);
202 Object* (*pGetObjStatic)(uint32_t, const Method*);
203 void (*pSetObjStatic)(uint32_t, const Method*, Object*);
Elliott Hughes0f4c41d2011-09-04 14:58:03 -0700204 void (*pCanPutArrayElementFromCode)(const Class*, const Class*);
buzbee2a475e72011-09-07 17:19:17 -0700205 bool (*pInstanceofNonTrivialFromCode) (const Object*, const Class*);
206 void (*pCheckCastFromCode) (const Class*, const Class*);
buzbee1b4c8592011-08-31 10:43:51 -0700207 Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*);
buzbee2a475e72011-09-07 17:19:17 -0700208 void (*pUnlockObjectFromCode)(Thread*, Object*);
buzbee1b4c8592011-08-31 10:43:51 -0700209 void (*pLockObjectFromCode)(Thread*, Object*);
210 void (*pThrowException)(Thread*, Throwable*);
211 void (*pHandleFillArrayDataFromCode)(Array*, const uint16_t*);
212 Class* (*pInitializeTypeFromCode)(uint32_t, Method*);
buzbee561227c2011-09-02 15:28:19 -0700213 void (*pResolveMethodFromCode)(Method*, uint32_t);
buzbee4a3164f2011-09-03 11:25:10 -0700214 void (*pInvokeInterfaceTrampoline)(void*, void*, void*, void*);
buzbee1da522d2011-09-04 11:22:20 -0700215 StaticStorageBase* (*pInitializeStaticStorage)(uint32_t, const Method*);
buzbee34cd9e52011-09-08 14:31:52 -0700216 Field* (*pFindFieldFromCode)(uint32_t, const Method*);
buzbee0d966cf2011-09-08 17:34:58 -0700217 void (*pCheckSuspendFromCode)(Thread*);
buzbeecefd1872011-09-09 09:59:52 -0700218 void (*pStackOverflowFromCode)(Method*);
buzbee5ade1d22011-09-09 14:44:52 -0700219 void (*pThrowNullPointerFromCode)();
220 void (*pThrowArrayBoundsFromCode)(int32_t, int32_t);
221 void (*pThrowDivZeroFromCode)();
222 void (*pThrowVerificationErrorFromCode)(int32_t, int32_t);
223 void (*pThrowNegArraySizeFromCode)(int32_t);
224 void (*pThrowRuntimeExceptionFromCode)(int32_t);
225 void (*pThrowInternalErrorFromCode)(int32_t);
226 void (*pThrowNoSuchMethodFromCode)(int32_t);
buzbeec143c552011-08-20 17:38:58 -0700227
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700228 class StackVisitor {
229 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700230 virtual ~StackVisitor() {}
Elliott Hughesd369bb72011-09-12 14:41:14 -0700231 virtual void VisitFrame(const Frame& frame) = 0;
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700232 };
233
Carl Shapiro61e019d2011-07-14 16:53:09 -0700234 // Creates a new thread.
Elliott Hughesd369bb72011-09-12 14:41:14 -0700235 static void Create(Object* peer, size_t stack_size);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700236
237 // Creates a new thread from the calling thread.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700238 static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon);
Carl Shapirob5573532011-07-12 18:22:59 -0700239
240 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700241 void* thread = pthread_getspecific(Thread::pthread_key_self_);
242 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700243 }
244
Elliott Hughes8daa0922011-09-11 13:46:25 -0700245 static Thread* FromManagedThread(JNIEnv* env, jobject thread) {
246 // TODO: make these more generally available, and cached.
247 jclass java_lang_Thread = env->FindClass("java/lang/Thread");
248 jfieldID fid = env->GetFieldID(java_lang_Thread, "vmData", "I");
249 return reinterpret_cast<Thread*>(static_cast<uintptr_t>(env->GetIntField(thread, fid)));
250 }
251
Elliott Hughesa0957642011-09-02 14:27:33 -0700252 void Dump(std::ostream& os) const;
253
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700254 State GetState() const {
255 return state_;
256 }
257
Elliott Hughes8d768a92011-09-14 16:35:25 -0700258 State SetState(State new_state);
259
260 void WaitUntilSuspended();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700261
Elliott Hughes8daa0922011-09-11 13:46:25 -0700262 /*
263 * Changes the priority of this thread to match that of the java.lang.Thread object.
264 *
265 * We map a priority value from 1-10 to Linux "nice" values, where lower
266 * numbers indicate higher priority.
267 */
268 void SetNativePriority(int newPriority);
269
270 /*
271 * Returns the thread priority for the current thread by querying the system.
272 * This is useful when attaching a thread through JNI.
273 *
274 * Returns a value from 1 to 10 (compatible with java.lang.Thread values).
275 */
276 static int GetNativePriority();
277
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700278 bool CanAccessDirectReferences() const {
Elliott Hughesa59d1792011-09-04 18:42:35 -0700279 // TODO: when we have a moving collector, we'll need: return state_ == kRunnable;
280 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700281 }
282
Elliott Hughesdcc24742011-09-07 14:02:44 -0700283 uint32_t GetThinLockId() const {
284 return thin_lock_id_;
Carl Shapirob5573532011-07-12 18:22:59 -0700285 }
286
Elliott Hughesd92bec42011-09-02 17:04:36 -0700287 pid_t GetTid() const {
288 return tid_;
289 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700290
291 pthread_t GetImpl() const {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700292 return pthread_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700293 }
294
Elliott Hughesd369bb72011-09-12 14:41:14 -0700295 Object* GetPeer() const {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700296 return peer_;
297 }
298
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700299 // Returns the Method* for the current method.
300 // This is used by the JNI implementation for logging and diagnostic purposes.
301 const Method* GetCurrentMethod() const {
302 return top_of_managed_stack_.GetMethod();
303 }
304
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700305 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700306 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700307 }
308
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700309 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700310 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700311 return exception_;
312 }
313
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700314 void SetException(Throwable* new_exception) {
315 DCHECK(CanAccessDirectReferences());
316 CHECK(new_exception != NULL);
317 // TODO: CHECK(exception_ == NULL);
318 exception_ = new_exception; // TODO
319 }
320
321 void ClearException() {
322 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700323 }
324
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700325 Frame GetTopOfStack() const {
326 return top_of_managed_stack_;
327 }
328
329 // TODO: this is here for testing, remove when we have exception unit tests
330 // that use the real stack
331 void SetTopOfStack(void* stack) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700332 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700333 }
334
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700335 void ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700336 __attribute__ ((format(printf, 3, 4)));
337
Elliott Hughes79082e32011-08-25 12:07:32 -0700338 // This exception is special, because we need to pre-allocate an instance.
339 void ThrowOutOfMemoryError();
340
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700341 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
342
343 void* FindExceptionHandlerInMethod(const Method* method,
344 void* throw_pc,
345 const DexFile& dex_file,
346 ClassLinker* class_linker);
buzbeec143c552011-08-20 17:38:58 -0700347
Carl Shapirob5573532011-07-12 18:22:59 -0700348 void SetName(const char* name);
349
Elliott Hughesbe759c62011-09-08 19:38:21 -0700350 static void Startup();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700351 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700352
Ian Rogersb033c752011-07-20 12:22:35 -0700353 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700354 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700355 return jni_env_;
356 }
357
Ian Rogers408f79a2011-08-23 18:22:33 -0700358 // Number of references allocated in SIRTs on this thread
359 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700360
Ian Rogers408f79a2011-08-23 18:22:33 -0700361 // Is the given obj in this thread's stack indirect reference table?
362 bool SirtContains(jobject obj);
363
364 // Convert a jobject into a Object*
365 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700366
Elliott Hughes8daa0922011-09-11 13:46:25 -0700367 // Implements java.lang.Thread.interrupted.
368 bool Interrupted() {
369 MutexLock mu(wait_mutex_);
370 bool interrupted = interrupted_;
371 interrupted_ = false;
372 return interrupted;
373 }
374
375 // Implements java.lang.Thread.isInterrupted.
376 bool IsInterrupted() {
377 MutexLock mu(wait_mutex_);
378 return interrupted_;
379 }
380
Ian Rogers45a76cb2011-07-21 22:00:15 -0700381 void RegisterExceptionEntryPoint(void (*handler)(Method**)) {
382 exception_entry_point_ = handler;
383 }
384
Ian Rogers45a76cb2011-07-21 22:00:15 -0700385 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
386 suspend_count_entry_point_ = handler;
387 }
388
Ian Rogers6de08602011-08-19 14:52:39 -0700389 // Linked list recording transitions from native to managed code
390 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700391 record->last_top_of_managed_stack = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
Ian Rogers6de08602011-08-19 14:52:39 -0700392 record->link = native_to_managed_record_;
393 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700394 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700395 }
396 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
397 native_to_managed_record_ = record.link;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700398 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(record.last_top_of_managed_stack));
Ian Rogers6de08602011-08-19 14:52:39 -0700399 }
400
Brian Carlstrombffb1552011-08-25 12:23:53 -0700401 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700402 // TODO: need to place the class_loader_override_ in a handle
403 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700404 return class_loader_override_;
405 }
406
Brian Carlstrombffb1552011-08-25 12:23:53 -0700407 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700408 class_loader_override_ = class_loader_override;
409 }
410
Ian Rogersaaa20802011-09-11 21:47:37 -0700411 // Create the internal representation of a stack trace, that is more time
412 // and space efficient to compute than the StackTraceElement[]
413 jobject CreateInternalStackTrace() const;
414
415 // Convert an internal stack trace representation to a StackTraceElement[]
416 static jobjectArray
417 InternalStackTraceToStackTraceElementArray(jobject internal, JNIEnv* env);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700418
Elliott Hughes410c0c82011-09-01 17:58:25 -0700419 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
420
Elliott Hughesbe759c62011-09-08 19:38:21 -0700421 //
422 // Offsets of various members of native Thread class, used by compiled code.
423 //
424
425 static ThreadOffset SelfOffset() {
426 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
427 }
428
429 static ThreadOffset ExceptionOffset() {
430 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
431 }
432
433 static ThreadOffset IdOffset() {
434 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
435 }
436
437 static ThreadOffset CardTableOffset() {
438 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
439 }
440
441 static ThreadOffset SuspendCountOffset() {
442 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
443 }
444
445 static ThreadOffset StateOffset() {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700446 return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700447 }
448
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700449 static ThreadOffset StackEndOffset() {
450 return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700451 }
452
453 static ThreadOffset JniEnvOffset() {
454 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
455 }
456
457 static ThreadOffset TopOfManagedStackOffset() {
458 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
459 OFFSETOF_MEMBER(Frame, sp_));
460 }
461
462 static ThreadOffset TopSirtOffset() {
463 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
464 }
465
466 static ThreadOffset ExceptionEntryPointOffset() {
467 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_entry_point_));
468 }
469
470 static ThreadOffset SuspendCountEntryPointOffset() {
471 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
472 }
473
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700474 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700475 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700476 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700477 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700478
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700479 void CreatePeer(const char* name, bool as_daemon);
480 friend class Runtime; // For CreatePeer.
481
Elliott Hughesd92bec42011-09-02 17:04:36 -0700482 void DumpState(std::ostream& os) const;
483 void DumpStack(std::ostream& os) const;
484
Elliott Hughes93e74e82011-09-13 11:07:03 -0700485 void Attach(const Runtime* runtime);
486 static void* CreateCallback(void* arg);
487
Ian Rogersb033c752011-07-20 12:22:35 -0700488 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700489 void InitFunctionPointers();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700490 void InitStackHwm();
491
492 static void ThreadExitCallback(void* arg);
Ian Rogersb033c752011-07-20 12:22:35 -0700493
Ian Rogersaaa20802011-09-11 21:47:37 -0700494 void WalkStack(StackVisitor* visitor) const;
Shih-wei Liao44175362011-08-28 16:59:17 -0700495
Elliott Hughesdcc24742011-09-07 14:02:44 -0700496 // Thin lock thread id. This is a small integer used by the thin lock implementation.
497 // This is not to be confused with the native thread's tid, nor is it the value returned
498 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
499 // important difference between this id and the ids visible to managed code is that these
500 // ones get reused (to ensure that they fit in the number of bits available).
501 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700502
Elliott Hughesd92bec42011-09-02 17:04:36 -0700503 // System thread id.
504 pid_t tid_;
505
506 // Native thread handle.
Elliott Hughesbe759c62011-09-08 19:38:21 -0700507 pthread_t pthread_;
Elliott Hughesd92bec42011-09-02 17:04:36 -0700508
Elliott Hughesdcc24742011-09-07 14:02:44 -0700509 // Our managed peer (an instance of java.lang.Thread).
Elliott Hughesd369bb72011-09-12 14:41:14 -0700510 Object* peer_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700511
512 // Guards the 'interrupted_' and 'wait_monitor_' members.
513 mutable Mutex wait_mutex_;
514 // Pointer to the monitor lock we're currently waiting on (or NULL), guarded by wait_mutex_.
515 Monitor* wait_monitor_;
516 // Thread "interrupted" status; stays raised until queried or thrown, guarded by wait_mutex_.
517 bool interrupted_;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700518
buzbeec143c552011-08-20 17:38:58 -0700519 // FIXME: placeholder for the gc cardTable
520 uint32_t card_table_;
521
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700522 // The end of this thread's stack. This is the lowest safely-addressable address on the stack.
523 // We leave extra space so there's room for the code that throws StackOverflowError.
524 byte* stack_end_;
Elliott Hughesbe759c62011-09-08 19:38:21 -0700525
Ian Rogers45a76cb2011-07-21 22:00:15 -0700526 // Top of the managed stack, written out prior to the state transition from
527 // kRunnable to kNative. Uses include to give the starting point for scanning
528 // a managed stack when a thread is in native code.
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700529 Frame top_of_managed_stack_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700530
Ian Rogers6de08602011-08-19 14:52:39 -0700531 // A linked list (of stack allocated records) recording transitions from
532 // native to managed code.
533 NativeToManagedRecord* native_to_managed_record_;
534
Ian Rogers408f79a2011-08-23 18:22:33 -0700535 // Top of linked list of stack indirect reference tables or NULL for none
536 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700537
538 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700539 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700540
Elliott Hughes93e74e82011-09-13 11:07:03 -0700541 volatile State state_;
Carl Shapirob5573532011-07-12 18:22:59 -0700542
Carl Shapiro69759ea2011-07-21 18:13:35 -0700543 // Initialized to "this". On certain architectures (such as x86) reading
544 // off of Thread::Current is easy but getting the address of Thread::Current
545 // is hard. This field can be read off of Thread::Current to give the address.
546 Thread* self_;
547
548 Runtime* runtime_;
549
550 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700551 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700552
Ian Rogers45a76cb2011-07-21 22:00:15 -0700553 // A non-zero value is used to tell the current thread to enter a safe point
554 // at the next poll.
555 int suspend_count_;
556
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700557 // Needed to get the right ClassLoader in JNI_OnLoad, but also
558 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700559 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700560
Carl Shapiro69759ea2011-07-21 18:13:35 -0700561 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700562 static pthread_key_t pthread_key_self_;
563
Ian Rogers45a76cb2011-07-21 22:00:15 -0700564 // Entry point called when exception_ is set
565 void (*exception_entry_point_)(Method** frame);
566
567 // Entry point called when suspend_count_ is non-zero
568 void (*suspend_count_entry_point_)(Method** frame);
569
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700570 DISALLOW_COPY_AND_ASSIGN(Thread);
571};
Elliott Hughes330304d2011-08-12 14:28:05 -0700572std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700573std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700574
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700575class ScopedThreadStateChange {
576 public:
577 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
578 old_thread_state_ = thread_->SetState(new_state);
579 }
580
581 ~ScopedThreadStateChange() {
582 thread_->SetState(old_thread_state_);
583 }
584
585 private:
586 Thread* thread_;
587 Thread::State old_thread_state_;
588 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
589};
590
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700591} // namespace art
592
593#endif // ART_SRC_THREAD_H_