blob: a4c64eca90f238449f73bc992a12725a9aab4da2 [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 */
Andy McFadden0083d372009-08-21 14:44:04 -070016
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080017/*
18 * VM thread support.
19 */
20#ifndef _DALVIK_THREAD
21#define _DALVIK_THREAD
22
23#include "jni.h"
buzbee9f601a92011-02-11 17:48:20 -080024#include "interp/InterpState.h"
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080025
Carl Shapiro980ffb02010-03-13 22:34:01 -080026#include <errno.h>
Andy McFadden2b94b302010-03-09 16:38:36 -080027#include <cutils/sched_policy.h>
28
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080029#if defined(CHECK_MUTEX) && !defined(__USE_UNIX98)
Andy McFadden0083d372009-08-21 14:44:04 -070030/* glibc lacks this unless you #define __USE_UNIX98 */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080031int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type);
32enum { PTHREAD_MUTEX_ERRORCHECK = PTHREAD_MUTEX_ERRORCHECK_NP };
33#endif
34
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080035/*
36 * Current status; these map to JDWP constants, so don't rearrange them.
37 * (If you do alter this, update the strings in dvmDumpThread and the
38 * conversion table in VMThread.java.)
39 *
40 * Note that "suspended" is orthogonal to these values (so says JDWP).
41 */
Carl Shapirod862faa2011-04-27 23:00:01 -070042enum ThreadStatus {
Andy McFaddenb5f3c0b2010-08-23 16:45:24 -070043 THREAD_UNDEFINED = -1, /* makes enum compatible with int32_t */
Andy McFaddenab227f72010-04-06 12:37:48 -070044
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080045 /* these match up with JDWP values */
46 THREAD_ZOMBIE = 0, /* TERMINATED */
47 THREAD_RUNNING = 1, /* RUNNABLE or running now */
48 THREAD_TIMED_WAIT = 2, /* TIMED_WAITING in Object.wait() */
49 THREAD_MONITOR = 3, /* BLOCKED on a monitor */
50 THREAD_WAIT = 4, /* WAITING in Object.wait() */
51 /* non-JDWP states */
52 THREAD_INITIALIZING = 5, /* allocated, not yet running */
53 THREAD_STARTING = 6, /* started, not yet on thread list */
54 THREAD_NATIVE = 7, /* off in a JNI native method */
55 THREAD_VMWAIT = 8, /* waiting on a VM resource */
Andy McFaddenb5f3c0b2010-08-23 16:45:24 -070056 THREAD_SUSPENDED = 9, /* suspended, usually by GC or debugger */
Carl Shapirod862faa2011-04-27 23:00:01 -070057};
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080058
59/* thread priorities, from java.lang.Thread */
60enum {
61 THREAD_MIN_PRIORITY = 1,
62 THREAD_NORM_PRIORITY = 5,
63 THREAD_MAX_PRIORITY = 10,
64};
65
66
67/* initialization */
68bool dvmThreadStartup(void);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080069void dvmThreadShutdown(void);
70void dvmSlayDaemons(void);
71
72
Carl Shapiro77ebd062011-04-04 10:43:02 -070073#define kJniLocalRefMin 64
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080074#define kJniLocalRefMax 512 /* arbitrary; should be plenty */
75#define kInternalRefDefault 32 /* equally arbitrary */
76#define kInternalRefMax 4096 /* mainly a sanity check */
77
78#define kMinStackSize (512 + STACK_OVERFLOW_RESERVE)
Andy McFadden80e8d7f2011-01-25 12:26:41 -080079#define kDefaultStackSize (16*1024) /* four 4K pages */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080080#define kMaxStackSize (256*1024 + STACK_OVERFLOW_RESERVE)
81
82/*
buzbee9a3147c2011-03-02 15:43:48 -080083 * Interpreter control struction. Packed into a long long to enable
84 * atomic updates.
85 */
Carl Shapirod862faa2011-04-27 23:00:01 -070086union InterpBreak {
buzbee9a3147c2011-03-02 15:43:48 -080087 volatile int64_t all;
88 struct {
buzbee389e2582011-04-22 15:12:40 -070089 uint16_t subMode;
buzbee9a3147c2011-03-02 15:43:48 -080090 uint8_t breakFlags;
buzbee389e2582011-04-22 15:12:40 -070091 int8_t unused; /* for future expansion */
buzbee9a3147c2011-03-02 15:43:48 -080092#ifndef DVM_NO_ASM_INTERP
93 void* curHandlerTable;
94#else
95 void* unused;
96#endif
97 } ctl;
Carl Shapirod862faa2011-04-27 23:00:01 -070098};
buzbee9a3147c2011-03-02 15:43:48 -080099
100/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800101 * Our per-thread data.
102 *
103 * These are allocated on the system heap.
104 */
Carl Shapirod862faa2011-04-27 23:00:01 -0700105struct Thread {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800106 /*
buzbee9f601a92011-02-11 17:48:20 -0800107 * Interpreter state which must be preserved across nested
108 * interpreter invocations (via JNI callbacks). Must be the first
109 * element in Thread.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800110 */
buzbee9f601a92011-02-11 17:48:20 -0800111 InterpSaveState interpSave;
buzbee9a3147c2011-03-02 15:43:48 -0800112
113 /* small unique integer; useful for "thin" locks and debug messages */
114 u4 threadId;
115
buzbee9f601a92011-02-11 17:48:20 -0800116 /*
117 * Begin interpreter state which does not need to be preserved, but should
118 * be located towards the beginning of the Thread structure for
119 * efficiency.
120 */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800121
buzbee9a3147c2011-03-02 15:43:48 -0800122 /*
123 * interpBreak contains info about the interpreter mode, as well as
124 * a count of the number of times the thread has been suspended. When
125 * the count drops to zero, the thread resumes.
buzbee389e2582011-04-22 15:12:40 -0700126 */
127 InterpBreak interpBreak;
128
129 /*
buzbee9a3147c2011-03-02 15:43:48 -0800130 * "dbgSuspendCount" is the portion of the suspend count that the
131 * debugger is responsible for. This has to be tracked separately so
132 * that we can recover correctly if the debugger abruptly disconnects
133 * (suspendCount -= dbgSuspendCount). The debugger should not be able
134 * to resume GC-suspended threads, because we ignore the debugger while
135 * a GC is in progress.
136 *
137 * Both of these are guarded by gDvm.threadSuspendCountLock.
138 *
139 * Note the non-debug component will rarely be other than 1 or 0 -- (not
140 * sure it's even possible with the way mutexes are currently used.)
141 */
buzbee389e2582011-04-22 15:12:40 -0700142
Carl Shapiroa62c3a02011-05-03 17:59:35 -0700143 int suspendCount;
144 int dbgSuspendCount;
buzbee9a3147c2011-03-02 15:43:48 -0800145
buzbee30bc0d42011-04-22 10:27:14 -0700146 u1* cardTable;
147
148 /* current limit of stack; flexes for StackOverflowError */
149 const u1* interpStackEnd;
150
151 /* FP of bottom-most (currently executing) stack frame on interp stack */
152 void* XcurFrame;
153 /* current exception, or NULL if nothing pending */
154 Object* exception;
155
156 bool debugIsMethodEntry;
157 /* interpreter stack size; our stacks are fixed-length */
158 int interpStackSize;
159 bool stackOverflowed;
160
161 /* thread handle, as reported by pthread_self() */
162 pthread_t handle;
163
buzbeea7d59bb2011-02-24 09:38:17 -0800164 /* Assembly interpreter handler tables */
165#ifndef DVM_NO_ASM_INTERP
buzbeea7d59bb2011-02-24 09:38:17 -0800166 void* mainHandlerTable; // Table of actual instruction handler
167 void* altHandlerTable; // Table of breakout handlers
buzbee9f601a92011-02-11 17:48:20 -0800168#else
buzbeea7d59bb2011-02-24 09:38:17 -0800169 void* unused0; // Consume space to keep offsets
170 void* unused1; // the same between builds with
buzbee9f601a92011-02-11 17:48:20 -0800171#endif
172
buzbee9a3147c2011-03-02 15:43:48 -0800173 /*
174 * singleStepCount is a countdown timer used with the breakFlag
175 * kInterpSingleStep. If kInterpSingleStep is set in breakFlags,
176 * singleStepCount will decremented each instruction execution.
177 * Once it reaches zero, the kInterpSingleStep flag in breakFlags
178 * will be cleared. This can be used to temporarily prevent
179 * execution from re-entering JIT'd code or force inter-instruction
180 * checks by delaying the reset of curHandlerTable to mainHandlerTable.
181 */
182 int singleStepCount;
183
buzbee9f601a92011-02-11 17:48:20 -0800184#ifdef WITH_JIT
185 struct JitToInterpEntries jitToInterpEntries;
186 /*
187 * Whether the current top VM frame is in the interpreter or JIT cache:
188 * NULL : in the interpreter
189 * non-NULL: entry address of the JIT'ed code (the actual value doesn't
190 * matter)
191 */
192 void* inJitCodeCache;
193 unsigned char* pJitProfTable;
buzbee9f601a92011-02-11 17:48:20 -0800194 int jitThreshold;
buzbee9a3147c2011-03-02 15:43:48 -0800195 const void* jitResumeNPC; // Translation return point
196 const u4* jitResumeNSP; // Native SP at return point
197 const u2* jitResumeDPC; // Dalvik inst following single-step
buzbee9f601a92011-02-11 17:48:20 -0800198 JitState jitState;
199 int icRechainCount;
200 const void* pProfileCountdown;
buzbee9a3147c2011-03-02 15:43:48 -0800201 const ClassObject* callsiteClass;
202 const Method* methodToCall;
buzbeea7d59bb2011-02-24 09:38:17 -0800203#endif
204
205 /* JNI local reference tracking */
buzbeea7d59bb2011-02-24 09:38:17 -0800206 IndirectRefTable jniLocalRefTable;
buzbeea7d59bb2011-02-24 09:38:17 -0800207
208#if defined(WITH_JIT)
buzbee9f601a92011-02-11 17:48:20 -0800209#if defined(WITH_SELF_VERIFICATION)
210 /* Buffer for register state during self verification */
211 struct ShadowSpace* shadowSpace;
212#endif
213 int currTraceRun;
214 int totalTraceLen; // Number of Dalvik insts in trace
215 const u2* currTraceHead; // Start of the trace we're building
216 const u2* currRunHead; // Start of run we're building
217 int currRunLen; // Length of run in 16-bit words
218 const u2* lastPC; // Stage the PC for the threaded interpreter
buzbee9a3147c2011-03-02 15:43:48 -0800219 const Method* traceMethod; // Starting method of current trace
buzbee9f601a92011-02-11 17:48:20 -0800220 intptr_t threshFilter[JIT_TRACE_THRESH_FILTER_SIZE];
221 JitTraceRun trace[MAX_JIT_RUN_LEN];
222#endif
223
224 /*
225 * Thread's current status. Can only be changed by the thread itself
226 * (i.e. don't mess with this from other threads).
227 */
228 volatile ThreadStatus status;
229
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800230 /* thread ID, only useful under Linux */
231 pid_t systemTid;
232
233 /* start (high addr) of interp stack (subtract size to get malloc addr) */
234 u1* interpStackStart;
235
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800236 /* the java/lang/Thread that we are associated with */
237 Object* threadObj;
238
239 /* the JNIEnv pointer associated with this thread */
240 JNIEnv* jniEnv;
241
242 /* internal reference tracking */
243 ReferenceTable internalLocalRefTable;
244
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800245
246 /* JNI native monitor reference tracking (initialized on first use) */
247 ReferenceTable jniMonitorRefTable;
248
249 /* hack to make JNI_OnLoad work right */
250 Object* classLoaderOverride;
251
Carl Shapirob4539192010-01-04 16:50:00 -0800252 /* mutex to guard the interrupted and the waitMonitor members */
253 pthread_mutex_t waitMutex;
254
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800255 /* pointer to the monitor lock we're currently waiting on */
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800256 /* guarded by waitMutex */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800257 /* TODO: consider changing this to Object* for better JDWP interaction */
258 Monitor* waitMonitor;
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800259
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800260 /* thread "interrupted" status; stays raised until queried or thrown */
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800261 /* guarded by waitMutex */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800262 bool interrupted;
263
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800264 /* links to the next thread in the wait set this thread is part of */
265 struct Thread* waitNext;
266
267 /* object to sleep on while we are waiting for a monitor */
268 pthread_cond_t waitCond;
269
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800270 /*
271 * Set to true when the thread is in the process of throwing an
272 * OutOfMemoryError.
273 */
274 bool throwingOOME;
275
276 /* links to rest of thread list; grab global lock before traversing */
277 struct Thread* prev;
278 struct Thread* next;
279
Andy McFadden909ce242009-12-10 16:38:30 -0800280 /* used by threadExitCheck when a thread exits without detaching */
281 int threadExitCheckCount;
282
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800283 /* JDWP invoke-during-breakpoint support */
284 DebugInvokeReq invokeReq;
285
Andy McFadden0d615c32010-08-18 12:19:51 -0700286 /* base time for per-thread CPU timing (used by method profiling) */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800287 bool cpuClockBaseSet;
288 u8 cpuClockBase;
289
290 /* memory allocation profiling state */
291 AllocProfState allocProf;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800292
293#ifdef WITH_JNI_STACK_CHECK
294 u4 stackCrc;
295#endif
The Android Open Source Project99409882009-03-18 22:20:24 -0700296
297#if WITH_EXTRA_GC_CHECKS > 1
298 /* PC, saved on every instruction; redundant with StackSaveArea */
299 const u2* currentPc2;
300#endif
buzbee94d65252011-03-24 16:41:03 -0700301
302 /* Safepoint callback state */
303 pthread_mutex_t callbackMutex;
304 SafePointCallback callback;
305 void* callbackArg;
Carl Shapirod862faa2011-04-27 23:00:01 -0700306};
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800307
308/* start point for an internal thread; mimics pthread args */
309typedef void* (*InternalThreadStart)(void* arg);
310
311/* args for internal thread creation */
Carl Shapirod862faa2011-04-27 23:00:01 -0700312struct InternalStartArgs {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800313 /* inputs */
314 InternalThreadStart func;
315 void* funcArg;
316 char* name;
317 Object* group;
318 bool isDaemon;
319 /* result */
320 volatile Thread** pThread;
321 volatile int* pCreateStatus;
Carl Shapirod862faa2011-04-27 23:00:01 -0700322};
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800323
324/* finish init */
325bool dvmPrepMainForJni(JNIEnv* pEnv);
326bool dvmPrepMainThread(void);
327
328/* utility function to get the tid */
329pid_t dvmGetSysThreadId(void);
330
331/*
332 * Get our Thread* from TLS.
333 *
334 * Returns NULL if this isn't a thread that the VM is aware of.
335 */
336Thread* dvmThreadSelf(void);
337
338/* grab the thread list global lock */
339void dvmLockThreadList(Thread* self);
Andy McFaddend19988d2010-10-22 13:32:12 -0700340/* try to grab the thread list global lock */
341bool dvmTryLockThreadList(void);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800342/* release the thread list global lock */
343void dvmUnlockThreadList(void);
344
345/*
346 * Thread suspend/resume, used by the GC and debugger.
347 */
Carl Shapirod862faa2011-04-27 23:00:01 -0700348enum SuspendCause {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800349 SUSPEND_NOT = 0,
350 SUSPEND_FOR_GC,
351 SUSPEND_FOR_DEBUG,
352 SUSPEND_FOR_DEBUG_EVENT,
353 SUSPEND_FOR_STACK_DUMP,
354 SUSPEND_FOR_DEX_OPT,
Carl Shapiro1e714bb2010-03-16 03:26:49 -0700355 SUSPEND_FOR_VERIFY,
Carl Shapiro07018e22010-10-26 21:07:41 -0700356 SUSPEND_FOR_HPROF,
Bill Buzbee27176222009-06-09 09:20:16 -0700357#if defined(WITH_JIT)
Ben Cheng60c24f42010-01-04 12:29:56 -0800358 SUSPEND_FOR_TBL_RESIZE, // jit-table resize
359 SUSPEND_FOR_IC_PATCH, // polymorphic callsite inline-cache patch
360 SUSPEND_FOR_CC_RESET, // code-cache reset
Bill Buzbee964a7b02010-01-28 12:54:19 -0800361 SUSPEND_FOR_REFRESH, // Reload data cached in interpState
Bill Buzbee27176222009-06-09 09:20:16 -0700362#endif
Carl Shapirod862faa2011-04-27 23:00:01 -0700363};
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800364void dvmSuspendThread(Thread* thread);
365void dvmSuspendSelf(bool jdwpActivity);
366void dvmResumeThread(Thread* thread);
367void dvmSuspendAllThreads(SuspendCause why);
368void dvmResumeAllThreads(SuspendCause why);
369void dvmUndoDebuggerSuspensions(void);
370
371/*
372 * Check suspend state. Grab threadListLock before calling.
373 */
Andy McFadden3469a7e2010-08-04 16:09:10 -0700374bool dvmIsSuspended(const Thread* thread);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800375
376/*
377 * Wait until a thread has suspended. (Used by debugger support.)
378 */
379void dvmWaitForSuspend(Thread* thread);
380
381/*
382 * Check to see if we should be suspended now. If so, suspend ourselves
383 * by sleeping on a condition variable.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800384 */
Carl Shapirod862faa2011-04-27 23:00:01 -0700385extern "C" bool dvmCheckSuspendPending(Thread* self);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800386
387/*
The Android Open Source Project99409882009-03-18 22:20:24 -0700388 * Fast test for use in the interpreter. Returns "true" if our suspend
389 * count is nonzero.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800390 */
The Android Open Source Project99409882009-03-18 22:20:24 -0700391INLINE bool dvmCheckSuspendQuick(Thread* self) {
buzbeecf2aac72011-04-25 11:23:46 -0700392 return (self->interpBreak.ctl.subMode & kSubModeSuspendPending);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800393}
394
395/*
396 * Used when changing thread state. Threads may only change their own.
397 * The "self" argument, which may be NULL, is accepted as an optimization.
398 *
399 * If you're calling this before waiting on a resource (e.g. THREAD_WAIT
400 * or THREAD_MONITOR), do so in the same function as the wait -- this records
401 * the current stack depth for the GC.
402 *
403 * If you're changing to THREAD_RUNNING, this will check for suspension.
404 *
405 * Returns the old status.
406 */
407ThreadStatus dvmChangeStatus(Thread* self, ThreadStatus newStatus);
408
409/*
410 * Initialize a mutex.
411 */
412INLINE void dvmInitMutex(pthread_mutex_t* pMutex)
413{
414#ifdef CHECK_MUTEX
415 pthread_mutexattr_t attr;
416 int cc;
417
418 pthread_mutexattr_init(&attr);
419 cc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
420 assert(cc == 0);
421 pthread_mutex_init(pMutex, &attr);
422 pthread_mutexattr_destroy(&attr);
423#else
424 pthread_mutex_init(pMutex, NULL); // default=PTHREAD_MUTEX_FAST_NP
425#endif
426}
427
428/*
429 * Grab a plain mutex.
430 */
431INLINE void dvmLockMutex(pthread_mutex_t* pMutex)
432{
Carl Shapirob31b3012010-05-25 18:35:37 -0700433 int cc __attribute__ ((__unused__)) = pthread_mutex_lock(pMutex);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800434 assert(cc == 0);
435}
436
437/*
Bill Buzbee964a7b02010-01-28 12:54:19 -0800438 * Try grabbing a plain mutex. Returns 0 if successful.
439 */
440INLINE int dvmTryLockMutex(pthread_mutex_t* pMutex)
441{
Carl Shapiro980ffb02010-03-13 22:34:01 -0800442 int cc = pthread_mutex_trylock(pMutex);
443 assert(cc == 0 || cc == EBUSY);
444 return cc;
Bill Buzbee964a7b02010-01-28 12:54:19 -0800445}
446
447/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800448 * Unlock pthread mutex.
449 */
450INLINE void dvmUnlockMutex(pthread_mutex_t* pMutex)
451{
Carl Shapirob31b3012010-05-25 18:35:37 -0700452 int cc __attribute__ ((__unused__)) = pthread_mutex_unlock(pMutex);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800453 assert(cc == 0);
454}
455
456/*
457 * Destroy a mutex.
458 */
459INLINE void dvmDestroyMutex(pthread_mutex_t* pMutex)
460{
Carl Shapirob31b3012010-05-25 18:35:37 -0700461 int cc __attribute__ ((__unused__)) = pthread_mutex_destroy(pMutex);
462 assert(cc == 0);
463}
464
465INLINE void dvmBroadcastCond(pthread_cond_t* pCond)
466{
467 int cc __attribute__ ((__unused__)) = pthread_cond_broadcast(pCond);
468 assert(cc == 0);
469}
470
471INLINE void dvmSignalCond(pthread_cond_t* pCond)
472{
473 int cc __attribute__ ((__unused__)) = pthread_cond_signal(pCond);
474 assert(cc == 0);
475}
476
477INLINE void dvmWaitCond(pthread_cond_t* pCond, pthread_mutex_t* pMutex)
478{
479 int cc __attribute__ ((__unused__)) = pthread_cond_wait(pCond, pMutex);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800480 assert(cc == 0);
481}
482
483/*
484 * Create a thread as a result of java.lang.Thread.start().
485 */
486bool dvmCreateInterpThread(Object* threadObj, int reqStackSize);
487
488/*
489 * Create a thread internal to the VM. It's visible to interpreted code,
490 * but found in the "system" thread group rather than "main".
491 */
492bool dvmCreateInternalThread(pthread_t* pHandle, const char* name,
493 InternalThreadStart func, void* funcArg);
494
495/*
496 * Attach or detach the current thread from the VM.
497 */
498bool dvmAttachCurrentThread(const JavaVMAttachArgs* pArgs, bool isDaemon);
499void dvmDetachCurrentThread(void);
500
501/*
502 * Get the "main" or "system" thread group.
503 */
504Object* dvmGetMainThreadGroup(void);
505Object* dvmGetSystemThreadGroup(void);
506
507/*
508 * Given a java/lang/VMThread object, return our Thread.
509 */
510Thread* dvmGetThreadFromThreadObject(Object* vmThreadObj);
511
512/*
Andy McFadden2b94b302010-03-09 16:38:36 -0800513 * Given a pthread handle, return the associated Thread*.
Andy McFaddenfd542662010-03-12 13:39:59 -0800514 * Caller must hold the thread list lock.
Andy McFadden2b94b302010-03-09 16:38:36 -0800515 *
516 * Returns NULL if the thread was not found.
517 */
518Thread* dvmGetThreadByHandle(pthread_t handle);
519
520/*
Andy McFaddenfd542662010-03-12 13:39:59 -0800521 * Given a thread ID, return the associated Thread*.
522 * Caller must hold the thread list lock.
523 *
524 * Returns NULL if the thread was not found.
525 */
526Thread* dvmGetThreadByThreadId(u4 threadId);
527
528/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800529 * Sleep in a thread. Returns when the sleep timer returns or the thread
530 * is interrupted.
531 */
532void dvmThreadSleep(u8 msec, u4 nsec);
533
534/*
535 * Get the name of a thread. (For safety, hold the thread list lock.)
536 */
537char* dvmGetThreadName(Thread* thread);
538
539/*
Ben Cheng7a0bcd02010-01-22 16:45:45 -0800540 * Convert ThreadStatus to a string.
541 */
542const char* dvmGetThreadStatusStr(ThreadStatus status);
543
544/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800545 * Return true if a thread is on the internal list. If it is, the
546 * thread is part of the GC's root set.
547 */
548bool dvmIsOnThreadList(const Thread* thread);
Jeff Hao97319a82009-08-12 16:57:15 -0700549
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800550/*
551 * Get/set the JNIEnv field.
552 */
553INLINE JNIEnv* dvmGetThreadJNIEnv(Thread* self) { return self->jniEnv; }
554INLINE void dvmSetThreadJNIEnv(Thread* self, JNIEnv* env) { self->jniEnv = env;}
555
556/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800557 * Update the priority value of the underlying pthread.
558 */
559void dvmChangeThreadPriority(Thread* thread, int newPriority);
560
Andy McFadden2b94b302010-03-09 16:38:36 -0800561/* "change flags" values for raise/reset thread priority calls */
562#define kChangedPriority 0x01
563#define kChangedPolicy 0x02
564
565/*
566 * If necessary, raise the thread's priority to nice=0 cgroup=fg.
567 *
568 * Returns bit flags indicating changes made (zero if nothing was done).
569 */
570int dvmRaiseThreadPriorityIfNeeded(Thread* thread, int* pSavedThreadPrio,
571 SchedPolicy* pSavedThreadPolicy);
572
573/*
574 * Drop the thread priority to what it was before an earlier call to
575 * dvmRaiseThreadPriorityIfNeeded().
576 */
577void dvmResetThreadPriority(Thread* thread, int changeFlags,
578 int savedThreadPrio, SchedPolicy savedThreadPolicy);
579
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800580/*
581 * Debug: dump information about a single thread.
582 */
583void dvmDumpThread(Thread* thread, bool isRunning);
584void dvmDumpThreadEx(const DebugOutputTarget* target, Thread* thread,
585 bool isRunning);
586
587/*
588 * Debug: dump information about all threads.
589 */
590void dvmDumpAllThreads(bool grabLock);
591void dvmDumpAllThreadsEx(const DebugOutputTarget* target, bool grabLock);
592
Andy McFadden384ef6b2010-03-15 17:24:55 -0700593/*
594 * Debug: kill a thread to get a debuggerd stack trace. Leaves the VM
595 * in an uncertain state.
596 */
597void dvmNukeThread(Thread* thread);
598
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800599#endif /*_DALVIK_THREAD*/