blob: 16875e444db60054bfe3f614696807d2701c38ac [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 McFadden581bed72009-10-15 11:24:54 -070016
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080017/*
18 * Fundamental synchronization mechanisms.
19 *
20 * The top part of the file has operations on "monitor" structs; the
21 * next part has the native calls on objects.
22 *
23 * The current implementation uses "thin locking" to avoid allocating
24 * an Object's full Monitor struct until absolutely necessary (i.e.,
25 * during contention or a call to wait()).
26 *
27 * TODO: make improvements to thin locking
28 * We may be able to improve performance and reduce memory requirements by:
29 * - reverting to a thin lock once the Monitor is no longer necessary
30 * - using a pool of monitor objects, with some sort of recycling scheme
31 *
32 * TODO: recycle native-level monitors when objects are garbage collected.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080033 */
34#include "Dalvik.h"
35
36#include <stdlib.h>
37#include <unistd.h>
38#include <pthread.h>
39#include <time.h>
40#include <sys/time.h>
41#include <errno.h>
42
43#define LOG_THIN LOGV
44
45#ifdef WITH_DEADLOCK_PREDICTION /* fwd */
46static const char* kStartBanner =
47 "<-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#";
48static const char* kEndBanner =
49 "#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#->";
50
51/*
52 * Unsorted, expanding list of objects.
53 *
54 * This is very similar to PointerSet (which came into existence after this),
55 * but these are unsorted, uniqueness is not enforced by the "add" function,
56 * and the base object isn't allocated on the heap.
57 */
58typedef struct ExpandingObjectList {
59 u2 alloc;
60 u2 count;
61 Object** list;
62} ExpandingObjectList;
63
64/* fwd */
65static void updateDeadlockPrediction(Thread* self, Object* obj);
66static void removeCollectedObject(Object* obj);
67static void expandObjClear(ExpandingObjectList* pList);
68#endif
69
70/*
71 * Every Object has a monitor associated with it, but not every Object is
72 * actually locked. Even the ones that are locked do not need a
73 * full-fledged monitor until a) there is actual contention or b) wait()
74 * is called on the Object.
75 *
76 * For Dalvik, we have implemented a scheme similar to the one described
77 * in Bacon et al.'s "Thin locks: featherweight synchronization for Java"
78 * (ACM 1998). Things are even easier for us, though, because we have
79 * a full 32 bits to work with.
80 *
Carl Shapiro94338aa2009-12-21 11:42:59 -080081 * The two states of an Object's lock are referred to as "thin" and
82 * "fat". A lock may transition from the "thin" state to the "fat"
83 * state and this transition is referred to as inflation. Once a lock
84 * has been inflated it remains in the "fat" state indefinitely.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080085 *
Carl Shapiro77f52eb2009-12-24 19:56:53 -080086 * The lock value itself is stored in Object.lock. The LSB of the
87 * lock encodes its state. When cleared, the lock is in the "thin"
88 * state and its bits are formatted as follows:
Carl Shapiro71938022009-12-22 13:49:53 -080089 *
Carl Shapiro94338aa2009-12-21 11:42:59 -080090 * [31 ---- 19] [18 ---- 3] [2 ---- 1] [0]
91 * lock count thread id hash state 0
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080092 *
Carl Shapiro77f52eb2009-12-24 19:56:53 -080093 * When set, the lock is in the "fat" state and its bits are formatted
Carl Shapiro94338aa2009-12-21 11:42:59 -080094 * as follows:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080095 *
Carl Shapiro94338aa2009-12-21 11:42:59 -080096 * [31 ---- 3] [2 ---- 1] [0]
97 * pointer hash state 1
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080098 *
99 * For an in-depth description of the mechanics of thin-vs-fat locking,
100 * read the paper referred to above.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800101 */
102
103/*
104 * Monitors provide:
105 * - mutually exclusive access to resources
106 * - a way for multiple threads to wait for notification
107 *
108 * In effect, they fill the role of both mutexes and condition variables.
109 *
110 * Only one thread can own the monitor at any time. There may be several
111 * threads waiting on it (the wait call unlocks it). One or more waiting
112 * threads may be getting interrupted or notified at any given time.
113 */
114struct Monitor {
115 Thread* owner; /* which thread currently owns the lock? */
116 int lockCount; /* owner's recursive lock depth */
117 Object* obj; /* what object are we part of [debug only] */
118
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800119 Thread* waitSet; /* threads currently waiting on this monitor */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800120
121 pthread_mutex_t lock;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800122
123 Monitor* next;
124
125#ifdef WITH_DEADLOCK_PREDICTION
126 /*
127 * Objects that have been locked immediately after this one in the
128 * past. We use an expanding flat array, allocated on first use, to
129 * minimize allocations. Deletions from the list, expected to be
130 * infrequent, are crunched down.
131 */
132 ExpandingObjectList historyChildren;
133
134 /*
135 * We also track parents. This isn't strictly necessary, but it makes
136 * the cleanup at GC time significantly faster.
137 */
138 ExpandingObjectList historyParents;
139
140 /* used during cycle detection */
141 bool historyMark;
142
143 /* stack trace, established the first time we locked the object */
144 int historyStackDepth;
145 int* historyRawStackTrace;
146#endif
147};
148
149
150/*
151 * Create and initialize a monitor.
152 */
153Monitor* dvmCreateMonitor(Object* obj)
154{
155 Monitor* mon;
156
157 mon = (Monitor*) calloc(1, sizeof(Monitor));
158 if (mon == NULL) {
159 LOGE("Unable to allocate monitor\n");
160 dvmAbort();
161 }
Carl Shapiro94338aa2009-12-21 11:42:59 -0800162 if (((u4)mon & 7) != 0) {
163 LOGE("Misaligned monitor: %p\n", mon);
164 dvmAbort();
165 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800166 mon->obj = obj;
167 dvmInitMutex(&mon->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800168
169 /* replace the head of the list with the new monitor */
170 do {
171 mon->next = gDvm.monitorList;
172 } while (!ATOMIC_CMP_SWAP((int32_t*)(void*)&gDvm.monitorList,
173 (int32_t)mon->next, (int32_t)mon));
174
175 return mon;
176}
177
178/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800179 * Free the monitor list. Only used when shutting the VM down.
180 */
181void dvmFreeMonitorList(void)
182{
183 Monitor* mon;
184 Monitor* nextMon;
185
186 mon = gDvm.monitorList;
187 while (mon != NULL) {
188 nextMon = mon->next;
189
190#ifdef WITH_DEADLOCK_PREDICTION
191 expandObjClear(&mon->historyChildren);
192 expandObjClear(&mon->historyParents);
193 free(mon->historyRawStackTrace);
194#endif
195 free(mon);
196 mon = nextMon;
197 }
198}
199
200/*
201 * Log some info about our monitors.
202 */
203void dvmDumpMonitorInfo(const char* msg)
204{
205#if QUIET_ZYGOTE_MONITOR
206 if (gDvm.zygote) {
207 return;
208 }
209#endif
210
211 int totalCount;
212 int liveCount;
213
214 totalCount = liveCount = 0;
215 Monitor* mon = gDvm.monitorList;
216 while (mon != NULL) {
217 totalCount++;
218 if (mon->obj != NULL)
219 liveCount++;
220 mon = mon->next;
221 }
222
223 LOGD("%s: monitor list has %d entries (%d live)\n",
224 msg, totalCount, liveCount);
225}
226
227/*
228 * Get the object that a monitor is part of.
229 */
230Object* dvmGetMonitorObject(Monitor* mon)
231{
232 if (mon == NULL)
233 return NULL;
234 else
235 return mon->obj;
236}
237
238/*
Carl Shapiro30aa9972010-01-13 22:07:50 -0800239 * Returns the thread id of the thread owning the given lock.
240 */
241static u4 lockOwner(Object* obj)
242{
243 Thread *owner;
244 u4 lock;
245
246 assert(obj != NULL);
247 /*
248 * Since we're reading the lock value multiple times, latch it so
249 * that it doesn't change out from under us if we get preempted.
250 */
251 lock = obj->lock;
252 if (LW_SHAPE(lock) == LW_SHAPE_THIN) {
253 return LW_LOCK_OWNER(lock);
254 } else {
255 owner = LW_MONITOR(lock)->owner;
256 return owner ? owner->threadId : 0;
257 }
258}
259
260/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800261 * Checks whether the given thread holds the given
262 * objects's lock.
263 */
264bool dvmHoldsLock(Thread* thread, Object* obj)
265{
266 if (thread == NULL || obj == NULL) {
267 return false;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800268 } else {
Carl Shapiro30aa9972010-01-13 22:07:50 -0800269 return thread->threadId == lockOwner(obj);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800270 }
271}
272
273/*
274 * Free the monitor associated with an object and make the object's lock
275 * thin again. This is called during garbage collection.
276 */
Carl Shapiro5a6071b2010-01-07 21:35:50 -0800277static void freeObjectMonitor(Object* obj)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800278{
279 Monitor *mon;
280
Carl Shapiro5a6071b2010-01-07 21:35:50 -0800281 assert(LW_SHAPE(obj->lock) == LW_SHAPE_FAT);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800282
283#ifdef WITH_DEADLOCK_PREDICTION
284 if (gDvm.deadlockPredictMode != kDPOff)
Carl Shapiro5a6071b2010-01-07 21:35:50 -0800285 removeCollectedObject(obj);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800286#endif
287
Carl Shapiro5a6071b2010-01-07 21:35:50 -0800288 mon = LW_MONITOR(obj->lock);
289 obj->lock = DVM_LOCK_INITIAL_THIN_VALUE;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800290
291 /* This lock is associated with an object
292 * that's being swept. The only possible way
293 * anyone could be holding this lock would be
294 * if some JNI code locked but didn't unlock
295 * the object, in which case we've got some bad
296 * native code somewhere.
297 */
298 assert(pthread_mutex_trylock(&mon->lock) == 0);
299 pthread_mutex_destroy(&mon->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800300#ifdef WITH_DEADLOCK_PREDICTION
Carl Shapiro5a6071b2010-01-07 21:35:50 -0800301 expandObjClear(&mon->historyChildren);
302 expandObjClear(&mon->historyParents);
303 free(mon->historyRawStackTrace);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800304#endif
Carl Shapiro5a6071b2010-01-07 21:35:50 -0800305 free(mon);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800306}
307
Carl Shapiro5a6071b2010-01-07 21:35:50 -0800308/*
309 * Frees monitor objects belonging to unmarked objects.
310 */
311void dvmSweepMonitorList(Monitor** mon, int (*isUnmarkedObject)(void*))
312{
313 Monitor handle;
314 Monitor *prev, *curr;
315 Object *obj;
316
317 assert(mon != NULL);
318 assert(*mon != NULL);
319 assert(isUnmarkedObject != NULL);
320 prev = &handle;
321 prev->next = curr = *mon;
322 while (curr != NULL) {
323 obj = curr->obj;
324 if (obj != NULL && (*isUnmarkedObject)(obj) != 0) {
325 prev->next = curr = curr->next;
326 freeObjectMonitor(obj);
327 } else {
328 prev = curr;
329 curr = curr->next;
330 }
331 }
332 *mon = handle.next;
333}
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800334
335/*
336 * Lock a monitor.
337 */
338static void lockMonitor(Thread* self, Monitor* mon)
339{
340 int cc;
341
342 if (mon->owner == self) {
343 mon->lockCount++;
344 } else {
345 ThreadStatus oldStatus;
346
347 if (pthread_mutex_trylock(&mon->lock) != 0) {
348 /* mutex is locked, switch to wait status and sleep on it */
349 oldStatus = dvmChangeStatus(self, THREAD_MONITOR);
350 cc = pthread_mutex_lock(&mon->lock);
351 assert(cc == 0);
352 dvmChangeStatus(self, oldStatus);
353 }
354
355 mon->owner = self;
356 assert(mon->lockCount == 0);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800357 }
358}
359
360/*
361 * Try to lock a monitor.
362 *
363 * Returns "true" on success.
364 */
365static bool tryLockMonitor(Thread* self, Monitor* mon)
366{
367 int cc;
368
369 if (mon->owner == self) {
370 mon->lockCount++;
371 return true;
372 } else {
373 cc = pthread_mutex_trylock(&mon->lock);
374 if (cc == 0) {
375 mon->owner = self;
376 assert(mon->lockCount == 0);
377 return true;
378 } else {
379 return false;
380 }
381 }
382}
383
384
385/*
386 * Unlock a monitor.
387 *
388 * Returns true if the unlock succeeded.
389 * If the unlock failed, an exception will be pending.
390 */
391static bool unlockMonitor(Thread* self, Monitor* mon)
392{
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800393 assert(self != NULL);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800394 assert(mon != NULL); // can this happen?
395
396 if (mon->owner == self) {
397 /*
398 * We own the monitor, so nobody else can be in here.
399 */
400 if (mon->lockCount == 0) {
401 int cc;
402 mon->owner = NULL;
403 cc = pthread_mutex_unlock(&mon->lock);
404 assert(cc == 0);
405 } else {
406 mon->lockCount--;
407 }
408 } else {
409 /*
410 * We don't own this, so we're not allowed to unlock it.
411 * The JNI spec says that we should throw IllegalMonitorStateException
412 * in this case.
413 */
414 if (mon->owner == NULL) {
415 //LOGW("Unlock fat %p: not owned\n", mon->obj);
416 } else {
417 //LOGW("Unlock fat %p: id %d vs %d\n",
418 // mon->obj, mon->owner->threadId, self->threadId);
419 }
420 dvmThrowException("Ljava/lang/IllegalMonitorStateException;",
421 "unlock of unowned monitor");
422 return false;
423 }
424 return true;
425}
426
427/*
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800428 * Checks the wait set for circular structure. Returns 0 if the list
Carl Shapirob4539192010-01-04 16:50:00 -0800429 * is not circular. Otherwise, returns 1. Used only by asserts.
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800430 */
431static int waitSetCheck(Monitor *mon)
432{
433 Thread *fast, *slow;
434 size_t n;
435
436 assert(mon != NULL);
437 fast = slow = mon->waitSet;
438 n = 0;
439 for (;;) {
440 if (fast == NULL) return 0;
441 if (fast->waitNext == NULL) return 0;
Carl Shapiro5f56e672010-01-05 20:38:03 -0800442 if (fast == slow && n > 0) return 1;
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800443 n += 2;
444 fast = fast->waitNext->waitNext;
445 slow = slow->waitNext;
446 }
447}
448
449/*
Carl Shapiro30aa9972010-01-13 22:07:50 -0800450 * Links a thread into a monitor's wait set. The monitor lock must be
451 * held by the caller of this routine.
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800452 */
453static void waitSetAppend(Monitor *mon, Thread *thread)
454{
455 Thread *elt;
456
457 assert(mon != NULL);
Carl Shapiro30aa9972010-01-13 22:07:50 -0800458 assert(mon->owner == dvmThreadSelf());
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800459 assert(thread != NULL);
460 assert(thread->waitNext == NULL);
461 assert(waitSetCheck(mon) == 0);
462 if (mon->waitSet == NULL) {
463 mon->waitSet = thread;
464 return;
465 }
466 elt = mon->waitSet;
467 while (elt->waitNext != NULL) {
468 elt = elt->waitNext;
469 }
470 elt->waitNext = thread;
471}
472
473/*
Carl Shapiro30aa9972010-01-13 22:07:50 -0800474 * Unlinks a thread from a monitor's wait set. The monitor lock must
475 * be held by the caller of this routine.
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800476 */
477static void waitSetRemove(Monitor *mon, Thread *thread)
478{
479 Thread *elt;
480
481 assert(mon != NULL);
Carl Shapiro30aa9972010-01-13 22:07:50 -0800482 assert(mon->owner == dvmThreadSelf());
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800483 assert(thread != NULL);
484 assert(waitSetCheck(mon) == 0);
485 if (mon->waitSet == NULL) {
486 return;
487 }
488 if (mon->waitSet == thread) {
489 mon->waitSet = thread->waitNext;
490 thread->waitNext = NULL;
491 return;
492 }
493 elt = mon->waitSet;
494 while (elt->waitNext != NULL) {
495 if (elt->waitNext == thread) {
496 elt->waitNext = thread->waitNext;
497 thread->waitNext = NULL;
498 return;
499 }
500 elt = elt->waitNext;
501 }
502}
503
Carl Shapirob4539192010-01-04 16:50:00 -0800504/*
505 * Converts the given relative waiting time into an absolute time.
506 */
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800507static void absoluteTime(s8 msec, s4 nsec, struct timespec *ts)
508{
509 s8 endSec;
510
511#ifdef HAVE_TIMEDWAIT_MONOTONIC
512 clock_gettime(CLOCK_MONOTONIC, ts);
513#else
514 {
515 struct timeval tv;
516 gettimeofday(&tv, NULL);
517 ts->tv_sec = tv.tv_sec;
518 ts->tv_nsec = tv.tv_usec * 1000;
519 }
520#endif
521 endSec = ts->tv_sec + msec / 1000;
522 if (endSec >= 0x7fffffff) {
523 LOGV("NOTE: end time exceeds epoch\n");
524 endSec = 0x7ffffffe;
525 }
526 ts->tv_sec = endSec;
527 ts->tv_nsec = (ts->tv_nsec + (msec % 1000) * 1000000) + nsec;
528
529 /* catch rollover */
530 if (ts->tv_nsec >= 1000000000L) {
531 ts->tv_sec++;
532 ts->tv_nsec -= 1000000000L;
533 }
534}
535
536/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800537 * Wait on a monitor until timeout, interrupt, or notification. Used for
538 * Object.wait() and (somewhat indirectly) Thread.sleep() and Thread.join().
539 *
540 * If another thread calls Thread.interrupt(), we throw InterruptedException
541 * and return immediately if one of the following are true:
542 * - blocked in wait(), wait(long), or wait(long, int) methods of Object
543 * - blocked in join(), join(long), or join(long, int) methods of Thread
544 * - blocked in sleep(long), or sleep(long, int) methods of Thread
545 * Otherwise, we set the "interrupted" flag.
546 *
547 * Checks to make sure that "nsec" is in the range 0-999999
548 * (i.e. fractions of a millisecond) and throws the appropriate
549 * exception if it isn't.
550 *
551 * The spec allows "spurious wakeups", and recommends that all code using
552 * Object.wait() do so in a loop. This appears to derive from concerns
553 * about pthread_cond_wait() on multiprocessor systems. Some commentary
554 * on the web casts doubt on whether these can/should occur.
555 *
556 * Since we're allowed to wake up "early", we clamp extremely long durations
557 * to return at the end of the 32-bit time epoch.
558 */
559static void waitMonitor(Thread* self, Monitor* mon, s8 msec, s4 nsec,
560 bool interruptShouldThrow)
561{
562 struct timespec ts;
563 bool wasInterrupted = false;
564 bool timed;
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800565 int ret;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800566
Carl Shapiro71938022009-12-22 13:49:53 -0800567 assert(self != NULL);
568 assert(mon != NULL);
569
Carl Shapiro94338aa2009-12-21 11:42:59 -0800570 /* Make sure that we hold the lock. */
Carl Shapiro71938022009-12-22 13:49:53 -0800571 if (mon->owner != self) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800572 dvmThrowException("Ljava/lang/IllegalMonitorStateException;",
573 "object not locked by thread before wait()");
574 return;
575 }
576
577 /*
578 * Enforce the timeout range.
579 */
580 if (msec < 0 || nsec < 0 || nsec > 999999) {
581 dvmThrowException("Ljava/lang/IllegalArgumentException;",
582 "timeout arguments out of range");
583 return;
584 }
585
586 /*
587 * Compute absolute wakeup time, if necessary.
588 */
589 if (msec == 0 && nsec == 0) {
590 timed = false;
591 } else {
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800592 absoluteTime(msec, nsec, &ts);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800593 timed = true;
594 }
595
596 /*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800597 * Add ourselves to the set of threads waiting on this monitor, and
598 * release our hold. We need to let it go even if we're a few levels
599 * deep in a recursive lock, and we need to restore that later.
600 *
Carl Shapiro142ef272010-01-25 12:51:31 -0800601 * We append to the wait set ahead of clearing the count and owner
602 * fields so the subroutine can check that the calling thread owns
603 * the monitor. Aside from that, the order of member updates is
604 * not order sensitive as we hold the pthread mutex.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800605 */
Carl Shapiro142ef272010-01-25 12:51:31 -0800606 waitSetAppend(mon, self);
607 int prevLockCount = mon->lockCount;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800608 mon->lockCount = 0;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800609 mon->owner = NULL;
610
611 /*
612 * Update thread status. If the GC wakes up, it'll ignore us, knowing
613 * that we won't touch any references in this state, and we'll check
614 * our suspend mode before we transition out.
615 */
616 if (timed)
617 dvmChangeStatus(self, THREAD_TIMED_WAIT);
618 else
619 dvmChangeStatus(self, THREAD_WAIT);
620
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800621 ret = pthread_mutex_lock(&self->waitMutex);
622 assert(ret == 0);
623
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800624 /*
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800625 * Set waitMonitor to the monitor object we will be waiting on.
626 * When waitMonitor is non-NULL a notifying or interrupting thread
627 * must signal the thread's waitCond to wake it up.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800628 */
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800629 assert(self->waitMonitor == NULL);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800630 self->waitMonitor = mon;
631
632 /*
633 * Handle the case where the thread was interrupted before we called
634 * wait().
635 */
636 if (self->interrupted) {
637 wasInterrupted = true;
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800638 self->waitMonitor = NULL;
639 pthread_mutex_unlock(&self->waitMutex);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800640 goto done;
641 }
642
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800643 /*
644 * Release the monitor lock and wait for a notification or
645 * a timeout to occur.
646 */
647 pthread_mutex_unlock(&mon->lock);
648
649 if (!timed) {
650 ret = pthread_cond_wait(&self->waitCond, &self->waitMutex);
651 assert(ret == 0);
652 } else {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800653#ifdef HAVE_TIMEDWAIT_MONOTONIC
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800654 ret = pthread_cond_timedwait_monotonic(&self->waitCond, &self->waitMutex, &ts);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800655#else
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800656 ret = pthread_cond_timedwait(&self->waitCond, &self->waitMutex, &ts);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800657#endif
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800658 assert(ret == 0 || ret == ETIMEDOUT);
659 }
660 if (self->interrupted) {
661 wasInterrupted = true;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800662 }
663
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800664 self->interrupted = false;
665 self->waitMonitor = NULL;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800666
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800667 pthread_mutex_unlock(&self->waitMutex);
668
Carl Shapiro30aa9972010-01-13 22:07:50 -0800669 /* Reacquire the monitor lock. */
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800670 lockMonitor(self, mon);
671
Carl Shapiro142ef272010-01-25 12:51:31 -0800672done:
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800673 waitSetRemove(mon, self);
674
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800675 /*
676 * Put everything back. Again, we hold the pthread mutex, so the order
677 * here isn't significant.
678 */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800679 mon->owner = self;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800680 mon->lockCount = prevLockCount;
681
682 /* set self->status back to THREAD_RUNNING, and self-suspend if needed */
683 dvmChangeStatus(self, THREAD_RUNNING);
684
685 if (wasInterrupted) {
686 /*
687 * We were interrupted while waiting, or somebody interrupted an
Carl Shapiro30aa9972010-01-13 22:07:50 -0800688 * un-interruptible thread earlier and we're bailing out immediately.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800689 *
690 * The doc sayeth: "The interrupted status of the current thread is
691 * cleared when this exception is thrown."
692 */
693 self->interrupted = false;
694 if (interruptShouldThrow)
695 dvmThrowException("Ljava/lang/InterruptedException;", NULL);
696 }
697}
698
699/*
700 * Notify one thread waiting on this monitor.
701 */
702static void notifyMonitor(Thread* self, Monitor* mon)
703{
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800704 Thread* thread;
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800705
Carl Shapiro71938022009-12-22 13:49:53 -0800706 assert(self != NULL);
707 assert(mon != NULL);
708
Carl Shapiro94338aa2009-12-21 11:42:59 -0800709 /* Make sure that we hold the lock. */
Carl Shapiro71938022009-12-22 13:49:53 -0800710 if (mon->owner != self) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800711 dvmThrowException("Ljava/lang/IllegalMonitorStateException;",
712 "object not locked by thread before notify()");
713 return;
714 }
Carl Shapiro30aa9972010-01-13 22:07:50 -0800715 /* Signal the first waiting thread in the wait set. */
716 while (mon->waitSet != NULL) {
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800717 thread = mon->waitSet;
718 mon->waitSet = thread->waitNext;
719 thread->waitNext = NULL;
720 pthread_mutex_lock(&thread->waitMutex);
721 /* Check to see if the thread is still waiting. */
722 if (thread->waitMonitor != NULL) {
723 pthread_cond_signal(&thread->waitCond);
Carl Shapiro30aa9972010-01-13 22:07:50 -0800724 pthread_mutex_unlock(&thread->waitMutex);
725 return;
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800726 }
727 pthread_mutex_unlock(&thread->waitMutex);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800728 }
729}
730
731/*
732 * Notify all threads waiting on this monitor.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800733 */
734static void notifyAllMonitor(Thread* self, Monitor* mon)
735{
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800736 Thread* thread;
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800737
Carl Shapiro71938022009-12-22 13:49:53 -0800738 assert(self != NULL);
739 assert(mon != NULL);
740
Carl Shapiro94338aa2009-12-21 11:42:59 -0800741 /* Make sure that we hold the lock. */
Carl Shapiro71938022009-12-22 13:49:53 -0800742 if (mon->owner != self) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800743 dvmThrowException("Ljava/lang/IllegalMonitorStateException;",
744 "object not locked by thread before notifyAll()");
745 return;
746 }
Carl Shapiro77f52eb2009-12-24 19:56:53 -0800747 /* Signal all threads in the wait set. */
748 while (mon->waitSet != NULL) {
749 thread = mon->waitSet;
750 mon->waitSet = thread->waitNext;
751 thread->waitNext = NULL;
752 pthread_mutex_lock(&thread->waitMutex);
753 /* Check to see if the thread is still waiting. */
754 if (thread->waitMonitor != NULL) {
755 pthread_cond_signal(&thread->waitCond);
756 }
757 pthread_mutex_unlock(&thread->waitMutex);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800758 }
759}
760
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800761/*
762 * Implements monitorenter for "synchronized" stuff.
763 *
764 * This does not fail or throw an exception (unless deadlock prediction
765 * is enabled and set to "err" mode).
766 */
767void dvmLockObject(Thread* self, Object *obj)
768{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -0800769 volatile u4 *thinp = &obj->lock;
770 u4 hashState;
Carl Shapiro94338aa2009-12-21 11:42:59 -0800771 u4 thin;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800772 u4 threadId = self->threadId;
Carl Shapiro94338aa2009-12-21 11:42:59 -0800773 Monitor *mon;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800774
775 /* First, try to grab the lock as if it's thin;
776 * this is the common case and will usually succeed.
777 */
Carl Shapiro30aa9972010-01-13 22:07:50 -0800778 hashState = LW_HASH_STATE(*thinp) << LW_HASH_STATE_SHIFT;
Carl Shapiro94338aa2009-12-21 11:42:59 -0800779 thin = threadId << LW_LOCK_OWNER_SHIFT;
Carl Shapiro30aa9972010-01-13 22:07:50 -0800780 thin |= hashState;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800781 if (!ATOMIC_CMP_SWAP((int32_t *)thinp,
Carl Shapiro30aa9972010-01-13 22:07:50 -0800782 hashState,
Carl Shapiro94338aa2009-12-21 11:42:59 -0800783 (int32_t)thin)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800784 /* The lock is either a thin lock held by someone (possibly 'self'),
785 * or a fat lock.
786 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800787 if (LW_LOCK_OWNER(*thinp) == threadId) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800788 /* 'self' is already holding the thin lock; we can just
789 * bump the count. Atomic operations are not necessary
790 * because only the thread holding the lock is allowed
791 * to modify the Lock field.
792 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800793 *thinp += 1 << LW_LOCK_COUNT_SHIFT;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800794 } else {
795 /* If this is a thin lock we need to spin on it, if it's fat
796 * we need to acquire the monitor.
797 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800798 if (LW_SHAPE(*thinp) == LW_SHAPE_THIN) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800799 ThreadStatus oldStatus;
800 static const unsigned long maxSleepDelay = 1 * 1024 * 1024;
801 unsigned long sleepDelay;
802
803 LOG_THIN("(%d) spin on lock 0x%08x: 0x%08x (0x%08x) 0x%08x\n",
804 threadId, (uint)&obj->lock,
Carl Shapiro30aa9972010-01-13 22:07:50 -0800805 hashState, *thinp, thin);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800806
807 /* The lock is still thin, but some other thread is
808 * holding it. Let the VM know that we're about
809 * to wait on another thread.
810 */
811 oldStatus = dvmChangeStatus(self, THREAD_MONITOR);
812
813 /* Spin until the other thread lets go.
814 */
815 sleepDelay = 0;
816 do {
817 /* In addition to looking for an unlock,
818 * we need to watch out for some other thread
819 * fattening the lock behind our back.
820 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800821 while (LW_LOCK_OWNER(*thinp) != 0) {
822 if (LW_SHAPE(*thinp) == LW_SHAPE_FAT) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800823 /* The lock has been fattened already.
824 */
825 LOG_THIN("(%d) lock 0x%08x surprise-fattened\n",
826 threadId, (uint)&obj->lock);
827 dvmChangeStatus(self, oldStatus);
828 goto fat_lock;
829 }
830
831 if (sleepDelay == 0) {
832 sched_yield();
833 sleepDelay = 1 * 1000;
834 } else {
835 usleep(sleepDelay);
836 if (sleepDelay < maxSleepDelay / 2) {
837 sleepDelay *= 2;
838 }
839 }
840 }
Carl Shapiro30aa9972010-01-13 22:07:50 -0800841 hashState = LW_HASH_STATE(*thinp) << LW_HASH_STATE_SHIFT;
Carl Shapiro94338aa2009-12-21 11:42:59 -0800842 thin = threadId << LW_LOCK_OWNER_SHIFT;
Carl Shapiro30aa9972010-01-13 22:07:50 -0800843 thin |= hashState;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800844 } while (!ATOMIC_CMP_SWAP((int32_t *)thinp,
Carl Shapiro30aa9972010-01-13 22:07:50 -0800845 (int32_t)hashState,
Carl Shapiro94338aa2009-12-21 11:42:59 -0800846 (int32_t)thin));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800847 LOG_THIN("(%d) spin on lock done 0x%08x: "
848 "0x%08x (0x%08x) 0x%08x\n",
849 threadId, (uint)&obj->lock,
Carl Shapiro30aa9972010-01-13 22:07:50 -0800850 hashState, *thinp, thin);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800851
852 /* We've got the thin lock; let the VM know that we're
853 * done waiting.
854 */
855 dvmChangeStatus(self, oldStatus);
856
857 /* Fatten the lock. Note this relinquishes ownership.
858 * We could also create the monitor in an "owned" state
859 * to avoid "re-locking" it in fat_lock.
860 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800861 mon = dvmCreateMonitor(obj);
Carl Shapiro8d7f9b22009-12-21 20:23:45 -0800862 hashState = LW_HASH_STATE(*thinp) << LW_HASH_STATE_SHIFT;
863 obj->lock = (u4)mon | hashState | LW_SHAPE_FAT;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800864 LOG_THIN("(%d) lock 0x%08x fattened\n",
865 threadId, (uint)&obj->lock);
866
867 /* Fall through to acquire the newly fat lock.
868 */
869 }
870
871 /* The lock is already fat, which means
Carl Shapiro8d7f9b22009-12-21 20:23:45 -0800872 * that obj->lock is a regular (Monitor *).
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800873 */
874 fat_lock:
Carl Shapiro8d7f9b22009-12-21 20:23:45 -0800875 assert(LW_MONITOR(obj->lock) != NULL);
876 lockMonitor(self, LW_MONITOR(obj->lock));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800877 }
878 }
879 // else, the lock was acquired with the ATOMIC_CMP_SWAP().
880
881#ifdef WITH_DEADLOCK_PREDICTION
882 /*
883 * See if we were allowed to grab the lock at this time. We do it
884 * *after* acquiring the lock, rather than before, so that we can
885 * freely update the Monitor struct. This seems counter-intuitive,
886 * but our goal is deadlock *prediction* not deadlock *prevention*.
887 * (If we actually deadlock, the situation is easy to diagnose from
888 * a thread dump, so there's no point making a special effort to do
889 * the checks before the lock is held.)
890 *
891 * This needs to happen before we add the object to the thread's
892 * monitor list, so we can tell the difference between first-lock and
893 * re-lock.
894 *
895 * It's also important that we do this while in THREAD_RUNNING, so
896 * that we don't interfere with cleanup operations in the GC.
897 */
898 if (gDvm.deadlockPredictMode != kDPOff) {
899 if (self->status != THREAD_RUNNING) {
900 LOGE("Bad thread status (%d) in DP\n", self->status);
901 dvmDumpThread(self, false);
902 dvmAbort();
903 }
904 assert(!dvmCheckException(self));
905 updateDeadlockPrediction(self, obj);
906 if (dvmCheckException(self)) {
907 /*
908 * If we're throwing an exception here, we need to free the
909 * lock. We add the object to the thread's monitor list so the
910 * "unlock" code can remove it.
911 */
912 dvmAddToMonitorList(self, obj, false);
913 dvmUnlockObject(self, obj);
914 LOGV("--- unlocked, pending is '%s'\n",
915 dvmGetException(self)->clazz->descriptor);
916 }
917 }
918
919 /*
920 * Add the locked object, and the current stack trace, to the list
921 * held by the Thread object. If deadlock prediction isn't on,
922 * don't capture the stack trace.
923 */
924 dvmAddToMonitorList(self, obj, gDvm.deadlockPredictMode != kDPOff);
925#elif defined(WITH_MONITOR_TRACKING)
926 /*
927 * Add the locked object to the list held by the Thread object.
928 */
929 dvmAddToMonitorList(self, obj, false);
930#endif
931}
932
933/*
934 * Implements monitorexit for "synchronized" stuff.
935 *
936 * On failure, throws an exception and returns "false".
937 */
938bool dvmUnlockObject(Thread* self, Object *obj)
939{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -0800940 volatile u4 *thinp = &obj->lock;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800941 u4 threadId = self->threadId;
Carl Shapiro94338aa2009-12-21 11:42:59 -0800942 u4 thin;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800943
944 /* Check the common case, where 'self' has locked 'obj' once, first.
945 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800946 thin = *thinp;
947 if (LW_LOCK_OWNER(thin) == threadId && LW_LOCK_COUNT(thin) == 0) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800948 /* Unlock 'obj' by clearing our threadId from 'thin'.
949 * The lock protects the lock field itself, so it's
950 * safe to update non-atomically.
951 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800952 *thinp &= (LW_HASH_STATE_MASK << LW_HASH_STATE_SHIFT);
953 } else if (LW_SHAPE(*thinp) == LW_SHAPE_THIN) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800954 /* If the object is locked, it had better be locked by us.
955 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800956 if (LW_LOCK_OWNER(*thinp) != threadId) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800957 /* The JNI spec says that we should throw an exception
958 * in this case.
959 */
960 //LOGW("Unlock thin %p: id %d vs %d\n",
961 // obj, (*thinp & 0xfff), threadId);
962 dvmThrowException("Ljava/lang/IllegalMonitorStateException;",
963 "unlock of unowned monitor");
964 return false;
965 }
966
967 /* It's a thin lock, but 'self' has locked 'obj'
968 * more than once. Decrement the count.
969 */
Carl Shapiro94338aa2009-12-21 11:42:59 -0800970 *thinp -= 1 << LW_LOCK_COUNT_SHIFT;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800971 } else {
972 /* It's a fat lock.
973 */
Carl Shapiro8d7f9b22009-12-21 20:23:45 -0800974 assert(LW_MONITOR(obj->lock) != NULL);
975 if (!unlockMonitor(self, LW_MONITOR(obj->lock))) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800976 /* exception has been raised */
977 return false;
978 }
979 }
980
981#ifdef WITH_MONITOR_TRACKING
982 /*
983 * Remove the object from the Thread's list.
984 */
985 dvmRemoveFromMonitorList(self, obj);
986#endif
987
988 return true;
989}
990
991/*
992 * Object.wait(). Also called for class init.
993 */
994void dvmObjectWait(Thread* self, Object *obj, s8 msec, s4 nsec,
995 bool interruptShouldThrow)
996{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -0800997 Monitor* mon = LW_MONITOR(obj->lock);
998 u4 hashState;
999 u4 thin = obj->lock;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001000
1001 /* If the lock is still thin, we need to fatten it.
1002 */
Carl Shapiro94338aa2009-12-21 11:42:59 -08001003 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001004 /* Make sure that 'self' holds the lock.
1005 */
Carl Shapiro94338aa2009-12-21 11:42:59 -08001006 if (LW_LOCK_OWNER(thin) != self->threadId) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001007 dvmThrowException("Ljava/lang/IllegalMonitorStateException;",
1008 "object not locked by thread before wait()");
1009 return;
1010 }
1011
1012 /* This thread holds the lock. We need to fatten the lock
1013 * so 'self' can block on it. Don't update the object lock
1014 * field yet, because 'self' needs to acquire the lock before
1015 * any other thread gets a chance.
1016 */
1017 mon = dvmCreateMonitor(obj);
1018
1019 /* 'self' has actually locked the object one or more times;
1020 * make sure that the monitor reflects this.
1021 */
1022 lockMonitor(self, mon);
Carl Shapiro94338aa2009-12-21 11:42:59 -08001023 mon->lockCount = LW_LOCK_COUNT(thin);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001024 LOG_THIN("(%d) lock 0x%08x fattened by wait() to count %d\n",
1025 self->threadId, (uint)&obj->lock, mon->lockCount);
1026
Andy McFadden581bed72009-10-15 11:24:54 -07001027
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001028 /* Make the monitor public now that it's in the right state.
1029 */
Andy McFadden581bed72009-10-15 11:24:54 -07001030 MEM_BARRIER();
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001031 hashState = LW_HASH_STATE(thin) << LW_HASH_STATE_SHIFT;
1032 obj->lock = (u4)mon | hashState | LW_SHAPE_FAT;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001033 }
1034
1035 waitMonitor(self, mon, msec, nsec, interruptShouldThrow);
1036}
1037
1038/*
1039 * Object.notify().
1040 */
1041void dvmObjectNotify(Thread* self, Object *obj)
1042{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001043 u4 thin = obj->lock;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001044
1045 /* If the lock is still thin, there aren't any waiters;
1046 * waiting on an object forces lock fattening.
1047 */
Carl Shapiro94338aa2009-12-21 11:42:59 -08001048 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001049 /* Make sure that 'self' holds the lock.
1050 */
Carl Shapiro94338aa2009-12-21 11:42:59 -08001051 if (LW_LOCK_OWNER(thin) != self->threadId) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001052 dvmThrowException("Ljava/lang/IllegalMonitorStateException;",
1053 "object not locked by thread before notify()");
1054 return;
1055 }
1056
1057 /* no-op; there are no waiters to notify.
1058 */
1059 } else {
1060 /* It's a fat lock.
1061 */
Carl Shapiro94338aa2009-12-21 11:42:59 -08001062 notifyMonitor(self, LW_MONITOR(thin));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001063 }
1064}
1065
1066/*
1067 * Object.notifyAll().
1068 */
1069void dvmObjectNotifyAll(Thread* self, Object *obj)
1070{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001071 u4 thin = obj->lock;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001072
1073 /* If the lock is still thin, there aren't any waiters;
1074 * waiting on an object forces lock fattening.
1075 */
Carl Shapiro94338aa2009-12-21 11:42:59 -08001076 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001077 /* Make sure that 'self' holds the lock.
1078 */
Carl Shapiro94338aa2009-12-21 11:42:59 -08001079 if (LW_LOCK_OWNER(thin) != self->threadId) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001080 dvmThrowException("Ljava/lang/IllegalMonitorStateException;",
1081 "object not locked by thread before notifyAll()");
1082 return;
1083 }
1084
1085 /* no-op; there are no waiters to notify.
1086 */
1087 } else {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001088 /* It's a fat lock.
1089 */
Carl Shapiro94338aa2009-12-21 11:42:59 -08001090 notifyAllMonitor(self, LW_MONITOR(thin));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001091 }
1092}
1093
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001094/*
1095 * This implements java.lang.Thread.sleep(long msec, int nsec).
1096 *
1097 * The sleep is interruptible by other threads, which means we can't just
1098 * plop into an OS sleep call. (We probably could if we wanted to send
1099 * signals around and rely on EINTR, but that's inefficient and relies
1100 * on native code respecting our signal mask.)
1101 *
1102 * We have to do all of this stuff for Object.wait() as well, so it's
1103 * easiest to just sleep on a private Monitor.
1104 *
1105 * It appears that we want sleep(0,0) to go through the motions of sleeping
1106 * for a very short duration, rather than just returning.
1107 */
1108void dvmThreadSleep(u8 msec, u4 nsec)
1109{
1110 Thread* self = dvmThreadSelf();
1111 Monitor* mon = gDvm.threadSleepMon;
1112
1113 /* sleep(0,0) wakes up immediately, wait(0,0) means wait forever; adjust */
1114 if (msec == 0 && nsec == 0)
1115 nsec++;
1116
1117 lockMonitor(self, mon);
1118 waitMonitor(self, mon, msec, nsec, true);
1119 unlockMonitor(self, mon);
1120}
1121
1122/*
1123 * Implement java.lang.Thread.interrupt().
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001124 */
Carl Shapiro77f52eb2009-12-24 19:56:53 -08001125void dvmThreadInterrupt(Thread* thread)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001126{
Carl Shapiro77f52eb2009-12-24 19:56:53 -08001127 assert(thread != NULL);
1128
1129 pthread_mutex_lock(&thread->waitMutex);
1130
1131 /*
1132 * If the interrupted flag is already set no additional action is
1133 * required.
1134 */
1135 if (thread->interrupted == true) {
1136 pthread_mutex_unlock(&thread->waitMutex);
1137 return;
1138 }
1139
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001140 /*
1141 * Raise the "interrupted" flag. This will cause it to bail early out
1142 * of the next wait() attempt, if it's not currently waiting on
1143 * something.
1144 */
1145 thread->interrupted = true;
1146 MEM_BARRIER();
1147
1148 /*
1149 * Is the thread waiting?
1150 *
1151 * Note that fat vs. thin doesn't matter here; waitMonitor
1152 * is only set when a thread actually waits on a monitor,
1153 * which implies that the monitor has already been fattened.
1154 */
Carl Shapiro77f52eb2009-12-24 19:56:53 -08001155 if (thread->waitMonitor != NULL) {
1156 pthread_cond_signal(&thread->waitCond);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001157 }
1158
Carl Shapiro77f52eb2009-12-24 19:56:53 -08001159 pthread_mutex_unlock(&thread->waitMutex);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001160}
1161
Carl Shapiro30aa9972010-01-13 22:07:50 -08001162#ifndef WITH_COPYING_GC
Carl Shapiro94338aa2009-12-21 11:42:59 -08001163u4 dvmIdentityHashCode(Object *obj)
1164{
1165 return (u4)obj;
1166}
Carl Shapiro30aa9972010-01-13 22:07:50 -08001167#else
1168static size_t arrayElementWidth(const ArrayObject *array)
1169{
1170 const char *descriptor;
1171
1172 if (dvmIsObjectArray(array)) {
1173 return sizeof(Object *);
1174 } else {
1175 descriptor = array->obj.clazz->descriptor;
1176 switch (descriptor[1]) {
1177 case 'B': return 1; /* byte */
1178 case 'C': return 2; /* char */
1179 case 'D': return 8; /* double */
1180 case 'F': return 4; /* float */
1181 case 'I': return 4; /* int */
1182 case 'J': return 8; /* long */
1183 case 'S': return 2; /* short */
1184 case 'Z': return 1; /* boolean */
1185 }
1186 }
1187 LOGE("object %p has an unhandled descriptor '%s'", array, descriptor);
1188 dvmDumpThread(dvmThreadSelf(), false);
1189 dvmAbort();
1190 return 0; /* Quiet the compiler. */
1191}
1192
1193static size_t arrayObjectLength(const ArrayObject *array)
1194{
1195 size_t length;
1196
1197 length = offsetof(ArrayObject, contents);
1198 length += array->length * arrayElementWidth(array);
1199 return length;
1200}
1201
1202/*
1203 * Returns the identity hash code of the given object.
1204 */
1205u4 dvmIdentityHashCode(Object *obj)
1206{
1207 Thread *self, *thread;
1208 volatile u4 *lw;
1209 size_t length;
1210 u4 lock, owner, hashState;
1211
1212 if (obj == NULL) {
1213 /*
1214 * Null is defined to have an identity hash code of 0.
1215 */
1216 return 0;
1217 }
1218 lw = &obj->lock;
1219retry:
1220 hashState = LW_HASH_STATE(*lw);
1221 if (hashState == LW_HASH_STATE_HASHED) {
1222 /*
1223 * The object has been hashed but has not had its hash code
1224 * relocated by the garbage collector. Use the raw object
1225 * address.
1226 */
1227 return (u4)obj >> 3;
1228 } else if (hashState == LW_HASH_STATE_HASHED_AND_MOVED) {
1229 /*
1230 * The object has been hashed and its hash code has been
1231 * relocated by the collector. Use the value of the naturally
1232 * aligned word following the instance data.
1233 */
1234 if (IS_CLASS_FLAG_SET(obj->clazz, CLASS_ISARRAY)) {
1235 length = arrayObjectLength((ArrayObject *)obj);
1236 length = (length + 3) & ~3;
1237 } else {
1238 length = obj->clazz->objectSize;
1239 }
1240 return *(u4 *)(((char *)obj) + length);
1241 } else if (hashState == LW_HASH_STATE_UNHASHED) {
1242 /*
1243 * The object has never been hashed. Change the hash state to
1244 * hashed and use the raw object address.
1245 */
1246 self = dvmThreadSelf();
1247 if (self->threadId == lockOwner(obj)) {
1248 /*
1249 * We already own the lock so we can update the hash state
1250 * directly.
1251 */
1252 *lw |= (LW_HASH_STATE_HASHED << LW_HASH_STATE_SHIFT);
1253 return (u4)obj >> 3;
1254 }
1255 /*
1256 * We do not own the lock. Try acquiring the lock. Should
1257 * this fail, we must suspend the owning thread.
1258 */
1259 if (LW_SHAPE(*lw) == LW_SHAPE_THIN) {
1260 /*
1261 * If the lock is thin assume it is unowned. We simulate
1262 * an acquire, update, and release with a single CAS.
1263 */
1264 lock = DVM_LOCK_INITIAL_THIN_VALUE;
1265 lock |= (LW_HASH_STATE_HASHED << LW_HASH_STATE_SHIFT);
1266 if (ATOMIC_CMP_SWAP((int32_t *)lw,
1267 (int32_t)DVM_LOCK_INITIAL_THIN_VALUE,
1268 (int32_t)lock)) {
1269 /*
1270 * A new lockword has been installed with a hash state
1271 * of hashed. Use the raw object address.
1272 */
1273 return (u4)obj >> 3;
1274 }
1275 } else {
1276 if (tryLockMonitor(self, LW_MONITOR(*lw))) {
1277 /*
1278 * The monitor lock has been acquired. Change the
1279 * hash state to hashed and use the raw object
1280 * address.
1281 */
1282 *lw |= (LW_HASH_STATE_HASHED << LW_HASH_STATE_SHIFT);
1283 unlockMonitor(self, LW_MONITOR(*lw));
1284 return (u4)obj >> 3;
1285 }
1286 }
1287 /*
1288 * At this point we have failed to acquire the lock. We must
1289 * identify the owning thread and suspend it.
1290 */
1291 dvmLockThreadList(self);
1292 /*
1293 * Cache the lock word as its value can change between
1294 * determining its shape and retrieving its owner.
1295 */
1296 lock = *lw;
1297 if (LW_SHAPE(lock) == LW_SHAPE_THIN) {
1298 /*
1299 * Find the thread with the corresponding thread id.
1300 */
1301 owner = LW_LOCK_OWNER(lock);
1302 assert(owner != self->threadId);
1303 /*
1304 * If the lock has no owner do not bother scanning the
1305 * thread list and fall through to the failure handler.
1306 */
1307 thread = owner ? gDvm.threadList : NULL;
1308 while (thread != NULL) {
1309 if (thread->threadId == owner) {
1310 break;
1311 }
1312 thread = thread->next;
1313 }
1314 } else {
1315 thread = LW_MONITOR(lock)->owner;
1316 }
1317 /*
1318 * If thread is NULL the object has been released since the
1319 * thread list lock was acquired. Try again.
1320 */
1321 if (thread == NULL) {
1322 dvmUnlockThreadList();
1323 goto retry;
1324 }
1325 /*
1326 * Wait for the owning thread to suspend.
1327 */
1328 dvmSuspendThread(thread);
1329 if (dvmHoldsLock(thread, obj)) {
1330 /*
1331 * The owning thread has been suspended. We can safely
1332 * change the hash state to hashed.
1333 */
1334 *lw |= (LW_HASH_STATE_HASHED << LW_HASH_STATE_SHIFT);
1335 dvmResumeThread(thread);
1336 dvmUnlockThreadList();
1337 return (u4)obj >> 3;
1338 }
1339 /*
1340 * The wrong thread has been suspended. Try again.
1341 */
1342 dvmResumeThread(thread);
1343 dvmUnlockThreadList();
1344 goto retry;
1345 }
1346 LOGE("object %p has an unknown hash state %#x", obj, hashState);
1347 dvmDumpThread(dvmThreadSelf(), false);
1348 dvmAbort();
1349 return 0; /* Quiet the compiler. */
1350}
1351#endif /* WITH_COPYING_GC */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001352
1353#ifdef WITH_DEADLOCK_PREDICTION
1354/*
1355 * ===========================================================================
1356 * Deadlock prediction
1357 * ===========================================================================
1358 */
1359/*
1360The idea is to predict the possibility of deadlock by recording the order
1361in which monitors are acquired. If we see an attempt to acquire a lock
1362out of order, we can identify the locks and offending code.
1363
1364To make this work, we need to keep track of the locks held by each thread,
1365and create history trees for each lock. When a thread tries to acquire
1366a new lock, we walk through the "history children" of the lock, looking
1367for a match with locks the thread already holds. If we find a match,
1368it means the thread has made a request that could result in a deadlock.
1369
1370To support recursive locks, we always allow re-locking a currently-held
1371lock, and maintain a recursion depth count.
1372
1373An ASCII-art example, where letters represent Objects:
1374
1375 A
1376 /|\
1377 / | \
1378 B | D
1379 \ |
1380 \|
1381 C
1382
1383The above is the tree we'd have after handling Object synchronization
1384sequences "ABC", "AC", "AD". A has three children, {B, C, D}. C is also
1385a child of B. (The lines represent pointers between parent and child.
1386Every node can have multiple parents and multiple children.)
1387
1388If we hold AC, and want to lock B, we recursively search through B's
1389children to see if A or C appears. It does, so we reject the attempt.
1390(A straightforward way to implement it: add a link from C to B, then
1391determine whether the graph starting at B contains a cycle.)
1392
1393If we hold AC and want to lock D, we would succeed, creating a new link
1394from C to D.
1395
1396The lock history and a stack trace is attached to the Object's Monitor
1397struct, which means we need to fatten every Object we lock (thin locking
1398is effectively disabled). If we don't need the stack trace we can
1399avoid fattening the leaf nodes, only fattening objects that need to hold
1400history trees.
1401
1402Updates to Monitor structs are only allowed for the thread that holds
1403the Monitor, so we actually do most of our deadlock prediction work after
1404the lock has been acquired.
1405
1406When an object with a monitor is GCed, we need to remove it from the
1407history trees. There are two basic approaches:
1408 (1) For through the entire set of known monitors, search all child
1409 lists for the object in question. This is rather slow, resulting
1410 in GC passes that take upwards of 10 seconds to complete.
1411 (2) Maintain "parent" pointers in each node. Remove the entries as
1412 required. This requires additional storage and maintenance for
1413 every operation, but is significantly faster at GC time.
1414For each GCed object, we merge all of the object's children into each of
1415the object's parents.
1416*/
1417
1418#if !defined(WITH_MONITOR_TRACKING)
1419# error "WITH_DEADLOCK_PREDICTION requires WITH_MONITOR_TRACKING"
1420#endif
1421
1422/*
1423 * Clear out the contents of an ExpandingObjectList, freeing any
1424 * dynamic allocations.
1425 */
1426static void expandObjClear(ExpandingObjectList* pList)
1427{
1428 if (pList->list != NULL) {
1429 free(pList->list);
1430 pList->list = NULL;
1431 }
1432 pList->alloc = pList->count = 0;
1433}
1434
1435/*
1436 * Get the number of objects currently stored in the list.
1437 */
1438static inline int expandBufGetCount(const ExpandingObjectList* pList)
1439{
1440 return pList->count;
1441}
1442
1443/*
1444 * Get the Nth entry from the list.
1445 */
1446static inline Object* expandBufGetEntry(const ExpandingObjectList* pList,
1447 int i)
1448{
1449 return pList->list[i];
1450}
1451
1452/*
1453 * Add a new entry to the list.
1454 *
1455 * We don't check for or try to enforce uniqueness. It's expected that
1456 * the higher-level code does this for us.
1457 */
1458static void expandObjAddEntry(ExpandingObjectList* pList, Object* obj)
1459{
1460 if (pList->count == pList->alloc) {
1461 /* time to expand */
1462 Object** newList;
1463
1464 if (pList->alloc == 0)
1465 pList->alloc = 4;
1466 else
1467 pList->alloc *= 2;
1468 LOGVV("expanding %p to %d\n", pList, pList->alloc);
1469 newList = realloc(pList->list, pList->alloc * sizeof(Object*));
1470 if (newList == NULL) {
1471 LOGE("Failed expanding DP object list (alloc=%d)\n", pList->alloc);
1472 dvmAbort();
1473 }
1474 pList->list = newList;
1475 }
1476
1477 pList->list[pList->count++] = obj;
1478}
1479
1480/*
1481 * Returns "true" if the element was successfully removed.
1482 */
1483static bool expandObjRemoveEntry(ExpandingObjectList* pList, Object* obj)
1484{
1485 int i;
1486
1487 for (i = pList->count-1; i >= 0; i--) {
1488 if (pList->list[i] == obj)
1489 break;
1490 }
1491 if (i < 0)
1492 return false;
1493
1494 if (i != pList->count-1) {
1495 /*
1496 * The order of elements is not important, so we just copy the
1497 * last entry into the new slot.
1498 */
1499 //memmove(&pList->list[i], &pList->list[i+1],
1500 // (pList->count-1 - i) * sizeof(pList->list[0]));
1501 pList->list[i] = pList->list[pList->count-1];
1502 }
1503
1504 pList->count--;
1505 pList->list[pList->count] = (Object*) 0xdecadead;
1506 return true;
1507}
1508
1509/*
1510 * Returns "true" if "obj" appears in the list.
1511 */
1512static bool expandObjHas(const ExpandingObjectList* pList, Object* obj)
1513{
1514 int i;
1515
1516 for (i = 0; i < pList->count; i++) {
1517 if (pList->list[i] == obj)
1518 return true;
1519 }
1520 return false;
1521}
1522
1523/*
1524 * Print the list contents to stdout. For debugging.
1525 */
1526static void expandObjDump(const ExpandingObjectList* pList)
1527{
1528 int i;
1529 for (i = 0; i < pList->count; i++)
1530 printf(" %p", pList->list[i]);
1531}
1532
1533/*
1534 * Check for duplicate entries. Returns the index of the first instance
1535 * of the duplicated value, or -1 if no duplicates were found.
1536 */
1537static int expandObjCheckForDuplicates(const ExpandingObjectList* pList)
1538{
1539 int i, j;
1540 for (i = 0; i < pList->count-1; i++) {
1541 for (j = i + 1; j < pList->count; j++) {
1542 if (pList->list[i] == pList->list[j]) {
1543 return i;
1544 }
1545 }
1546 }
1547
1548 return -1;
1549}
1550
1551
1552/*
1553 * Determine whether "child" appears in the list of objects associated
1554 * with the Monitor in "parent". If "parent" is a thin lock, we return
1555 * false immediately.
1556 */
1557static bool objectInChildList(const Object* parent, Object* child)
1558{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001559 u4 lock = parent->lock;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001560 if (!IS_LOCK_FAT(&lock)) {
1561 //LOGI("on thin\n");
1562 return false;
1563 }
1564
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001565 return expandObjHas(&LW_MONITOR(lock)->historyChildren, child);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001566}
1567
1568/*
1569 * Print the child list.
1570 */
1571static void dumpKids(Object* parent)
1572{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001573 Monitor* mon = LW_MONITOR(parent->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001574
1575 printf("Children of %p:", parent);
1576 expandObjDump(&mon->historyChildren);
1577 printf("\n");
1578}
1579
1580/*
1581 * Add "child" to the list of children in "parent", and add "parent" to
1582 * the list of parents in "child".
1583 */
1584static void linkParentToChild(Object* parent, Object* child)
1585{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001586 //assert(LW_MONITOR(parent->lock)->owner == dvmThreadSelf()); // !owned for merge
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001587 assert(IS_LOCK_FAT(&parent->lock));
1588 assert(IS_LOCK_FAT(&child->lock));
1589 assert(parent != child);
1590 Monitor* mon;
1591
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001592 mon = LW_MONITOR(parent->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001593 assert(!expandObjHas(&mon->historyChildren, child));
1594 expandObjAddEntry(&mon->historyChildren, child);
1595
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001596 mon = LW_MONITOR(child->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001597 assert(!expandObjHas(&mon->historyParents, parent));
1598 expandObjAddEntry(&mon->historyParents, parent);
1599}
1600
1601
1602/*
1603 * Remove "child" from the list of children in "parent".
1604 */
1605static void unlinkParentFromChild(Object* parent, Object* child)
1606{
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001607 //assert(LW_MONITOR(parent->lock)->owner == dvmThreadSelf()); // !owned for GC
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001608 assert(IS_LOCK_FAT(&parent->lock));
1609 assert(IS_LOCK_FAT(&child->lock));
1610 assert(parent != child);
1611 Monitor* mon;
1612
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001613 mon = LW_MONITOR(parent->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001614 if (!expandObjRemoveEntry(&mon->historyChildren, child)) {
1615 LOGW("WARNING: child %p not found in parent %p\n", child, parent);
1616 }
1617 assert(!expandObjHas(&mon->historyChildren, child));
1618 assert(expandObjCheckForDuplicates(&mon->historyChildren) < 0);
1619
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001620 mon = LW_MONITOR(child->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001621 if (!expandObjRemoveEntry(&mon->historyParents, parent)) {
1622 LOGW("WARNING: parent %p not found in child %p\n", parent, child);
1623 }
1624 assert(!expandObjHas(&mon->historyParents, parent));
1625 assert(expandObjCheckForDuplicates(&mon->historyParents) < 0);
1626}
1627
1628
1629/*
1630 * Log the monitors held by the current thread. This is done as part of
1631 * flagging an error.
1632 */
1633static void logHeldMonitors(Thread* self)
1634{
1635 char* name = NULL;
1636
1637 name = dvmGetThreadName(self);
1638 LOGW("Monitors currently held by thread (threadid=%d '%s')\n",
1639 self->threadId, name);
1640 LOGW("(most-recently-acquired on top):\n");
1641 free(name);
1642
1643 LockedObjectData* lod = self->pLockedObjects;
1644 while (lod != NULL) {
1645 LOGW("--- object %p[%d] (%s)\n",
1646 lod->obj, lod->recursionCount, lod->obj->clazz->descriptor);
1647 dvmLogRawStackTrace(lod->rawStackTrace, lod->stackDepth);
1648
1649 lod = lod->next;
1650 }
1651}
1652
1653/*
1654 * Recursively traverse the object hierarchy starting at "obj". We mark
1655 * ourselves on entry and clear the mark on exit. If we ever encounter
1656 * a marked object, we have a cycle.
1657 *
1658 * Returns "true" if all is well, "false" if we found a cycle.
1659 */
1660static bool traverseTree(Thread* self, const Object* obj)
1661{
1662 assert(IS_LOCK_FAT(&obj->lock));
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001663 Monitor* mon = LW_MONITOR(obj->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001664
1665 /*
1666 * Have we been here before?
1667 */
1668 if (mon->historyMark) {
1669 int* rawStackTrace;
1670 int stackDepth;
1671
1672 LOGW("%s\n", kStartBanner);
1673 LOGW("Illegal lock attempt:\n");
1674 LOGW("--- object %p (%s)\n", obj, obj->clazz->descriptor);
1675
1676 rawStackTrace = dvmFillInStackTraceRaw(self, &stackDepth);
1677 dvmLogRawStackTrace(rawStackTrace, stackDepth);
1678 free(rawStackTrace);
1679
1680 LOGW(" ");
1681 logHeldMonitors(self);
1682
1683 LOGW(" ");
1684 LOGW("Earlier, the following lock order (from last to first) was\n");
1685 LOGW("established -- stack trace is from first successful lock):\n");
1686 return false;
1687 }
1688 mon->historyMark = true;
1689
1690 /*
1691 * Examine the children. We do NOT hold these locks, so they might
1692 * very well transition from thin to fat or change ownership while
1693 * we work.
1694 *
1695 * NOTE: we rely on the fact that they cannot revert from fat to thin
1696 * while we work. This is currently a safe assumption.
1697 *
1698 * We can safely ignore thin-locked children, because by definition
1699 * they have no history and are leaf nodes. In the current
1700 * implementation we always fatten the locks to provide a place to
1701 * hang the stack trace.
1702 */
1703 ExpandingObjectList* pList = &mon->historyChildren;
1704 int i;
1705 for (i = expandBufGetCount(pList)-1; i >= 0; i--) {
1706 const Object* child = expandBufGetEntry(pList, i);
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001707 u4 lock = child->lock;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001708 if (!IS_LOCK_FAT(&lock))
1709 continue;
1710 if (!traverseTree(self, child)) {
1711 LOGW("--- object %p (%s)\n", obj, obj->clazz->descriptor);
1712 dvmLogRawStackTrace(mon->historyRawStackTrace,
1713 mon->historyStackDepth);
1714 mon->historyMark = false;
1715 return false;
1716 }
1717 }
1718
1719 mon->historyMark = false;
1720
1721 return true;
1722}
1723
1724/*
1725 * Update the deadlock prediction tree, based on the current thread
1726 * acquiring "acqObj". This must be called before the object is added to
1727 * the thread's list of held monitors.
1728 *
1729 * If the thread already holds the lock (recursion), or this is a known
1730 * lock configuration, we return without doing anything. Otherwise, we add
1731 * a link from the most-recently-acquired lock in this thread to "acqObj"
1732 * after ensuring that the parent lock is "fat".
1733 *
1734 * This MUST NOT be called while a GC is in progress in another thread,
1735 * because we assume exclusive access to history trees in owned monitors.
1736 */
1737static void updateDeadlockPrediction(Thread* self, Object* acqObj)
1738{
1739 LockedObjectData* lod;
1740 LockedObjectData* mrl;
1741
1742 /*
1743 * Quick check for recursive access.
1744 */
1745 lod = dvmFindInMonitorList(self, acqObj);
1746 if (lod != NULL) {
1747 LOGV("+++ DP: recursive %p\n", acqObj);
1748 return;
1749 }
1750
1751 /*
1752 * Make the newly-acquired object's monitor "fat". In some ways this
1753 * isn't strictly necessary, but we need the GC to tell us when
1754 * "interesting" objects go away, and right now the only way to make
1755 * an object look interesting is to give it a monitor.
1756 *
1757 * This also gives us a place to hang a stack trace.
1758 *
1759 * Our thread holds the lock, so we're allowed to rewrite the lock
1760 * without worrying that something will change out from under us.
1761 */
1762 if (!IS_LOCK_FAT(&acqObj->lock)) {
1763 LOGVV("fattening lockee %p (recur=%d)\n",
Carl Shapiro94338aa2009-12-21 11:42:59 -08001764 acqObj, LW_LOCK_COUNT(acqObj->lock.thin));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001765 Monitor* newMon = dvmCreateMonitor(acqObj);
1766 lockMonitor(self, newMon); // can't stall, don't need VMWAIT
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001767 newMon->lockCount += LW_LOCK_COUNT(acqObj->lock);
1768 u4 hashState = LW_HASH_STATE(acqObj->lock) << LW_HASH_STATE_SHIFT;
1769 acqObj->lock = (u4)newMon | hashState | LW_SHAPE_FAT;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001770 }
1771
1772 /* if we don't have a stack trace for this monitor, establish one */
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001773 if (LW_MONITOR(acqObj->lock)->historyRawStackTrace == NULL) {
1774 Monitor* mon = LW_MONITOR(acqObj->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001775 mon->historyRawStackTrace = dvmFillInStackTraceRaw(self,
1776 &mon->historyStackDepth);
1777 }
1778
1779 /*
1780 * We need to examine and perhaps modify the most-recently-locked
1781 * monitor. We own that, so there's no risk of another thread
1782 * stepping on us.
1783 *
1784 * Retrieve the most-recently-locked entry from our thread.
1785 */
1786 mrl = self->pLockedObjects;
1787 if (mrl == NULL)
1788 return; /* no other locks held */
1789
1790 /*
1791 * Do a quick check to see if "acqObj" is a direct descendant. We can do
1792 * this without holding the global lock because of our assertion that
1793 * a GC is not running in parallel -- nobody except the GC can
1794 * modify a history list in a Monitor they don't own, and we own "mrl".
1795 * (There might be concurrent *reads*, but no concurrent *writes.)
1796 *
1797 * If we find it, this is a known good configuration, and we're done.
1798 */
1799 if (objectInChildList(mrl->obj, acqObj))
1800 return;
1801
1802 /*
1803 * "mrl" is going to need to have a history tree. If it's currently
1804 * a thin lock, we make it fat now. The thin lock might have a
1805 * nonzero recursive lock count, which we need to carry over.
1806 *
1807 * Our thread holds the lock, so we're allowed to rewrite the lock
1808 * without worrying that something will change out from under us.
1809 */
1810 if (!IS_LOCK_FAT(&mrl->obj->lock)) {
1811 LOGVV("fattening parent %p f/b/o child %p (recur=%d)\n",
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001812 mrl->obj, acqObj, LW_LOCK_COUNT(mrl->obj->lock));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001813 Monitor* newMon = dvmCreateMonitor(mrl->obj);
1814 lockMonitor(self, newMon); // can't stall, don't need VMWAIT
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001815 newMon->lockCount += LW_LOCK_COUNT(mrl->obj->lock);
1816 u4 hashState = LW_HASH_STATE(mrl->obj->lock) << LW_HASH_STATE_SHIFT;
1817 mrl->obj->lock = (u4)newMon | hashState | LW_SHAPE_FAT;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001818 }
1819
1820 /*
1821 * We haven't seen this configuration before. We need to scan down
1822 * acqObj's tree to see if any of the monitors in self->pLockedObjects
1823 * appear. We grab a global lock before traversing or updating the
1824 * history list.
1825 *
1826 * If we find a match for any of our held locks, we know that the lock
1827 * has previously been acquired *after* acqObj, and we throw an error.
1828 *
1829 * The easiest way to do this is to create a link from "mrl" to "acqObj"
1830 * and do a recursive traversal, marking nodes as we cross them. If
1831 * we cross one a second time, we have a cycle and can throw an error.
1832 * (We do the flag-clearing traversal before adding the new link, so
1833 * that we're guaranteed to terminate.)
1834 *
1835 * If "acqObj" is a thin lock, it has no history, and we can create a
1836 * link to it without additional checks. [ We now guarantee that it's
1837 * always fat. ]
1838 */
1839 bool failed = false;
1840 dvmLockMutex(&gDvm.deadlockHistoryLock);
1841 linkParentToChild(mrl->obj, acqObj);
1842 if (!traverseTree(self, acqObj)) {
1843 LOGW("%s\n", kEndBanner);
1844 failed = true;
1845
1846 /* remove the entry so we're still okay when in "warning" mode */
1847 unlinkParentFromChild(mrl->obj, acqObj);
1848 }
1849 dvmUnlockMutex(&gDvm.deadlockHistoryLock);
1850
1851 if (failed) {
1852 switch (gDvm.deadlockPredictMode) {
1853 case kDPErr:
1854 dvmThrowException("Ldalvik/system/PotentialDeadlockError;", NULL);
1855 break;
1856 case kDPAbort:
1857 LOGE("Aborting due to potential deadlock\n");
1858 dvmAbort();
1859 break;
1860 default:
1861 /* warn only */
1862 break;
1863 }
1864 }
1865}
1866
1867/*
1868 * We're removing "child" from existence. We want to pull all of
1869 * child's children into "parent", filtering out duplicates. This is
1870 * called during the GC.
1871 *
1872 * This does not modify "child", which might have multiple parents.
1873 */
1874static void mergeChildren(Object* parent, const Object* child)
1875{
1876 Monitor* mon;
1877 int i;
1878
1879 assert(IS_LOCK_FAT(&child->lock));
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001880 mon = LW_MONITOR(child->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001881 ExpandingObjectList* pList = &mon->historyChildren;
1882
1883 for (i = expandBufGetCount(pList)-1; i >= 0; i--) {
1884 Object* grandChild = expandBufGetEntry(pList, i);
1885
1886 if (!objectInChildList(parent, grandChild)) {
1887 LOGVV("+++ migrating %p link to %p\n", grandChild, parent);
1888 linkParentToChild(parent, grandChild);
1889 } else {
1890 LOGVV("+++ parent %p already links to %p\n", parent, grandChild);
1891 }
1892 }
1893}
1894
1895/*
1896 * An object with a fat lock is being collected during a GC pass. We
1897 * want to remove it from any lock history trees that it is a part of.
1898 *
1899 * This may require updating the history trees in several monitors. The
1900 * monitor semantics guarantee that no other thread will be accessing
1901 * the history trees at the same time.
1902 */
1903static void removeCollectedObject(Object* obj)
1904{
1905 Monitor* mon;
1906
1907 LOGVV("+++ collecting %p\n", obj);
1908
1909#if 0
1910 /*
1911 * We're currently running through the entire set of known monitors.
1912 * This can be somewhat slow. We may want to keep lists of parents
1913 * in each child to speed up GC.
1914 */
1915 mon = gDvm.monitorList;
1916 while (mon != NULL) {
1917 Object* parent = mon->obj;
1918 if (parent != NULL) { /* value nulled for deleted entries */
1919 if (objectInChildList(parent, obj)) {
1920 LOGVV("removing child %p from parent %p\n", obj, parent);
1921 unlinkParentFromChild(parent, obj);
1922 mergeChildren(parent, obj);
1923 }
1924 }
1925 mon = mon->next;
1926 }
1927#endif
1928
1929 /*
1930 * For every parent of this object:
1931 * - merge all of our children into the parent's child list (creates
1932 * a two-way link between parent and child)
1933 * - remove ourselves from the parent's child list
1934 */
1935 ExpandingObjectList* pList;
1936 int i;
1937
1938 assert(IS_LOCK_FAT(&obj->lock));
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001939 mon = LW_MONITOR(obj->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001940 pList = &mon->historyParents;
1941 for (i = expandBufGetCount(pList)-1; i >= 0; i--) {
1942 Object* parent = expandBufGetEntry(pList, i);
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001943 Monitor* parentMon = LW_MONITOR(parent->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001944
1945 if (!expandObjRemoveEntry(&parentMon->historyChildren, obj)) {
1946 LOGW("WARNING: child %p not found in parent %p\n", obj, parent);
1947 }
1948 assert(!expandObjHas(&parentMon->historyChildren, obj));
1949
1950 mergeChildren(parent, obj);
1951 }
1952
1953 /*
1954 * For every child of this object:
1955 * - remove ourselves from the child's parent list
1956 */
1957 pList = &mon->historyChildren;
1958 for (i = expandBufGetCount(pList)-1; i >= 0; i--) {
1959 Object* child = expandBufGetEntry(pList, i);
Carl Shapiro8d7f9b22009-12-21 20:23:45 -08001960 Monitor* childMon = LW_MONITOR(child->lock);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001961
1962 if (!expandObjRemoveEntry(&childMon->historyParents, obj)) {
1963 LOGW("WARNING: parent %p not found in child %p\n", obj, child);
1964 }
1965 assert(!expandObjHas(&childMon->historyParents, obj));
1966 }
1967}
1968
1969#endif /*WITH_DEADLOCK_PREDICTION*/
1970