blob: f1e5651de887a5538f970ab79e64875ca4ca3576 [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)
Andy McFadden39b99b02009-05-11 14:39:13 -070075#define kDefaultStackSize (12*1024) /* three 4K pages */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080076#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,
Bill Buzbee27176222009-06-09 09:20:16 -0700258#if defined(WITH_JIT)
259 SUSPEND_FOR_JIT,
260#endif
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800261} SuspendCause;
262void dvmSuspendThread(Thread* thread);
263void dvmSuspendSelf(bool jdwpActivity);
264void dvmResumeThread(Thread* thread);
265void dvmSuspendAllThreads(SuspendCause why);
266void dvmResumeAllThreads(SuspendCause why);
267void dvmUndoDebuggerSuspensions(void);
268
269/*
270 * Check suspend state. Grab threadListLock before calling.
271 */
272bool dvmIsSuspended(Thread* thread);
273
274/*
275 * Wait until a thread has suspended. (Used by debugger support.)
276 */
277void dvmWaitForSuspend(Thread* thread);
278
279/*
280 * Check to see if we should be suspended now. If so, suspend ourselves
281 * by sleeping on a condition variable.
282 *
283 * If "self" is NULL, this will use dvmThreadSelf().
284 */
285bool dvmCheckSuspendPending(Thread* self);
286
287/*
The Android Open Source Project99409882009-03-18 22:20:24 -0700288 * Fast test for use in the interpreter. Returns "true" if our suspend
289 * count is nonzero.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800290 */
The Android Open Source Project99409882009-03-18 22:20:24 -0700291INLINE bool dvmCheckSuspendQuick(Thread* self) {
292 return (self->suspendCount != 0);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800293}
294
295/*
296 * Used when changing thread state. Threads may only change their own.
297 * The "self" argument, which may be NULL, is accepted as an optimization.
298 *
299 * If you're calling this before waiting on a resource (e.g. THREAD_WAIT
300 * or THREAD_MONITOR), do so in the same function as the wait -- this records
301 * the current stack depth for the GC.
302 *
303 * If you're changing to THREAD_RUNNING, this will check for suspension.
304 *
305 * Returns the old status.
306 */
307ThreadStatus dvmChangeStatus(Thread* self, ThreadStatus newStatus);
308
309/*
310 * Initialize a mutex.
311 */
312INLINE void dvmInitMutex(pthread_mutex_t* pMutex)
313{
314#ifdef CHECK_MUTEX
315 pthread_mutexattr_t attr;
316 int cc;
317
318 pthread_mutexattr_init(&attr);
319 cc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
320 assert(cc == 0);
321 pthread_mutex_init(pMutex, &attr);
322 pthread_mutexattr_destroy(&attr);
323#else
324 pthread_mutex_init(pMutex, NULL); // default=PTHREAD_MUTEX_FAST_NP
325#endif
326}
327
328/*
329 * Grab a plain mutex.
330 */
331INLINE void dvmLockMutex(pthread_mutex_t* pMutex)
332{
333 int cc = pthread_mutex_lock(pMutex);
334 assert(cc == 0);
335}
336
337/*
338 * Unlock pthread mutex.
339 */
340INLINE void dvmUnlockMutex(pthread_mutex_t* pMutex)
341{
342 int cc = pthread_mutex_unlock(pMutex);
343 assert(cc == 0);
344}
345
346/*
347 * Destroy a mutex.
348 */
349INLINE void dvmDestroyMutex(pthread_mutex_t* pMutex)
350{
351 int cc = pthread_mutex_destroy(pMutex);
352 assert(cc == 0);
353}
354
355/*
356 * Create a thread as a result of java.lang.Thread.start().
357 */
358bool dvmCreateInterpThread(Object* threadObj, int reqStackSize);
359
360/*
361 * Create a thread internal to the VM. It's visible to interpreted code,
362 * but found in the "system" thread group rather than "main".
363 */
364bool dvmCreateInternalThread(pthread_t* pHandle, const char* name,
365 InternalThreadStart func, void* funcArg);
366
367/*
368 * Attach or detach the current thread from the VM.
369 */
370bool dvmAttachCurrentThread(const JavaVMAttachArgs* pArgs, bool isDaemon);
371void dvmDetachCurrentThread(void);
372
373/*
374 * Get the "main" or "system" thread group.
375 */
376Object* dvmGetMainThreadGroup(void);
377Object* dvmGetSystemThreadGroup(void);
378
379/*
380 * Given a java/lang/VMThread object, return our Thread.
381 */
382Thread* dvmGetThreadFromThreadObject(Object* vmThreadObj);
383
384/*
385 * Sleep in a thread. Returns when the sleep timer returns or the thread
386 * is interrupted.
387 */
388void dvmThreadSleep(u8 msec, u4 nsec);
389
390/*
391 * Get the name of a thread. (For safety, hold the thread list lock.)
392 */
393char* dvmGetThreadName(Thread* thread);
394
395/*
396 * Return true if a thread is on the internal list. If it is, the
397 * thread is part of the GC's root set.
398 */
399bool dvmIsOnThreadList(const Thread* thread);
400
401/*
402 * Get/set the JNIEnv field.
403 */
404INLINE JNIEnv* dvmGetThreadJNIEnv(Thread* self) { return self->jniEnv; }
405INLINE void dvmSetThreadJNIEnv(Thread* self, JNIEnv* env) { self->jniEnv = env;}
406
407/*
San Mehat256fc152009-04-21 14:03:06 -0700408 * Change the scheduler group of the current process
409 */
410int dvmChangeThreadSchedulerGroup(const char *group);
411
412/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800413 * Update the priority value of the underlying pthread.
414 */
415void dvmChangeThreadPriority(Thread* thread, int newPriority);
416
417
418/*
419 * Debug: dump information about a single thread.
420 */
421void dvmDumpThread(Thread* thread, bool isRunning);
422void dvmDumpThreadEx(const DebugOutputTarget* target, Thread* thread,
423 bool isRunning);
424
425/*
426 * Debug: dump information about all threads.
427 */
428void dvmDumpAllThreads(bool grabLock);
429void dvmDumpAllThreadsEx(const DebugOutputTarget* target, bool grabLock);
430
431
432#ifdef WITH_MONITOR_TRACKING
433/*
434 * Track locks held by the current thread, along with the stack trace at
435 * the point the lock was acquired.
436 *
437 * At any given time the number of locks held across the VM should be
438 * fairly small, so there's no reason not to generate and store the entire
439 * stack trace.
440 */
441typedef struct LockedObjectData {
442 /* the locked object */
443 struct Object* obj;
444
445 /* number of times it has been locked recursively (zero-based ref count) */
446 int recursionCount;
447
448 /* stack trace at point of initial acquire */
449 u4 stackDepth;
450 int* rawStackTrace;
451
452 struct LockedObjectData* next;
453} LockedObjectData;
454
455/*
456 * Add/remove/find objects from the thread's monitor list.
457 */
458void dvmAddToMonitorList(Thread* self, Object* obj, bool withTrace);
459void dvmRemoveFromMonitorList(Thread* self, Object* obj);
460LockedObjectData* dvmFindInMonitorList(const Thread* self, const Object* obj);
461#endif
462
463#endif /*_DALVIK_THREAD*/