blob: de65d4295a4788c431ee130f0adfe9cad3b80dbf [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 Rogersbdb03912011-09-14 00:55:44 -070035#include "UniquePtr.h"
Ian Rogersb033c752011-07-20 12:22:35 -070036
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070037namespace art {
38
Elliott Hughes69f5bc62011-08-24 09:26:14 -070039class Array;
Elliott Hughes37f7a402011-08-22 18:56:01 -070040class Class;
Brian Carlstrom1f870082011-08-23 16:02:11 -070041class ClassLinker;
Elliott Hughesedcc09c2011-08-21 18:47:05 -070042class ClassLoader;
Ian Rogersbdb03912011-09-14 00:55:44 -070043class Context;
Brian Carlstroma40f9bc2011-07-26 21:26:07 -070044class Method;
Elliott Hughes8daa0922011-09-11 13:46:25 -070045class Monitor;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070046class Object;
Carl Shapirob5573532011-07-12 18:22:59 -070047class Runtime;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070048class Thread;
Carl Shapirob5573532011-07-12 18:22:59 -070049class ThreadList;
Elliott Hughese5b0dc82011-08-23 09:59:02 -070050class Throwable;
Shih-wei Liao55df06b2011-08-26 14:39:27 -070051class StackTraceElement;
buzbee1da522d2011-09-04 11:22:20 -070052class StaticStorageBase;
53
Shih-wei Liao55df06b2011-08-26 14:39:27 -070054template<class T> class ObjectArray;
Shih-wei Liao44175362011-08-28 16:59:17 -070055template<class T> class PrimitiveArray;
56typedef PrimitiveArray<int32_t> IntArray;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -070057
Ian Rogers408f79a2011-08-23 18:22:33 -070058// Stack allocated indirect reference table, allocated within the bridge frame
59// between managed and native code.
60class StackIndirectReferenceTable {
Ian Rogersb033c752011-07-20 12:22:35 -070061 public:
Ian Rogers408f79a2011-08-23 18:22:33 -070062 // Number of references contained within this SIRT
Ian Rogersb033c752011-07-20 12:22:35 -070063 size_t NumberOfReferences() {
64 return number_of_references_;
65 }
66
Ian Rogers408f79a2011-08-23 18:22:33 -070067 // Link to previous SIRT or NULL
68 StackIndirectReferenceTable* Link() {
Ian Rogersb033c752011-07-20 12:22:35 -070069 return link_;
70 }
71
Ian Rogers408f79a2011-08-23 18:22:33 -070072 Object** References() {
73 return references_;
Ian Rogersa8cd9f42011-08-19 16:43:41 -070074 }
75
Ian Rogers408f79a2011-08-23 18:22:33 -070076 // Offset of length within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -070077 static size_t NumberOfReferencesOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -070078 return OFFSETOF_MEMBER(StackIndirectReferenceTable, number_of_references_);
Ian Rogersb033c752011-07-20 12:22:35 -070079 }
80
Ian Rogers408f79a2011-08-23 18:22:33 -070081 // Offset of link within SIRT, used by generated code
Ian Rogersb033c752011-07-20 12:22:35 -070082 static size_t LinkOffset() {
Ian Rogers408f79a2011-08-23 18:22:33 -070083 return OFFSETOF_MEMBER(StackIndirectReferenceTable, link_);
Ian Rogersb033c752011-07-20 12:22:35 -070084 }
85
86 private:
Ian Rogers408f79a2011-08-23 18:22:33 -070087 StackIndirectReferenceTable() {}
Ian Rogersb033c752011-07-20 12:22:35 -070088
89 size_t number_of_references_;
Ian Rogers408f79a2011-08-23 18:22:33 -070090 StackIndirectReferenceTable* link_;
Ian Rogersb033c752011-07-20 12:22:35 -070091
Ian Rogersa8cd9f42011-08-19 16:43:41 -070092 // Fake array, really allocated and filled in by jni_compiler.
Ian Rogers408f79a2011-08-23 18:22:33 -070093 Object* references_[0];
Ian Rogersa8cd9f42011-08-19 16:43:41 -070094
Ian Rogers408f79a2011-08-23 18:22:33 -070095 DISALLOW_COPY_AND_ASSIGN(StackIndirectReferenceTable);
Ian Rogersb033c752011-07-20 12:22:35 -070096};
97
Ian Rogers6de08602011-08-19 14:52:39 -070098struct NativeToManagedRecord {
Ian Rogersbdb03912011-09-14 00:55:44 -070099 NativeToManagedRecord* link_;
100 void* last_top_of_managed_stack_;
101 uintptr_t last_top_of_managed_stack_pc_;
Ian Rogers6de08602011-08-19 14:52:39 -0700102};
103
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700104// Iterator over managed frames up to the first native-to-managed transition
Elliott Hughes85d15452011-09-16 17:33:01 -0700105class PACKED Frame {
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700106 public:
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700107 Frame() : sp_(NULL) {}
108
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700109 Method* GetMethod() const {
Elliott Hughesa0957642011-09-02 14:27:33 -0700110 return (sp_ != NULL) ? *sp_ : NULL;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700111 }
112
113 bool HasNext() const {
114 return NextMethod() != NULL;
115 }
116
117 void Next();
118
Ian Rogersbdb03912011-09-14 00:55:44 -0700119 uintptr_t GetReturnPC() const;
120
121 uintptr_t LoadCalleeSave(int num) const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700122
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700123 Method** GetSP() const {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700124 return sp_;
125 }
126
127 // TODO: this is here for testing, remove when we have exception unit tests
128 // that use the real stack
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700129 void SetSP(Method** sp) {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700130 sp_ = sp;
131 }
132
133 private:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700134 Method* NextMethod() const;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700135
136 friend class Thread;
137
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700138 Method** sp_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700139};
140
Elliott Hughes85d15452011-09-16 17:33:01 -0700141class PACKED Thread {
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700142 public:
Elliott Hughes8daa0922011-09-11 13:46:25 -0700143 /* thread priorities, from java.lang.Thread */
144 enum Priority {
145 kMinPriority = 1,
146 kNormPriority = 5,
147 kMaxPriority = 10,
148 };
Carl Shapirob5573532011-07-12 18:22:59 -0700149 enum State {
150 kUnknown = -1,
Elliott Hughes93e74e82011-09-13 11:07:03 -0700151
152 // These match up with JDWP values.
153 kTerminated = 0, // TERMINATED
154 kRunnable = 1, // RUNNABLE or running now
155 kTimedWaiting = 2, // TIMED_WAITING in Object.wait()
156 kBlocked = 3, // BLOCKED on a monitor
157 kWaiting = 4, // WAITING in Object.wait()
158 // Non-JDWP states.
159 kInitializing = 5, // allocated, not yet running --- TODO: unnecessary?
160 kStarting = 6, // native thread started, not yet ready to run managed code
161 kNative = 7, // off in a JNI native method
162 kVmWait = 8, // waiting on a VM resource
163 kSuspended = 9, // suspended, usually by GC or debugger
Carl Shapirob5573532011-07-12 18:22:59 -0700164 };
165
buzbeecefd1872011-09-09 09:59:52 -0700166 static const size_t kStackOverflowReservedBytes = 1024; // Space to throw a StackOverflowError in.
buzbeec143c552011-08-20 17:38:58 -0700167
Carl Shapiro61e019d2011-07-14 16:53:09 -0700168 static const size_t kDefaultStackSize = 64 * KB;
169
buzbeec143c552011-08-20 17:38:58 -0700170 // Runtime support function pointers
buzbee4a3164f2011-09-03 11:25:10 -0700171 void (*pDebugMe)(Method*, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700172 void* (*pMemcpy)(void*, const void*, size_t);
buzbee54330722011-08-23 16:46:55 -0700173 uint64_t (*pShlLong)(uint64_t, uint32_t);
174 uint64_t (*pShrLong)(uint64_t, uint32_t);
175 uint64_t (*pUshrLong)(uint64_t, uint32_t);
buzbeec143c552011-08-20 17:38:58 -0700176 float (*pI2f)(int);
177 int (*pF2iz)(float);
178 float (*pD2f)(double);
179 double (*pF2d)(float);
180 double (*pI2d)(int);
181 int (*pD2iz)(double);
182 float (*pL2f)(long);
183 double (*pL2d)(long);
buzbee1b4c8592011-08-31 10:43:51 -0700184 long long (*pF2l)(float);
185 long long (*pD2l)(double);
buzbeec143c552011-08-20 17:38:58 -0700186 float (*pFadd)(float, float);
187 float (*pFsub)(float, float);
188 float (*pFdiv)(float, float);
189 float (*pFmul)(float, float);
190 float (*pFmodf)(float, float);
191 double (*pDadd)(double, double);
192 double (*pDsub)(double, double);
193 double (*pDdiv)(double, double);
194 double (*pDmul)(double, double);
195 double (*pFmod)(double, double);
196 int (*pIdivmod)(int, int);
197 int (*pIdiv)(int, int);
buzbee439c4fa2011-08-27 15:59:07 -0700198 long long (*pLmul)(long long, long long);
buzbeec143c552011-08-20 17:38:58 -0700199 long long (*pLdivmod)(long long, long long);
buzbeedfd3d702011-08-28 12:56:51 -0700200 Array* (*pAllocFromCode)(uint32_t, Method*, int32_t);
buzbee1da522d2011-09-04 11:22:20 -0700201 Array* (*pCheckAndAllocFromCode)(uint32_t, Method*, int32_t);
Brian Carlstrom1f870082011-08-23 16:02:11 -0700202 Object* (*pAllocObjectFromCode)(uint32_t, Method*);
buzbeee1931742011-08-28 21:15:53 -0700203 uint32_t (*pGet32Static)(uint32_t, const Method*);
204 void (*pSet32Static)(uint32_t, const Method*, uint32_t);
205 uint64_t (*pGet64Static)(uint32_t, const Method*);
206 void (*pSet64Static)(uint32_t, const Method*, uint64_t);
207 Object* (*pGetObjStatic)(uint32_t, const Method*);
208 void (*pSetObjStatic)(uint32_t, const Method*, Object*);
buzbee9a195c92011-09-16 13:26:02 -0700209 void (*pCanPutArrayElementFromCode)(const Object*, const Class*);
buzbee2a475e72011-09-07 17:19:17 -0700210 bool (*pInstanceofNonTrivialFromCode) (const Object*, const Class*);
211 void (*pCheckCastFromCode) (const Class*, const Class*);
buzbee1b4c8592011-08-31 10:43:51 -0700212 Method* (*pFindInterfaceMethodInCache)(Class*, uint32_t, const Method*, struct DvmDex*);
buzbee2a475e72011-09-07 17:19:17 -0700213 void (*pUnlockObjectFromCode)(Thread*, Object*);
buzbee1b4c8592011-08-31 10:43:51 -0700214 void (*pLockObjectFromCode)(Thread*, Object*);
Ian Rogers67375ac2011-09-14 00:55:44 -0700215 void (*pDeliverException)(void*);
buzbee1b4c8592011-08-31 10:43:51 -0700216 void (*pHandleFillArrayDataFromCode)(Array*, const uint16_t*);
217 Class* (*pInitializeTypeFromCode)(uint32_t, Method*);
buzbee561227c2011-09-02 15:28:19 -0700218 void (*pResolveMethodFromCode)(Method*, uint32_t);
buzbee4a3164f2011-09-03 11:25:10 -0700219 void (*pInvokeInterfaceTrampoline)(void*, void*, void*, void*);
buzbee1da522d2011-09-04 11:22:20 -0700220 StaticStorageBase* (*pInitializeStaticStorage)(uint32_t, const Method*);
buzbee34cd9e52011-09-08 14:31:52 -0700221 Field* (*pFindFieldFromCode)(uint32_t, const Method*);
buzbee0d966cf2011-09-08 17:34:58 -0700222 void (*pCheckSuspendFromCode)(Thread*);
buzbeecefd1872011-09-09 09:59:52 -0700223 void (*pStackOverflowFromCode)(Method*);
buzbee5ade1d22011-09-09 14:44:52 -0700224 void (*pThrowNullPointerFromCode)();
225 void (*pThrowArrayBoundsFromCode)(int32_t, int32_t);
226 void (*pThrowDivZeroFromCode)();
227 void (*pThrowVerificationErrorFromCode)(int32_t, int32_t);
228 void (*pThrowNegArraySizeFromCode)(int32_t);
229 void (*pThrowRuntimeExceptionFromCode)(int32_t);
230 void (*pThrowInternalErrorFromCode)(int32_t);
231 void (*pThrowNoSuchMethodFromCode)(int32_t);
Ian Rogersbdb03912011-09-14 00:55:44 -0700232 void (*pThrowAbstractMethodErrorFromCode)(Method* method, Thread* thread);
Brian Carlstrom16192862011-09-12 17:50:06 -0700233 void* (*pFindNativeMethod)(Thread* thread);
234 Object* (*pDecodeJObjectInThread)(Thread* thread, jobject obj);
buzbeec143c552011-08-20 17:38:58 -0700235
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700236 class StackVisitor {
237 public:
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700238 virtual ~StackVisitor() {}
Ian Rogersbdb03912011-09-14 00:55:44 -0700239 virtual void VisitFrame(const Frame& frame, uintptr_t pc) = 0;
Shih-wei Liao9b576b42011-08-29 01:45:07 -0700240 };
241
Carl Shapiro61e019d2011-07-14 16:53:09 -0700242 // Creates a new thread.
Elliott Hughesd369bb72011-09-12 14:41:14 -0700243 static void Create(Object* peer, size_t stack_size);
Carl Shapiro61e019d2011-07-14 16:53:09 -0700244
245 // Creates a new thread from the calling thread.
Elliott Hughesdcc24742011-09-07 14:02:44 -0700246 static Thread* Attach(const Runtime* runtime, const char* name, bool as_daemon);
Carl Shapirob5573532011-07-12 18:22:59 -0700247
248 static Thread* Current() {
Carl Shapirod0e7e772011-07-15 14:31:01 -0700249 void* thread = pthread_getspecific(Thread::pthread_key_self_);
250 return reinterpret_cast<Thread*>(thread);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700251 }
252
Elliott Hughes8daa0922011-09-11 13:46:25 -0700253 static Thread* FromManagedThread(JNIEnv* env, jobject thread) {
254 // TODO: make these more generally available, and cached.
255 jclass java_lang_Thread = env->FindClass("java/lang/Thread");
256 jfieldID fid = env->GetFieldID(java_lang_Thread, "vmData", "I");
257 return reinterpret_cast<Thread*>(static_cast<uintptr_t>(env->GetIntField(thread, fid)));
258 }
259
Elliott Hughesa0957642011-09-02 14:27:33 -0700260 void Dump(std::ostream& os) const;
261
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700262 State GetState() const {
263 return state_;
264 }
265
Elliott Hughes8d768a92011-09-14 16:35:25 -0700266 State SetState(State new_state);
267
Elliott Hughes038a8062011-09-18 14:12:41 -0700268 bool IsDaemon();
269
Elliott Hughes8d768a92011-09-14 16:35:25 -0700270 void WaitUntilSuspended();
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700271
Elliott Hughes5f791332011-09-15 17:45:30 -0700272 bool HoldsLock(Object*);
273
Elliott Hughes8daa0922011-09-11 13:46:25 -0700274 /*
275 * Changes the priority of this thread to match that of the java.lang.Thread object.
276 *
277 * We map a priority value from 1-10 to Linux "nice" values, where lower
278 * numbers indicate higher priority.
279 */
280 void SetNativePriority(int newPriority);
281
282 /*
283 * Returns the thread priority for the current thread by querying the system.
284 * This is useful when attaching a thread through JNI.
285 *
286 * Returns a value from 1 to 10 (compatible with java.lang.Thread values).
287 */
288 static int GetNativePriority();
289
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700290 bool CanAccessDirectReferences() const {
Elliott Hughesa59d1792011-09-04 18:42:35 -0700291 // TODO: when we have a moving collector, we'll need: return state_ == kRunnable;
292 return true;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700293 }
294
Elliott Hughesdcc24742011-09-07 14:02:44 -0700295 uint32_t GetThinLockId() const {
296 return thin_lock_id_;
Carl Shapirob5573532011-07-12 18:22:59 -0700297 }
298
Elliott Hughesd92bec42011-09-02 17:04:36 -0700299 pid_t GetTid() const {
300 return tid_;
301 }
Elliott Hughese27955c2011-08-26 15:21:24 -0700302
303 pthread_t GetImpl() const {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700304 return pthread_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700305 }
306
Elliott Hughesd369bb72011-09-12 14:41:14 -0700307 Object* GetPeer() const {
Elliott Hughes8daa0922011-09-11 13:46:25 -0700308 return peer_;
309 }
310
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700311 // Returns the Method* for the current method.
312 // This is used by the JNI implementation for logging and diagnostic purposes.
313 const Method* GetCurrentMethod() const {
314 return top_of_managed_stack_.GetMethod();
315 }
316
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700317 bool IsExceptionPending() const {
Elliott Hughesb20a5542011-08-12 18:03:12 -0700318 return exception_ != NULL;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700319 }
320
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700321 Throwable* GetException() const {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700322 DCHECK(CanAccessDirectReferences());
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700323 return exception_;
324 }
325
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700326 void SetException(Throwable* new_exception) {
327 DCHECK(CanAccessDirectReferences());
328 CHECK(new_exception != NULL);
329 // TODO: CHECK(exception_ == NULL);
330 exception_ = new_exception; // TODO
331 }
332
333 void ClearException() {
334 exception_ = NULL;
Elliott Hughesa0957642011-09-02 14:27:33 -0700335 }
336
Ian Rogersbdb03912011-09-14 00:55:44 -0700337 // Find catch block and perform long jump to appropriate exception handle
338 void DeliverException(Throwable* exception);
339
340 Context* GetLongJumpContext();
341
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700342 Frame GetTopOfStack() const {
343 return top_of_managed_stack_;
344 }
345
346 // TODO: this is here for testing, remove when we have exception unit tests
347 // that use the real stack
Ian Rogersbdb03912011-09-14 00:55:44 -0700348 void SetTopOfStack(void* stack, uintptr_t pc) {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700349 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(stack));
Ian Rogersbdb03912011-09-14 00:55:44 -0700350 top_of_managed_stack_pc_ = pc;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700351 }
352
Ian Rogersbdb03912011-09-14 00:55:44 -0700353 void SetTopOfStackPC(uintptr_t pc) {
354 top_of_managed_stack_pc_ = pc;
355 }
356
357 // Returns a special method that describes all callee saves being spilt to the
358 // stack.
359 Method* CalleeSaveMethod() const;
360
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700361 void ThrowNewException(const char* exception_class_descriptor, const char* fmt, ...)
Elliott Hughesa5b897e2011-08-16 11:33:06 -0700362 __attribute__ ((format(printf, 3, 4)));
363
Elliott Hughes79082e32011-08-25 12:07:32 -0700364 // This exception is special, because we need to pre-allocate an instance.
365 void ThrowOutOfMemoryError();
366
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700367 Frame FindExceptionHandler(void* throw_pc, void** handler_pc);
368
369 void* FindExceptionHandlerInMethod(const Method* method,
370 void* throw_pc,
371 const DexFile& dex_file,
372 ClassLinker* class_linker);
buzbeec143c552011-08-20 17:38:58 -0700373
Carl Shapirob5573532011-07-12 18:22:59 -0700374 void SetName(const char* name);
375
Elliott Hughesbe759c62011-09-08 19:38:21 -0700376 static void Startup();
Elliott Hughes038a8062011-09-18 14:12:41 -0700377 static void FinishStartup();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700378 static void Shutdown();
Carl Shapirob5573532011-07-12 18:22:59 -0700379
Ian Rogersb033c752011-07-20 12:22:35 -0700380 // JNI methods
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700381 JNIEnvExt* GetJniEnv() const {
Ian Rogersb033c752011-07-20 12:22:35 -0700382 return jni_env_;
383 }
384
Ian Rogers408f79a2011-08-23 18:22:33 -0700385 // Number of references allocated in SIRTs on this thread
386 size_t NumSirtReferences();
Ian Rogersa8cd9f42011-08-19 16:43:41 -0700387
Ian Rogers408f79a2011-08-23 18:22:33 -0700388 // Is the given obj in this thread's stack indirect reference table?
389 bool SirtContains(jobject obj);
390
Ian Rogers67375ac2011-09-14 00:55:44 -0700391 // Pop the top SIRT
392 void PopSirt();
393
Ian Rogers408f79a2011-08-23 18:22:33 -0700394 // Convert a jobject into a Object*
395 Object* DecodeJObject(jobject obj);
Ian Rogersb033c752011-07-20 12:22:35 -0700396
Elliott Hughes8daa0922011-09-11 13:46:25 -0700397 // Implements java.lang.Thread.interrupted.
398 bool Interrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700399 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700400 bool interrupted = interrupted_;
401 interrupted_ = false;
402 return interrupted;
403 }
404
405 // Implements java.lang.Thread.isInterrupted.
406 bool IsInterrupted() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700407 MutexLock mu(*wait_mutex_);
Elliott Hughes8daa0922011-09-11 13:46:25 -0700408 return interrupted_;
409 }
410
Elliott Hughes5f791332011-09-15 17:45:30 -0700411 void Interrupt() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700412 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700413 if (interrupted_) {
414 return;
415 }
416 interrupted_ = true;
417 NotifyLocked();
418 }
419
420 void Notify() {
Elliott Hughes85d15452011-09-16 17:33:01 -0700421 MutexLock mu(*wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700422 NotifyLocked();
423 }
424
Ian Rogers45a76cb2011-07-21 22:00:15 -0700425 void RegisterSuspendCountEntryPoint(void (*handler)(Method**)) {
426 suspend_count_entry_point_ = handler;
427 }
428
Ian Rogers6de08602011-08-19 14:52:39 -0700429 // Linked list recording transitions from native to managed code
430 void PushNativeToManagedRecord(NativeToManagedRecord* record) {
Ian Rogersbdb03912011-09-14 00:55:44 -0700431 record->last_top_of_managed_stack_ = reinterpret_cast<void*>(top_of_managed_stack_.GetSP());
432 record->last_top_of_managed_stack_pc_ = top_of_managed_stack_pc_;
433 record->link_ = native_to_managed_record_;
Ian Rogers6de08602011-08-19 14:52:39 -0700434 native_to_managed_record_ = record;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700435 top_of_managed_stack_.SetSP(NULL);
Ian Rogers6de08602011-08-19 14:52:39 -0700436 }
437 void PopNativeToManagedRecord(const NativeToManagedRecord& record) {
Ian Rogersbdb03912011-09-14 00:55:44 -0700438 native_to_managed_record_ = record.link_;
439 top_of_managed_stack_.SetSP(reinterpret_cast<Method**>(record.last_top_of_managed_stack_));
440 top_of_managed_stack_pc_ = record.last_top_of_managed_stack_pc_;
Ian Rogers6de08602011-08-19 14:52:39 -0700441 }
442
Brian Carlstrombffb1552011-08-25 12:23:53 -0700443 const ClassLoader* GetClassLoaderOverride() {
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700444 // TODO: need to place the class_loader_override_ in a handle
445 // DCHECK(CanAccessDirectReferences());
buzbeec143c552011-08-20 17:38:58 -0700446 return class_loader_override_;
447 }
448
Brian Carlstrombffb1552011-08-25 12:23:53 -0700449 void SetClassLoaderOverride(const ClassLoader* class_loader_override) {
buzbeec143c552011-08-20 17:38:58 -0700450 class_loader_override_ = class_loader_override;
451 }
452
Ian Rogersaaa20802011-09-11 21:47:37 -0700453 // Create the internal representation of a stack trace, that is more time
454 // and space efficient to compute than the StackTraceElement[]
455 jobject CreateInternalStackTrace() const;
456
457 // Convert an internal stack trace representation to a StackTraceElement[]
458 static jobjectArray
459 InternalStackTraceToStackTraceElementArray(jobject internal, JNIEnv* env);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700460
Elliott Hughes410c0c82011-09-01 17:58:25 -0700461 void VisitRoots(Heap::RootVisitor* visitor, void* arg) const;
462
Elliott Hughesbe759c62011-09-08 19:38:21 -0700463 //
464 // Offsets of various members of native Thread class, used by compiled code.
465 //
466
467 static ThreadOffset SelfOffset() {
468 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
469 }
470
471 static ThreadOffset ExceptionOffset() {
472 return ThreadOffset(OFFSETOF_MEMBER(Thread, exception_));
473 }
474
Elliott Hughes54e7df12011-09-16 11:47:04 -0700475 static ThreadOffset ThinLockIdOffset() {
Elliott Hughesbe759c62011-09-08 19:38:21 -0700476 return ThreadOffset(OFFSETOF_MEMBER(Thread, thin_lock_id_));
477 }
478
479 static ThreadOffset CardTableOffset() {
480 return ThreadOffset(OFFSETOF_MEMBER(Thread, card_table_));
481 }
482
483 static ThreadOffset SuspendCountOffset() {
484 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_));
485 }
486
487 static ThreadOffset StateOffset() {
Elliott Hughes93e74e82011-09-13 11:07:03 -0700488 return ThreadOffset(OFFSETOF_VOLATILE_MEMBER(Thread, state_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700489 }
490
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700491 static ThreadOffset StackEndOffset() {
492 return ThreadOffset(OFFSETOF_MEMBER(Thread, stack_end_));
Elliott Hughesbe759c62011-09-08 19:38:21 -0700493 }
494
495 static ThreadOffset JniEnvOffset() {
496 return ThreadOffset(OFFSETOF_MEMBER(Thread, jni_env_));
497 }
498
499 static ThreadOffset TopOfManagedStackOffset() {
500 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_) +
501 OFFSETOF_MEMBER(Frame, sp_));
502 }
503
Ian Rogersbdb03912011-09-14 00:55:44 -0700504 static ThreadOffset TopOfManagedStackPcOffset() {
505 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_of_managed_stack_pc_));
506 }
507
Elliott Hughesbe759c62011-09-08 19:38:21 -0700508 static ThreadOffset TopSirtOffset() {
509 return ThreadOffset(OFFSETOF_MEMBER(Thread, top_sirt_));
510 }
511
Elliott Hughesbe759c62011-09-08 19:38:21 -0700512 static ThreadOffset SuspendCountEntryPointOffset() {
513 return ThreadOffset(OFFSETOF_MEMBER(Thread, suspend_count_entry_point_));
514 }
515
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700516 private:
Elliott Hughesdcc24742011-09-07 14:02:44 -0700517 Thread();
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700518 ~Thread();
Elliott Hughes02b48d12011-09-07 17:15:51 -0700519 friend class ThreadList; // For ~Thread.
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700520
Elliott Hughes5fe594f2011-09-08 12:33:17 -0700521 void CreatePeer(const char* name, bool as_daemon);
522 friend class Runtime; // For CreatePeer.
523
Elliott Hughesd92bec42011-09-02 17:04:36 -0700524 void DumpState(std::ostream& os) const;
525 void DumpStack(std::ostream& os) const;
526
Elliott Hughes93e74e82011-09-13 11:07:03 -0700527 void Attach(const Runtime* runtime);
528 static void* CreateCallback(void* arg);
529
Ian Rogersb033c752011-07-20 12:22:35 -0700530 void InitCpu();
buzbee3ea4ec52011-08-22 17:37:19 -0700531 void InitFunctionPointers();
Elliott Hughesbe759c62011-09-08 19:38:21 -0700532 void InitStackHwm();
533
Elliott Hughes5f791332011-09-15 17:45:30 -0700534 void NotifyLocked() {
535 if (wait_monitor_ != NULL) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700536 wait_cond_->Signal();
Elliott Hughes5f791332011-09-15 17:45:30 -0700537 }
538 }
539
Elliott Hughesbe759c62011-09-08 19:38:21 -0700540 static void ThreadExitCallback(void* arg);
Ian Rogersb033c752011-07-20 12:22:35 -0700541
Ian Rogersaaa20802011-09-11 21:47:37 -0700542 void WalkStack(StackVisitor* visitor) const;
Shih-wei Liao44175362011-08-28 16:59:17 -0700543
Ian Rogers67375ac2011-09-14 00:55:44 -0700544 void WalkStackUntilUpCall(StackVisitor* visitor, bool include_upcall) const;
Ian Rogersbdb03912011-09-14 00:55:44 -0700545
Elliott Hughesdcc24742011-09-07 14:02:44 -0700546 // Thin lock thread id. This is a small integer used by the thin lock implementation.
547 // This is not to be confused with the native thread's tid, nor is it the value returned
548 // by java.lang.Thread.getId --- this is a distinct value, used only for locking. One
549 // important difference between this id and the ids visible to managed code is that these
550 // ones get reused (to ensure that they fit in the number of bits available).
551 uint32_t thin_lock_id_;
Ian Rogersb033c752011-07-20 12:22:35 -0700552
Elliott Hughesd92bec42011-09-02 17:04:36 -0700553 // System thread id.
554 pid_t tid_;
555
556 // Native thread handle.
Elliott Hughesbe759c62011-09-08 19:38:21 -0700557 pthread_t pthread_;
Elliott Hughesd92bec42011-09-02 17:04:36 -0700558
Elliott Hughesdcc24742011-09-07 14:02:44 -0700559 // Our managed peer (an instance of java.lang.Thread).
Elliott Hughesd369bb72011-09-12 14:41:14 -0700560 Object* peer_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700561
562 // Guards the 'interrupted_' and 'wait_monitor_' members.
Elliott Hughes85d15452011-09-16 17:33:01 -0700563 mutable Mutex* wait_mutex_;
564 ConditionVariable* wait_cond_;
Elliott Hughes8daa0922011-09-11 13:46:25 -0700565 // Pointer to the monitor lock we're currently waiting on (or NULL), guarded by wait_mutex_.
566 Monitor* wait_monitor_;
567 // Thread "interrupted" status; stays raised until queried or thrown, guarded by wait_mutex_.
568 bool interrupted_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700569 // The next thread in the wait set this thread is part of.
570 Thread* wait_next_;
571
572 friend class Monitor;
Elliott Hughesdcc24742011-09-07 14:02:44 -0700573
buzbeec143c552011-08-20 17:38:58 -0700574 // FIXME: placeholder for the gc cardTable
575 uint32_t card_table_;
576
Elliott Hughes449b4bd2011-09-09 12:01:38 -0700577 // The end of this thread's stack. This is the lowest safely-addressable address on the stack.
578 // We leave extra space so there's room for the code that throws StackOverflowError.
579 byte* stack_end_;
Elliott Hughesbe759c62011-09-08 19:38:21 -0700580
Ian Rogers45a76cb2011-07-21 22:00:15 -0700581 // Top of the managed stack, written out prior to the state transition from
582 // kRunnable to kNative. Uses include to give the starting point for scanning
583 // a managed stack when a thread is in native code.
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700584 Frame top_of_managed_stack_;
Ian Rogers45a76cb2011-07-21 22:00:15 -0700585
Ian Rogersbdb03912011-09-14 00:55:44 -0700586 // PC corresponding to the call out of the top_of_managed_stack_ frame
587 uintptr_t top_of_managed_stack_pc_;
588
Ian Rogers6de08602011-08-19 14:52:39 -0700589 // A linked list (of stack allocated records) recording transitions from
590 // native to managed code.
591 NativeToManagedRecord* native_to_managed_record_;
592
Ian Rogers408f79a2011-08-23 18:22:33 -0700593 // Top of linked list of stack indirect reference tables or NULL for none
594 StackIndirectReferenceTable* top_sirt_;
Ian Rogersb033c752011-07-20 12:22:35 -0700595
596 // Every thread may have an associated JNI environment
Elliott Hughes69f5bc62011-08-24 09:26:14 -0700597 JNIEnvExt* jni_env_;
Ian Rogersb033c752011-07-20 12:22:35 -0700598
Elliott Hughes93e74e82011-09-13 11:07:03 -0700599 volatile State state_;
Carl Shapirob5573532011-07-12 18:22:59 -0700600
Carl Shapiro69759ea2011-07-21 18:13:35 -0700601 // Initialized to "this". On certain architectures (such as x86) reading
602 // off of Thread::Current is easy but getting the address of Thread::Current
603 // is hard. This field can be read off of Thread::Current to give the address.
604 Thread* self_;
605
606 Runtime* runtime_;
607
608 // The pending exception or NULL.
Elliott Hughese5b0dc82011-08-23 09:59:02 -0700609 Throwable* exception_;
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700610
Ian Rogers45a76cb2011-07-21 22:00:15 -0700611 // A non-zero value is used to tell the current thread to enter a safe point
612 // at the next poll.
613 int suspend_count_;
614
Elliott Hughesedcc09c2011-08-21 18:47:05 -0700615 // Needed to get the right ClassLoader in JNI_OnLoad, but also
616 // useful for testing.
Brian Carlstrombffb1552011-08-25 12:23:53 -0700617 const ClassLoader* class_loader_override_;
buzbeec143c552011-08-20 17:38:58 -0700618
Ian Rogersbdb03912011-09-14 00:55:44 -0700619 // Thread local, lazily allocated, long jump context. Used to deliver exceptions.
Elliott Hughes85d15452011-09-16 17:33:01 -0700620 Context* long_jump_context_;
Ian Rogersbdb03912011-09-14 00:55:44 -0700621
Carl Shapiro69759ea2011-07-21 18:13:35 -0700622 // TLS key used to retrieve the VM thread object.
Carl Shapirob5573532011-07-12 18:22:59 -0700623 static pthread_key_t pthread_key_self_;
624
Ian Rogers45a76cb2011-07-21 22:00:15 -0700625 // Entry point called when suspend_count_ is non-zero
626 void (*suspend_count_entry_point_)(Method** frame);
627
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700628 DISALLOW_COPY_AND_ASSIGN(Thread);
629};
Ian Rogersbdb03912011-09-14 00:55:44 -0700630
Elliott Hughes330304d2011-08-12 14:28:05 -0700631std::ostream& operator<<(std::ostream& os, const Thread& thread);
Ian Rogersb033c752011-07-20 12:22:35 -0700632std::ostream& operator<<(std::ostream& os, const Thread::State& state);
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700633
Elliott Hughesad7c2a32011-08-31 11:58:10 -0700634class ScopedThreadStateChange {
635 public:
636 ScopedThreadStateChange(Thread* thread, Thread::State new_state) : thread_(thread) {
637 old_thread_state_ = thread_->SetState(new_state);
638 }
639
640 ~ScopedThreadStateChange() {
641 thread_->SetState(old_thread_state_);
642 }
643
644 private:
645 Thread* thread_;
646 Thread::State old_thread_state_;
647 DISALLOW_COPY_AND_ASSIGN(ScopedThreadStateChange);
648};
649
Carl Shapiro0e5d75d2011-07-06 18:28:37 -0700650} // namespace art
651
652#endif // ART_SRC_THREAD_H_