blob: c4deccbdbfe8e020f0024ab2f8b077288ca33bfd [file] [log] [blame]
Elliott Hughes5f791332011-09-15 17:45:30 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughes54e7df12011-09-16 11:47:04 -070017#include "monitor.h"
Elliott Hughes5f791332011-09-15 17:45:30 -070018
19#include <errno.h>
20#include <fcntl.h>
21#include <pthread.h>
22#include <stdlib.h>
23#include <sys/time.h>
24#include <time.h>
25#include <unistd.h>
26
jeffhao33dc7712011-11-09 17:54:24 -080027#include "class_linker.h"
Elliott Hughes5f791332011-09-15 17:45:30 -070028#include "mutex.h"
29#include "object.h"
Ian Rogers6d4d9fc2011-11-30 16:24:48 -080030#include "object_utils.h"
Elliott Hughesc33a32b2011-10-11 18:18:07 -070031#include "stl_util.h"
Elliott Hughes5f791332011-09-15 17:45:30 -070032#include "thread.h"
Elliott Hughes8e4aac52011-09-26 17:03:36 -070033#include "thread_list.h"
Elliott Hughes5f791332011-09-15 17:45:30 -070034
35namespace art {
36
37/*
38 * Every Object has a monitor associated with it, but not every Object is
39 * actually locked. Even the ones that are locked do not need a
40 * full-fledged monitor until a) there is actual contention or b) wait()
41 * is called on the Object.
42 *
43 * For Android, we have implemented a scheme similar to the one described
44 * in Bacon et al.'s "Thin locks: featherweight synchronization for Java"
45 * (ACM 1998). Things are even easier for us, though, because we have
46 * a full 32 bits to work with.
47 *
48 * The two states of an Object's lock are referred to as "thin" and
49 * "fat". A lock may transition from the "thin" state to the "fat"
50 * state and this transition is referred to as inflation. Once a lock
51 * has been inflated it remains in the "fat" state indefinitely.
52 *
53 * The lock value itself is stored in Object.lock. The LSB of the
54 * lock encodes its state. When cleared, the lock is in the "thin"
55 * state and its bits are formatted as follows:
56 *
57 * [31 ---- 19] [18 ---- 3] [2 ---- 1] [0]
58 * lock count thread id hash state 0
59 *
60 * When set, the lock is in the "fat" state and its bits are formatted
61 * as follows:
62 *
63 * [31 ---- 3] [2 ---- 1] [0]
64 * pointer hash state 1
65 *
66 * For an in-depth description of the mechanics of thin-vs-fat locking,
67 * read the paper referred to above.
Elliott Hughes54e7df12011-09-16 11:47:04 -070068 *
Elliott Hughes5f791332011-09-15 17:45:30 -070069 * Monitors provide:
70 * - mutually exclusive access to resources
71 * - a way for multiple threads to wait for notification
72 *
73 * In effect, they fill the role of both mutexes and condition variables.
74 *
75 * Only one thread can own the monitor at any time. There may be several
76 * threads waiting on it (the wait call unlocks it). One or more waiting
77 * threads may be getting interrupted or notified at any given time.
78 *
79 * TODO: the various members of monitor are not SMP-safe.
80 */
Elliott Hughes54e7df12011-09-16 11:47:04 -070081
82
83/*
84 * Monitor accessor. Extracts a monitor structure pointer from a fat
85 * lock. Performs no error checking.
86 */
87#define LW_MONITOR(x) \
88 ((Monitor*)((x) & ~((LW_HASH_STATE_MASK << LW_HASH_STATE_SHIFT) | LW_SHAPE_MASK)))
89
90/*
91 * Lock recursion count field. Contains a count of the number of times
92 * a lock has been recursively acquired.
93 */
94#define LW_LOCK_COUNT_MASK 0x1fff
95#define LW_LOCK_COUNT_SHIFT 19
96#define LW_LOCK_COUNT(x) (((x) >> LW_LOCK_COUNT_SHIFT) & LW_LOCK_COUNT_MASK)
97
Elliott Hughesfc861622011-10-17 17:57:47 -070098bool (*Monitor::is_sensitive_thread_hook_)() = NULL;
Elliott Hughesfc861622011-10-17 17:57:47 -070099uint32_t Monitor::lock_profiling_threshold_ = 0;
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700100
Elliott Hughesfc861622011-10-17 17:57:47 -0700101bool Monitor::IsSensitiveThread() {
102 if (is_sensitive_thread_hook_ != NULL) {
103 return (*is_sensitive_thread_hook_)();
104 }
105 return false;
106}
107
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800108void Monitor::Init(uint32_t lock_profiling_threshold, bool (*is_sensitive_thread_hook)()) {
Elliott Hughesfc861622011-10-17 17:57:47 -0700109 lock_profiling_threshold_ = lock_profiling_threshold;
110 is_sensitive_thread_hook_ = is_sensitive_thread_hook;
Elliott Hughes32d6e1e2011-10-11 14:47:44 -0700111}
112
Elliott Hughes5f791332011-09-15 17:45:30 -0700113Monitor::Monitor(Object* obj)
114 : owner_(NULL),
115 lock_count_(0),
116 obj_(obj),
117 wait_set_(NULL),
118 lock_("a monitor lock"),
jeffhao33dc7712011-11-09 17:54:24 -0800119 locking_method_(NULL),
120 locking_pc_(0) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700121}
122
123Monitor::~Monitor() {
124 DCHECK(obj_ != NULL);
125 DCHECK_EQ(LW_SHAPE(*obj_->GetRawLockWordAddress()), LW_SHAPE_FAT);
Elliott Hughes5f791332011-09-15 17:45:30 -0700126}
127
128/*
129 * Links a thread into a monitor's wait set. The monitor lock must be
130 * held by the caller of this routine.
131 */
132void Monitor::AppendToWaitSet(Thread* thread) {
133 DCHECK(owner_ == Thread::Current());
134 DCHECK(thread != NULL);
Elliott Hughesdc33ad52011-09-16 19:46:51 -0700135 DCHECK(thread->wait_next_ == NULL) << thread->wait_next_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700136 if (wait_set_ == NULL) {
137 wait_set_ = thread;
138 return;
139 }
140
141 // push_back.
142 Thread* t = wait_set_;
143 while (t->wait_next_ != NULL) {
144 t = t->wait_next_;
145 }
146 t->wait_next_ = thread;
147}
148
149/*
150 * Unlinks a thread from a monitor's wait set. The monitor lock must
151 * be held by the caller of this routine.
152 */
153void Monitor::RemoveFromWaitSet(Thread *thread) {
154 DCHECK(owner_ == Thread::Current());
155 DCHECK(thread != NULL);
156 if (wait_set_ == NULL) {
157 return;
158 }
159 if (wait_set_ == thread) {
160 wait_set_ = thread->wait_next_;
161 thread->wait_next_ = NULL;
162 return;
163 }
164
165 Thread* t = wait_set_;
166 while (t->wait_next_ != NULL) {
167 if (t->wait_next_ == thread) {
168 t->wait_next_ = thread->wait_next_;
169 thread->wait_next_ = NULL;
170 return;
171 }
172 t = t->wait_next_;
173 }
174}
175
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700176Object* Monitor::GetObject() {
177 return obj_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700178}
179
Elliott Hughes5f791332011-09-15 17:45:30 -0700180void Monitor::Lock(Thread* self) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700181 if (owner_ == self) {
182 lock_count_++;
183 return;
184 }
Elliott Hughesfc861622011-10-17 17:57:47 -0700185
186 uint64_t waitStart, waitEnd;
Elliott Hughes5f791332011-09-15 17:45:30 -0700187 if (!lock_.TryLock()) {
Elliott Hughesfc861622011-10-17 17:57:47 -0700188 uint32_t wait_threshold = lock_profiling_threshold_;
jeffhao33dc7712011-11-09 17:54:24 -0800189 const Method* current_locking_method = NULL;
Elliott Hughese65a6c92012-01-18 23:48:31 -0800190 uintptr_t current_locking_pc = 0;
Elliott Hughes5f791332011-09-15 17:45:30 -0700191 {
192 ScopedThreadStateChange tsc(self, Thread::kBlocked);
Elliott Hughesfc861622011-10-17 17:57:47 -0700193 if (wait_threshold != 0) {
194 waitStart = NanoTime() / 1000;
195 }
jeffhao33dc7712011-11-09 17:54:24 -0800196 current_locking_method = locking_method_;
197 current_locking_pc = locking_pc_;
Elliott Hughes5f791332011-09-15 17:45:30 -0700198
199 lock_.Lock();
Elliott Hughesfc861622011-10-17 17:57:47 -0700200 if (wait_threshold != 0) {
201 waitEnd = NanoTime() / 1000;
202 }
Elliott Hughes5f791332011-09-15 17:45:30 -0700203 }
Elliott Hughesfc861622011-10-17 17:57:47 -0700204
205 if (wait_threshold != 0) {
206 uint64_t wait_ms = (waitEnd - waitStart) / 1000;
207 uint32_t sample_percent;
208 if (wait_ms >= wait_threshold) {
209 sample_percent = 100;
210 } else {
211 sample_percent = 100 * wait_ms / wait_threshold;
212 }
213 if (sample_percent != 0 && (static_cast<uint32_t>(rand() % 100) < sample_percent)) {
jeffhao33dc7712011-11-09 17:54:24 -0800214 const char* current_locking_filename;
215 uint32_t current_locking_line_number;
216 TranslateLocation(current_locking_method, current_locking_pc,
217 current_locking_filename, current_locking_line_number);
218 LogContentionEvent(self, wait_ms, sample_percent, current_locking_filename, current_locking_line_number);
Elliott Hughesfc861622011-10-17 17:57:47 -0700219 }
220 }
Elliott Hughes5f791332011-09-15 17:45:30 -0700221 }
222 owner_ = self;
223 DCHECK_EQ(lock_count_, 0);
224
225 // When debugging, save the current monitor holder for future
226 // acquisition failures to use in sampled logging.
Elliott Hughesfc861622011-10-17 17:57:47 -0700227 if (lock_profiling_threshold_ != 0) {
Elliott Hughesd07986f2011-12-06 18:27:45 -0800228 locking_method_ = self->GetCurrentMethod(&locking_pc_);
Elliott Hughesfc861622011-10-17 17:57:47 -0700229 }
Elliott Hughes5f791332011-09-15 17:45:30 -0700230}
231
232void ThrowIllegalMonitorStateException(const char* msg) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700233 Thread::Current()->ThrowNewException("Ljava/lang/IllegalMonitorStateException;", msg);
Elliott Hughes5f791332011-09-15 17:45:30 -0700234}
235
236bool Monitor::Unlock(Thread* self) {
237 DCHECK(self != NULL);
238 if (owner_ == self) {
239 // We own the monitor, so nobody else can be in here.
240 if (lock_count_ == 0) {
241 owner_ = NULL;
jeffhao33dc7712011-11-09 17:54:24 -0800242 locking_method_ = NULL;
243 locking_pc_ = 0;
Elliott Hughes5f791332011-09-15 17:45:30 -0700244 lock_.Unlock();
245 } else {
246 --lock_count_;
247 }
248 } else {
249 // We don't own this, so we're not allowed to unlock it.
250 // The JNI spec says that we should throw IllegalMonitorStateException
251 // in this case.
252 ThrowIllegalMonitorStateException("unlock of unowned monitor");
253 return false;
254 }
255 return true;
256}
257
258/*
259 * Converts the given relative waiting time into an absolute time.
260 */
261void ToAbsoluteTime(int64_t ms, int32_t ns, struct timespec *ts) {
262 int64_t endSec;
263
264#ifdef HAVE_TIMEDWAIT_MONOTONIC
265 clock_gettime(CLOCK_MONOTONIC, ts);
266#else
267 {
268 struct timeval tv;
269 gettimeofday(&tv, NULL);
270 ts->tv_sec = tv.tv_sec;
271 ts->tv_nsec = tv.tv_usec * 1000;
272 }
273#endif
274 endSec = ts->tv_sec + ms / 1000;
275 if (endSec >= 0x7fffffff) {
276 LOG(INFO) << "Note: end time exceeds epoch";
277 endSec = 0x7ffffffe;
278 }
279 ts->tv_sec = endSec;
280 ts->tv_nsec = (ts->tv_nsec + (ms % 1000) * 1000000) + ns;
281
282 // Catch rollover.
283 if (ts->tv_nsec >= 1000000000L) {
284 ts->tv_sec++;
285 ts->tv_nsec -= 1000000000L;
286 }
287}
288
289int dvmRelativeCondWait(pthread_cond_t* cond, pthread_mutex_t* mutex, int64_t ms, int32_t ns) {
290 struct timespec ts;
291 ToAbsoluteTime(ms, ns, &ts);
292#if defined(HAVE_TIMEDWAIT_MONOTONIC)
293 int rc = pthread_cond_timedwait_monotonic(cond, mutex, &ts);
294#else
295 int rc = pthread_cond_timedwait(cond, mutex, &ts);
296#endif
297 DCHECK(rc == 0 || rc == ETIMEDOUT);
298 return rc;
299}
300
301/*
302 * Wait on a monitor until timeout, interrupt, or notification. Used for
303 * Object.wait() and (somewhat indirectly) Thread.sleep() and Thread.join().
304 *
305 * If another thread calls Thread.interrupt(), we throw InterruptedException
306 * and return immediately if one of the following are true:
307 * - blocked in wait(), wait(long), or wait(long, int) methods of Object
308 * - blocked in join(), join(long), or join(long, int) methods of Thread
309 * - blocked in sleep(long), or sleep(long, int) methods of Thread
310 * Otherwise, we set the "interrupted" flag.
311 *
312 * Checks to make sure that "ns" is in the range 0-999999
313 * (i.e. fractions of a millisecond) and throws the appropriate
314 * exception if it isn't.
315 *
316 * The spec allows "spurious wakeups", and recommends that all code using
317 * Object.wait() do so in a loop. This appears to derive from concerns
318 * about pthread_cond_wait() on multiprocessor systems. Some commentary
319 * on the web casts doubt on whether these can/should occur.
320 *
321 * Since we're allowed to wake up "early", we clamp extremely long durations
322 * to return at the end of the 32-bit time epoch.
323 */
324void Monitor::Wait(Thread* self, int64_t ms, int32_t ns, bool interruptShouldThrow) {
325 DCHECK(self != NULL);
326
327 // Make sure that we hold the lock.
328 if (owner_ != self) {
329 ThrowIllegalMonitorStateException("object not locked by thread before wait()");
330 return;
331 }
332
333 // Enforce the timeout range.
334 if (ms < 0 || ns < 0 || ns > 999999) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700335 Thread::Current()->ThrowNewExceptionF("Ljava/lang/IllegalArgumentException;",
Elliott Hughes5f791332011-09-15 17:45:30 -0700336 "timeout arguments out of range: ms=%lld ns=%d", ms, ns);
337 return;
338 }
339
340 // Compute absolute wakeup time, if necessary.
341 struct timespec ts;
342 bool timed = false;
343 if (ms != 0 || ns != 0) {
344 ToAbsoluteTime(ms, ns, &ts);
345 timed = true;
346 }
347
348 /*
349 * Add ourselves to the set of threads waiting on this monitor, and
350 * release our hold. We need to let it go even if we're a few levels
351 * deep in a recursive lock, and we need to restore that later.
352 *
353 * We append to the wait set ahead of clearing the count and owner
354 * fields so the subroutine can check that the calling thread owns
355 * the monitor. Aside from that, the order of member updates is
356 * not order sensitive as we hold the pthread mutex.
357 */
358 AppendToWaitSet(self);
359 int prevLockCount = lock_count_;
360 lock_count_ = 0;
361 owner_ = NULL;
jeffhao33dc7712011-11-09 17:54:24 -0800362 const Method* savedMethod = locking_method_;
363 locking_method_ = NULL;
Elliott Hughese65a6c92012-01-18 23:48:31 -0800364 uintptr_t savedPc = locking_pc_;
jeffhao33dc7712011-11-09 17:54:24 -0800365 locking_pc_ = 0;
Elliott Hughes5f791332011-09-15 17:45:30 -0700366
367 /*
368 * Update thread status. If the GC wakes up, it'll ignore us, knowing
369 * that we won't touch any references in this state, and we'll check
370 * our suspend mode before we transition out.
371 */
372 if (timed) {
373 self->SetState(Thread::kTimedWaiting);
374 } else {
375 self->SetState(Thread::kWaiting);
376 }
377
Elliott Hughes85d15452011-09-16 17:33:01 -0700378 self->wait_mutex_->Lock();
Elliott Hughes5f791332011-09-15 17:45:30 -0700379
380 /*
381 * Set wait_monitor_ to the monitor object we will be waiting on.
382 * When wait_monitor_ is non-NULL a notifying or interrupting thread
383 * must signal the thread's wait_cond_ to wake it up.
384 */
385 DCHECK(self->wait_monitor_ == NULL);
386 self->wait_monitor_ = this;
387
388 /*
389 * Handle the case where the thread was interrupted before we called
390 * wait().
391 */
392 bool wasInterrupted = false;
393 if (self->interrupted_) {
394 wasInterrupted = true;
395 self->wait_monitor_ = NULL;
Elliott Hughes85d15452011-09-16 17:33:01 -0700396 self->wait_mutex_->Unlock();
Elliott Hughes5f791332011-09-15 17:45:30 -0700397 goto done;
398 }
399
400 /*
401 * Release the monitor lock and wait for a notification or
402 * a timeout to occur.
403 */
404 lock_.Unlock();
405
406 if (!timed) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700407 self->wait_cond_->Wait(*self->wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700408 } else {
Elliott Hughes85d15452011-09-16 17:33:01 -0700409 self->wait_cond_->TimedWait(*self->wait_mutex_, ts);
Elliott Hughes5f791332011-09-15 17:45:30 -0700410 }
411 if (self->interrupted_) {
412 wasInterrupted = true;
413 }
414
415 self->interrupted_ = false;
416 self->wait_monitor_ = NULL;
Elliott Hughes85d15452011-09-16 17:33:01 -0700417 self->wait_mutex_->Unlock();
Elliott Hughes5f791332011-09-15 17:45:30 -0700418
419 // Reacquire the monitor lock.
420 Lock(self);
421
422done:
423 /*
424 * We remove our thread from wait set after restoring the count
425 * and owner fields so the subroutine can check that the calling
426 * thread owns the monitor. Aside from that, the order of member
427 * updates is not order sensitive as we hold the pthread mutex.
428 */
429 owner_ = self;
430 lock_count_ = prevLockCount;
jeffhao33dc7712011-11-09 17:54:24 -0800431 locking_method_ = savedMethod;
432 locking_pc_ = savedPc;
Elliott Hughes5f791332011-09-15 17:45:30 -0700433 RemoveFromWaitSet(self);
434
435 /* set self->status back to Thread::kRunnable, and self-suspend if needed */
436 self->SetState(Thread::kRunnable);
437
438 if (wasInterrupted) {
439 /*
440 * We were interrupted while waiting, or somebody interrupted an
441 * un-interruptible thread earlier and we're bailing out immediately.
442 *
443 * The doc sayeth: "The interrupted status of the current thread is
444 * cleared when this exception is thrown."
445 */
446 self->interrupted_ = false;
447 if (interruptShouldThrow) {
Elliott Hughes5cb5ad22011-10-02 12:13:39 -0700448 Thread::Current()->ThrowNewException("Ljava/lang/InterruptedException;", NULL);
Elliott Hughes5f791332011-09-15 17:45:30 -0700449 }
450 }
451}
452
453void Monitor::Notify(Thread* self) {
454 DCHECK(self != NULL);
455
456 // Make sure that we hold the lock.
457 if (owner_ != self) {
458 ThrowIllegalMonitorStateException("object not locked by thread before notify()");
459 return;
460 }
461 // Signal the first waiting thread in the wait set.
462 while (wait_set_ != NULL) {
463 Thread* thread = wait_set_;
464 wait_set_ = thread->wait_next_;
465 thread->wait_next_ = NULL;
466
467 // Check to see if the thread is still waiting.
Elliott Hughes85d15452011-09-16 17:33:01 -0700468 MutexLock mu(*thread->wait_mutex_);
Elliott Hughes5f791332011-09-15 17:45:30 -0700469 if (thread->wait_monitor_ != NULL) {
Elliott Hughes85d15452011-09-16 17:33:01 -0700470 thread->wait_cond_->Signal();
Elliott Hughes5f791332011-09-15 17:45:30 -0700471 return;
472 }
473 }
474}
475
476void Monitor::NotifyAll(Thread* self) {
477 DCHECK(self != NULL);
478
479 // Make sure that we hold the lock.
480 if (owner_ != self) {
481 ThrowIllegalMonitorStateException("object not locked by thread before notifyAll()");
482 return;
483 }
484 // Signal all threads in the wait set.
485 while (wait_set_ != NULL) {
486 Thread* thread = wait_set_;
487 wait_set_ = thread->wait_next_;
488 thread->wait_next_ = NULL;
489 thread->Notify();
490 }
491}
492
493/*
494 * Changes the shape of a monitor from thin to fat, preserving the
495 * internal lock state. The calling thread must own the lock.
496 */
497void Monitor::Inflate(Thread* self, Object* obj) {
498 DCHECK(self != NULL);
499 DCHECK(obj != NULL);
500 DCHECK_EQ(LW_SHAPE(*obj->GetRawLockWordAddress()), LW_SHAPE_THIN);
Elliott Hughesf8e01272011-10-17 11:29:05 -0700501 DCHECK_EQ(LW_LOCK_OWNER(*obj->GetRawLockWordAddress()), static_cast<int32_t>(self->GetThinLockId()));
Elliott Hughes5f791332011-09-15 17:45:30 -0700502
503 // Allocate and acquire a new monitor.
504 Monitor* m = new Monitor(obj);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800505 VLOG(monitor) << "monitor: thread " << self->GetThinLockId()
506 << " created monitor " << m << " for object " << obj;
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700507 Runtime::Current()->GetMonitorList()->Add(m);
Elliott Hughes5f791332011-09-15 17:45:30 -0700508 m->Lock(self);
509 // Propagate the lock state.
510 uint32_t thin = *obj->GetRawLockWordAddress();
511 m->lock_count_ = LW_LOCK_COUNT(thin);
512 thin &= LW_HASH_STATE_MASK << LW_HASH_STATE_SHIFT;
513 thin |= reinterpret_cast<uint32_t>(m) | LW_SHAPE_FAT;
514 // Publish the updated lock word.
515 android_atomic_release_store(thin, obj->GetRawLockWordAddress());
516}
517
518void Monitor::MonitorEnter(Thread* self, Object* obj) {
519 volatile int32_t* thinp = obj->GetRawLockWordAddress();
520 struct timespec tm;
521 long sleepDelayNs;
522 long minSleepDelayNs = 1000000; /* 1 millisecond */
523 long maxSleepDelayNs = 1000000000; /* 1 second */
Elliott Hughesf8e01272011-10-17 11:29:05 -0700524 uint32_t thin, newThin;
Elliott Hughes5f791332011-09-15 17:45:30 -0700525
Elliott Hughes4681c802011-09-25 18:04:37 -0700526 DCHECK(self != NULL);
527 DCHECK(obj != NULL);
Elliott Hughesf8e01272011-10-17 11:29:05 -0700528 uint32_t threadId = self->GetThinLockId();
Elliott Hughes5f791332011-09-15 17:45:30 -0700529retry:
530 thin = *thinp;
531 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
532 /*
533 * The lock is a thin lock. The owner field is used to
534 * determine the acquire method, ordered by cost.
535 */
536 if (LW_LOCK_OWNER(thin) == threadId) {
537 /*
538 * The calling thread owns the lock. Increment the
539 * value of the recursion count field.
540 */
541 *thinp += 1 << LW_LOCK_COUNT_SHIFT;
542 if (LW_LOCK_COUNT(*thinp) == LW_LOCK_COUNT_MASK) {
543 /*
544 * The reacquisition limit has been reached. Inflate
545 * the lock so the next acquire will not overflow the
546 * recursion count field.
547 */
548 Inflate(self, obj);
549 }
550 } else if (LW_LOCK_OWNER(thin) == 0) {
551 /*
552 * The lock is unowned. Install the thread id of the
553 * calling thread into the owner field. This is the
554 * common case. In performance critical code the JIT
555 * will have tried this before calling out to the VM.
556 */
557 newThin = thin | (threadId << LW_LOCK_OWNER_SHIFT);
558 if (android_atomic_acquire_cas(thin, newThin, thinp) != 0) {
559 // The acquire failed. Try again.
560 goto retry;
561 }
562 } else {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800563 VLOG(monitor) << StringPrintf("monitor: thread %d spin on lock %p (a %s) owned by %d",
564 threadId, thinp, PrettyTypeOf(obj).c_str(), LW_LOCK_OWNER(thin));
Elliott Hughes5f791332011-09-15 17:45:30 -0700565 // The lock is owned by another thread. Notify the VM that we are about to wait.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700566 self->monitor_enter_object_ = obj;
Elliott Hughes5f791332011-09-15 17:45:30 -0700567 Thread::State oldStatus = self->SetState(Thread::kBlocked);
568 // Spin until the thin lock is released or inflated.
569 sleepDelayNs = 0;
570 for (;;) {
571 thin = *thinp;
572 // Check the shape of the lock word. Another thread
573 // may have inflated the lock while we were waiting.
574 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
575 if (LW_LOCK_OWNER(thin) == 0) {
576 // The lock has been released. Install the thread id of the
577 // calling thread into the owner field.
578 newThin = thin | (threadId << LW_LOCK_OWNER_SHIFT);
579 if (android_atomic_acquire_cas(thin, newThin, thinp) == 0) {
580 // The acquire succeed. Break out of the loop and proceed to inflate the lock.
581 break;
582 }
583 } else {
584 // The lock has not been released. Yield so the owning thread can run.
585 if (sleepDelayNs == 0) {
586 sched_yield();
587 sleepDelayNs = minSleepDelayNs;
588 } else {
589 tm.tv_sec = 0;
590 tm.tv_nsec = sleepDelayNs;
591 nanosleep(&tm, NULL);
592 // Prepare the next delay value. Wrap to avoid once a second polls for eternity.
593 if (sleepDelayNs < maxSleepDelayNs / 2) {
594 sleepDelayNs *= 2;
595 } else {
596 sleepDelayNs = minSleepDelayNs;
597 }
598 }
599 }
600 } else {
601 // The thin lock was inflated by another thread. Let the VM know we are no longer
602 // waiting and try again.
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800603 VLOG(monitor) << "monitor: thread " << threadId
604 << " found lock " << (void*) thinp << " surprise-fattened by another thread";
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700605 self->monitor_enter_object_ = NULL;
Elliott Hughes5f791332011-09-15 17:45:30 -0700606 self->SetState(oldStatus);
607 goto retry;
608 }
609 }
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800610 VLOG(monitor) << StringPrintf("monitor: thread %d spin on lock %p done", threadId, thinp);
Elliott Hughes5f791332011-09-15 17:45:30 -0700611 // We have acquired the thin lock. Let the VM know that we are no longer waiting.
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700612 self->monitor_enter_object_ = NULL;
Elliott Hughes5f791332011-09-15 17:45:30 -0700613 self->SetState(oldStatus);
614 // Fatten the lock.
615 Inflate(self, obj);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800616 VLOG(monitor) << StringPrintf("monitor: thread %d fattened lock %p", threadId, thinp);
Elliott Hughes5f791332011-09-15 17:45:30 -0700617 }
618 } else {
619 // The lock is a fat lock.
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800620 VLOG(monitor) << StringPrintf("monitor: thread %d locking fat lock %p (%p) %p on a %s",
Elliott Hughesf8e01272011-10-17 11:29:05 -0700621 threadId, thinp, LW_MONITOR(*thinp), (void*)*thinp, PrettyTypeOf(obj).c_str());
Elliott Hughes5f791332011-09-15 17:45:30 -0700622 DCHECK(LW_MONITOR(*thinp) != NULL);
623 LW_MONITOR(*thinp)->Lock(self);
624 }
625}
626
627bool Monitor::MonitorExit(Thread* self, Object* obj) {
628 volatile int32_t* thinp = obj->GetRawLockWordAddress();
629
630 DCHECK(self != NULL);
Elliott Hughes4681c802011-09-25 18:04:37 -0700631 //DCHECK_EQ(self->GetState(), Thread::kRunnable);
Elliott Hughes5f791332011-09-15 17:45:30 -0700632 DCHECK(obj != NULL);
633
634 /*
635 * Cache the lock word as its value can change while we are
636 * examining its state.
637 */
638 uint32_t thin = *thinp;
639 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
640 /*
641 * The lock is thin. We must ensure that the lock is owned
642 * by the given thread before unlocking it.
643 */
Elliott Hughesf8e01272011-10-17 11:29:05 -0700644 if (LW_LOCK_OWNER(thin) == self->GetThinLockId()) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700645 /*
646 * We are the lock owner. It is safe to update the lock
647 * without CAS as lock ownership guards the lock itself.
648 */
649 if (LW_LOCK_COUNT(thin) == 0) {
650 /*
651 * The lock was not recursively acquired, the common
652 * case. Unlock by clearing all bits except for the
653 * hash state.
654 */
655 thin &= (LW_HASH_STATE_MASK << LW_HASH_STATE_SHIFT);
656 android_atomic_release_store(thin, thinp);
657 } else {
658 /*
659 * The object was recursively acquired. Decrement the
660 * lock recursion count field.
661 */
662 *thinp -= 1 << LW_LOCK_COUNT_SHIFT;
663 }
664 } else {
665 /*
666 * We do not own the lock. The JVM spec requires that we
667 * throw an exception in this case.
668 */
669 ThrowIllegalMonitorStateException("unlock of unowned monitor");
670 return false;
671 }
672 } else {
673 /*
674 * The lock is fat. We must check to see if Unlock has
675 * raised any exceptions before continuing.
676 */
677 DCHECK(LW_MONITOR(*thinp) != NULL);
678 if (!LW_MONITOR(*thinp)->Unlock(self)) {
679 // An exception has been raised. Do not fall through.
680 return false;
681 }
682 }
683 return true;
684}
685
686/*
687 * Object.wait(). Also called for class init.
688 */
689void Monitor::Wait(Thread* self, Object *obj, int64_t ms, int32_t ns, bool interruptShouldThrow) {
690 volatile int32_t* thinp = obj->GetRawLockWordAddress();
691
692 // If the lock is still thin, we need to fatten it.
693 uint32_t thin = *thinp;
694 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
695 // Make sure that 'self' holds the lock.
Elliott Hughesf8e01272011-10-17 11:29:05 -0700696 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700697 ThrowIllegalMonitorStateException("object not locked by thread before wait()");
698 return;
699 }
700
701 /* This thread holds the lock. We need to fatten the lock
702 * so 'self' can block on it. Don't update the object lock
703 * field yet, because 'self' needs to acquire the lock before
704 * any other thread gets a chance.
705 */
706 Inflate(self, obj);
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800707 VLOG(monitor) << StringPrintf("monitor: thread %d fattened lock %p by wait()", self->GetThinLockId(), thinp);
Elliott Hughes5f791332011-09-15 17:45:30 -0700708 }
709 LW_MONITOR(*thinp)->Wait(self, ms, ns, interruptShouldThrow);
710}
711
712void Monitor::Notify(Thread* self, Object *obj) {
713 uint32_t thin = *obj->GetRawLockWordAddress();
714
715 // If the lock is still thin, there aren't any waiters;
716 // waiting on an object forces lock fattening.
717 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
718 // Make sure that 'self' holds the lock.
Elliott Hughesf8e01272011-10-17 11:29:05 -0700719 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700720 ThrowIllegalMonitorStateException("object not locked by thread before notify()");
721 return;
722 }
723 // no-op; there are no waiters to notify.
724 } else {
725 // It's a fat lock.
726 LW_MONITOR(thin)->Notify(self);
727 }
728}
729
730void Monitor::NotifyAll(Thread* self, Object *obj) {
731 uint32_t thin = *obj->GetRawLockWordAddress();
732
733 // If the lock is still thin, there aren't any waiters;
734 // waiting on an object forces lock fattening.
735 if (LW_SHAPE(thin) == LW_SHAPE_THIN) {
736 // Make sure that 'self' holds the lock.
Elliott Hughesf8e01272011-10-17 11:29:05 -0700737 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700738 ThrowIllegalMonitorStateException("object not locked by thread before notifyAll()");
739 return;
740 }
741 // no-op; there are no waiters to notify.
742 } else {
743 // It's a fat lock.
744 LW_MONITOR(thin)->NotifyAll(self);
745 }
746}
747
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -0700748uint32_t Monitor::GetThinLockId(uint32_t raw_lock_word) {
Elliott Hughes5f791332011-09-15 17:45:30 -0700749 if (LW_SHAPE(raw_lock_word) == LW_SHAPE_THIN) {
750 return LW_LOCK_OWNER(raw_lock_word);
751 } else {
752 Thread* owner = LW_MONITOR(raw_lock_word)->owner_;
753 return owner ? owner->GetThinLockId() : 0;
754 }
755}
756
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700757void Monitor::DescribeWait(std::ostream& os, const Thread* thread) {
758 Thread::State state = thread->GetState();
759
760 Object* object = NULL;
761 uint32_t lock_owner = ThreadList::kInvalidId;
762 if (state == Thread::kWaiting || state == Thread::kTimedWaiting) {
763 os << " - waiting on ";
764 Monitor* monitor = thread->wait_monitor_;
765 if (monitor != NULL) {
766 object = monitor->obj_;
767 }
768 lock_owner = Thread::LockOwnerFromThreadLock(object);
769 } else if (state == Thread::kBlocked) {
770 os << " - waiting to lock ";
771 object = thread->monitor_enter_object_;
772 if (object != NULL) {
Brian Carlstrom24a3c2e2011-10-17 18:07:52 -0700773 lock_owner = object->GetThinLockId();
Elliott Hughes8e4aac52011-09-26 17:03:36 -0700774 }
775 } else {
776 // We're not waiting on anything.
777 return;
778 }
779 os << "<" << object << ">";
780
781 // - waiting on <0x613f83d8> (a java.lang.ThreadLock) held by thread 5
782 // - waiting on <0x6008c468> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
783 os << " (a " << PrettyTypeOf(object) << ")";
784
785 if (lock_owner != ThreadList::kInvalidId) {
786 os << " held by thread " << lock_owner;
787 }
788
789 os << "\n";
790}
791
jeffhao33dc7712011-11-09 17:54:24 -0800792void Monitor::TranslateLocation(const Method* method, uint32_t pc,
793 const char*& source_file, uint32_t& line_number) const {
794 // If method is null, location is unknown
795 if (method == NULL) {
Elliott Hughes12c51e32012-01-17 20:25:05 -0800796 source_file = "";
jeffhao33dc7712011-11-09 17:54:24 -0800797 line_number = 0;
798 return;
799 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800800 MethodHelper mh(method);
801 source_file = mh.GetDeclaringClassSourceFile();
Elliott Hughes12c51e32012-01-17 20:25:05 -0800802 if (source_file == NULL) {
803 source_file = "";
804 }
Ian Rogers6d4d9fc2011-11-30 16:24:48 -0800805 line_number = mh.GetLineNumFromNativePC(pc);
jeffhao33dc7712011-11-09 17:54:24 -0800806}
807
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700808MonitorList::MonitorList() : lock_("MonitorList lock") {
809}
810
811MonitorList::~MonitorList() {
812 MutexLock mu(lock_);
813 STLDeleteElements(&list_);
814}
815
816void MonitorList::Add(Monitor* m) {
817 MutexLock mu(lock_);
818 list_.push_front(m);
819}
820
821void MonitorList::SweepMonitorList(Heap::IsMarkedTester is_marked, void* arg) {
822 MutexLock mu(lock_);
823 typedef std::list<Monitor*>::iterator It; // TODO: C++0x auto
824 It it = list_.begin();
825 while (it != list_.end()) {
826 Monitor* m = *it;
827 if (!is_marked(m->GetObject(), arg)) {
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800828 VLOG(monitor) << "freeing monitor " << m << " belonging to unmarked object " << m->GetObject();
Elliott Hughesc33a32b2011-10-11 18:18:07 -0700829 delete m;
830 it = list_.erase(it);
831 } else {
832 ++it;
833 }
834 }
835}
836
Elliott Hughes5f791332011-09-15 17:45:30 -0700837} // namespace art