blob: f0b55415930195ad3fe8fa94a8142500853113c1 [file] [log] [blame]
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001/*
2 * Copyright (C) 2008 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 */
16/*
17 * VM thread support.
18 */
19#ifndef _DALVIK_THREAD
20#define _DALVIK_THREAD
21
22#include "jni.h"
23
24#if defined(CHECK_MUTEX) && !defined(__USE_UNIX98)
25/* Linux lacks this unless you #define __USE_UNIX98 */
26int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type);
27enum { PTHREAD_MUTEX_ERRORCHECK = PTHREAD_MUTEX_ERRORCHECK_NP };
28#endif
29
30#ifdef WITH_MONITOR_TRACKING
31struct LockedObjectData;
32#endif
33
34/*
35 * Current status; these map to JDWP constants, so don't rearrange them.
36 * (If you do alter this, update the strings in dvmDumpThread and the
37 * conversion table in VMThread.java.)
38 *
39 * Note that "suspended" is orthogonal to these values (so says JDWP).
40 */
41typedef enum ThreadStatus {
42 /* these match up with JDWP values */
43 THREAD_ZOMBIE = 0, /* TERMINATED */
44 THREAD_RUNNING = 1, /* RUNNABLE or running now */
45 THREAD_TIMED_WAIT = 2, /* TIMED_WAITING in Object.wait() */
46 THREAD_MONITOR = 3, /* BLOCKED on a monitor */
47 THREAD_WAIT = 4, /* WAITING in Object.wait() */
48 /* non-JDWP states */
49 THREAD_INITIALIZING = 5, /* allocated, not yet running */
50 THREAD_STARTING = 6, /* started, not yet on thread list */
51 THREAD_NATIVE = 7, /* off in a JNI native method */
52 THREAD_VMWAIT = 8, /* waiting on a VM resource */
53} ThreadStatus;
54
55/* thread priorities, from java.lang.Thread */
56enum {
57 THREAD_MIN_PRIORITY = 1,
58 THREAD_NORM_PRIORITY = 5,
59 THREAD_MAX_PRIORITY = 10,
60};
61
62
63/* initialization */
64bool dvmThreadStartup(void);
65bool dvmThreadObjStartup(void);
66void dvmThreadShutdown(void);
67void dvmSlayDaemons(void);
68
69
70#define kJniLocalRefMax 512 /* arbitrary; should be plenty */
71#define kInternalRefDefault 32 /* equally arbitrary */
72#define kInternalRefMax 4096 /* mainly a sanity check */
73
74#define kMinStackSize (512 + STACK_OVERFLOW_RESERVE)
75#define kDefaultStackSize (8*1024) /* two 4K pages */
76#define kMaxStackSize (256*1024 + STACK_OVERFLOW_RESERVE)
77
78/*
79 * Our per-thread data.
80 *
81 * These are allocated on the system heap.
82 */
83typedef struct Thread {
84 /* small unique integer; useful for "thin" locks and debug messages */
85 u4 threadId;
86
87 /*
88 * Thread's current status. Can only be changed by the thread itself
89 * (i.e. don't mess with this from other threads).
90 */
91 ThreadStatus status;
92
93 /*
94 * This is the number of times the thread has been suspended. When the
95 * count drops to zero, the thread resumes.
96 *
97 * "dbgSuspendCount" is the portion of the suspend count that the
98 * debugger is responsible for. This has to be tracked separately so
99 * that we can recover correctly if the debugger abruptly disconnects
100 * (suspendCount -= dbgSuspendCount). The debugger should not be able
101 * to resume GC-suspended threads, because we ignore the debugger while
102 * a GC is in progress.
103 *
104 * Both of these are guarded by gDvm.threadSuspendCountLock.
105 *
106 * (We could store both of these in the same 32-bit, using 16-bit
107 * halves, to make atomic ops possible. In practice, you only need
108 * to read suspendCount, and we need to hold a mutex when making
109 * changes, so there's no need to merge them. Note the non-debug
110 * component will rarely be other than 1 or 0 -- not sure it's even
111 * possible with the way mutexes are currently used.)
112 */
113 int suspendCount;
114 int dbgSuspendCount;
115
116 /*
117 * Set to true when the thread suspends itself, false when it wakes up.
118 * This is only expected to be set when status==THREAD_RUNNING.
119 */
120 bool isSuspended;
121
122 /* thread handle, as reported by pthread_self() */
123 pthread_t handle;
124
125 /* thread ID, only useful under Linux */
126 pid_t systemTid;
127
128 /* start (high addr) of interp stack (subtract size to get malloc addr) */
129 u1* interpStackStart;
130
131 /* current limit of stack; flexes for StackOverflowError */
132 const u1* interpStackEnd;
133
134 /* interpreter stack size; our stacks are fixed-length */
135 int interpStackSize;
136 bool stackOverflowed;
137
138 /* FP of bottom-most (currently executing) stack frame on interp stack */
139 void* curFrame;
140
141 /* current exception, or NULL if nothing pending */
142 Object* exception;
143
144 /* the java/lang/Thread that we are associated with */
145 Object* threadObj;
146
147 /* the JNIEnv pointer associated with this thread */
148 JNIEnv* jniEnv;
149
150 /* internal reference tracking */
151 ReferenceTable internalLocalRefTable;
152
153 /* JNI local reference tracking */
154 ReferenceTable jniLocalRefTable;
155
156 /* JNI native monitor reference tracking (initialized on first use) */
157 ReferenceTable jniMonitorRefTable;
158
159 /* hack to make JNI_OnLoad work right */
160 Object* classLoaderOverride;
161
162 /* pointer to the monitor lock we're currently waiting on */
163 /* (do not set or clear unless the Monitor itself is held) */
164 /* TODO: consider changing this to Object* for better JDWP interaction */
165 Monitor* waitMonitor;
166 /* set when we confirm that the thread must be interrupted from a wait */
167 bool interruptingWait;
168 /* thread "interrupted" status; stays raised until queried or thrown */
169 bool interrupted;
170
171 /*
172 * Set to true when the thread is in the process of throwing an
173 * OutOfMemoryError.
174 */
175 bool throwingOOME;
176
177 /* links to rest of thread list; grab global lock before traversing */
178 struct Thread* prev;
179 struct Thread* next;
180
181 /* JDWP invoke-during-breakpoint support */
182 DebugInvokeReq invokeReq;
183
184#ifdef WITH_MONITOR_TRACKING
185 /* objects locked by this thread; most recent is at head of list */
186 struct LockedObjectData* pLockedObjects;
187#endif
188
189#ifdef WITH_ALLOC_LIMITS
190 /* allocation limit, for Debug.setAllocationLimit() regression testing */
191 int allocLimit;
192#endif
193
194#ifdef WITH_PROFILER
195 /* base time for per-thread CPU timing */
196 bool cpuClockBaseSet;
197 u8 cpuClockBase;
198
199 /* memory allocation profiling state */
200 AllocProfState allocProf;
201#endif
202
203#ifdef WITH_JNI_STACK_CHECK
204 u4 stackCrc;
205#endif
The Android Open Source Project99409882009-03-18 22:20:24 -0700206
207#if WITH_EXTRA_GC_CHECKS > 1
208 /* PC, saved on every instruction; redundant with StackSaveArea */
209 const u2* currentPc2;
210#endif
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800211} Thread;
212
213/* start point for an internal thread; mimics pthread args */
214typedef void* (*InternalThreadStart)(void* arg);
215
216/* args for internal thread creation */
217typedef struct InternalStartArgs {
218 /* inputs */
219 InternalThreadStart func;
220 void* funcArg;
221 char* name;
222 Object* group;
223 bool isDaemon;
224 /* result */
225 volatile Thread** pThread;
226 volatile int* pCreateStatus;
227} InternalStartArgs;
228
229/* finish init */
230bool dvmPrepMainForJni(JNIEnv* pEnv);
231bool dvmPrepMainThread(void);
232
233/* utility function to get the tid */
234pid_t dvmGetSysThreadId(void);
235
236/*
237 * Get our Thread* from TLS.
238 *
239 * Returns NULL if this isn't a thread that the VM is aware of.
240 */
241Thread* dvmThreadSelf(void);
242
243/* grab the thread list global lock */
244void dvmLockThreadList(Thread* self);
245/* release the thread list global lock */
246void dvmUnlockThreadList(void);
247
248/*
249 * Thread suspend/resume, used by the GC and debugger.
250 */
251typedef enum SuspendCause {
252 SUSPEND_NOT = 0,
253 SUSPEND_FOR_GC,
254 SUSPEND_FOR_DEBUG,
255 SUSPEND_FOR_DEBUG_EVENT,
256 SUSPEND_FOR_STACK_DUMP,
257 SUSPEND_FOR_DEX_OPT,
258} SuspendCause;
259void dvmSuspendThread(Thread* thread);
260void dvmSuspendSelf(bool jdwpActivity);
261void dvmResumeThread(Thread* thread);
262void dvmSuspendAllThreads(SuspendCause why);
263void dvmResumeAllThreads(SuspendCause why);
264void dvmUndoDebuggerSuspensions(void);
265
266/*
267 * Check suspend state. Grab threadListLock before calling.
268 */
269bool dvmIsSuspended(Thread* thread);
270
271/*
272 * Wait until a thread has suspended. (Used by debugger support.)
273 */
274void dvmWaitForSuspend(Thread* thread);
275
276/*
277 * Check to see if we should be suspended now. If so, suspend ourselves
278 * by sleeping on a condition variable.
279 *
280 * If "self" is NULL, this will use dvmThreadSelf().
281 */
282bool dvmCheckSuspendPending(Thread* self);
283
284/*
The Android Open Source Project99409882009-03-18 22:20:24 -0700285 * Fast test for use in the interpreter. Returns "true" if our suspend
286 * count is nonzero.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800287 */
The Android Open Source Project99409882009-03-18 22:20:24 -0700288INLINE bool dvmCheckSuspendQuick(Thread* self) {
289 return (self->suspendCount != 0);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800290}
291
292/*
293 * Used when changing thread state. Threads may only change their own.
294 * The "self" argument, which may be NULL, is accepted as an optimization.
295 *
296 * If you're calling this before waiting on a resource (e.g. THREAD_WAIT
297 * or THREAD_MONITOR), do so in the same function as the wait -- this records
298 * the current stack depth for the GC.
299 *
300 * If you're changing to THREAD_RUNNING, this will check for suspension.
301 *
302 * Returns the old status.
303 */
304ThreadStatus dvmChangeStatus(Thread* self, ThreadStatus newStatus);
305
306/*
307 * Initialize a mutex.
308 */
309INLINE void dvmInitMutex(pthread_mutex_t* pMutex)
310{
311#ifdef CHECK_MUTEX
312 pthread_mutexattr_t attr;
313 int cc;
314
315 pthread_mutexattr_init(&attr);
316 cc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
317 assert(cc == 0);
318 pthread_mutex_init(pMutex, &attr);
319 pthread_mutexattr_destroy(&attr);
320#else
321 pthread_mutex_init(pMutex, NULL); // default=PTHREAD_MUTEX_FAST_NP
322#endif
323}
324
325/*
326 * Grab a plain mutex.
327 */
328INLINE void dvmLockMutex(pthread_mutex_t* pMutex)
329{
330 int cc = pthread_mutex_lock(pMutex);
331 assert(cc == 0);
332}
333
334/*
335 * Unlock pthread mutex.
336 */
337INLINE void dvmUnlockMutex(pthread_mutex_t* pMutex)
338{
339 int cc = pthread_mutex_unlock(pMutex);
340 assert(cc == 0);
341}
342
343/*
344 * Destroy a mutex.
345 */
346INLINE void dvmDestroyMutex(pthread_mutex_t* pMutex)
347{
348 int cc = pthread_mutex_destroy(pMutex);
349 assert(cc == 0);
350}
351
352/*
353 * Create a thread as a result of java.lang.Thread.start().
354 */
355bool dvmCreateInterpThread(Object* threadObj, int reqStackSize);
356
357/*
358 * Create a thread internal to the VM. It's visible to interpreted code,
359 * but found in the "system" thread group rather than "main".
360 */
361bool dvmCreateInternalThread(pthread_t* pHandle, const char* name,
362 InternalThreadStart func, void* funcArg);
363
364/*
365 * Attach or detach the current thread from the VM.
366 */
367bool dvmAttachCurrentThread(const JavaVMAttachArgs* pArgs, bool isDaemon);
368void dvmDetachCurrentThread(void);
369
370/*
371 * Get the "main" or "system" thread group.
372 */
373Object* dvmGetMainThreadGroup(void);
374Object* dvmGetSystemThreadGroup(void);
375
376/*
377 * Given a java/lang/VMThread object, return our Thread.
378 */
379Thread* dvmGetThreadFromThreadObject(Object* vmThreadObj);
380
381/*
382 * Sleep in a thread. Returns when the sleep timer returns or the thread
383 * is interrupted.
384 */
385void dvmThreadSleep(u8 msec, u4 nsec);
386
387/*
388 * Get the name of a thread. (For safety, hold the thread list lock.)
389 */
390char* dvmGetThreadName(Thread* thread);
391
392/*
393 * Return true if a thread is on the internal list. If it is, the
394 * thread is part of the GC's root set.
395 */
396bool dvmIsOnThreadList(const Thread* thread);
397
398/*
399 * Get/set the JNIEnv field.
400 */
401INLINE JNIEnv* dvmGetThreadJNIEnv(Thread* self) { return self->jniEnv; }
402INLINE void dvmSetThreadJNIEnv(Thread* self, JNIEnv* env) { self->jniEnv = env;}
403
404/*
405 * Update the priority value of the underlying pthread.
406 */
407void dvmChangeThreadPriority(Thread* thread, int newPriority);
408
409
410/*
411 * Debug: dump information about a single thread.
412 */
413void dvmDumpThread(Thread* thread, bool isRunning);
414void dvmDumpThreadEx(const DebugOutputTarget* target, Thread* thread,
415 bool isRunning);
416
417/*
418 * Debug: dump information about all threads.
419 */
420void dvmDumpAllThreads(bool grabLock);
421void dvmDumpAllThreadsEx(const DebugOutputTarget* target, bool grabLock);
422
423
424#ifdef WITH_MONITOR_TRACKING
425/*
426 * Track locks held by the current thread, along with the stack trace at
427 * the point the lock was acquired.
428 *
429 * At any given time the number of locks held across the VM should be
430 * fairly small, so there's no reason not to generate and store the entire
431 * stack trace.
432 */
433typedef struct LockedObjectData {
434 /* the locked object */
435 struct Object* obj;
436
437 /* number of times it has been locked recursively (zero-based ref count) */
438 int recursionCount;
439
440 /* stack trace at point of initial acquire */
441 u4 stackDepth;
442 int* rawStackTrace;
443
444 struct LockedObjectData* next;
445} LockedObjectData;
446
447/*
448 * Add/remove/find objects from the thread's monitor list.
449 */
450void dvmAddToMonitorList(Thread* self, Object* obj, bool withTrace);
451void dvmRemoveFromMonitorList(Thread* self, Object* obj);
452LockedObjectData* dvmFindInMonitorList(const Thread* self, const Object* obj);
453#endif
454
455#endif /*_DALVIK_THREAD*/