hotspot/src/share/vm/runtime/mutexLocker.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 228 69939fa91efd
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// Mutexes used in the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
extern Mutex*   Patching_lock;                   // a lock used to guard code patching of compiled code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
extern Monitor* SystemDictionary_lock;           // a lock on the system dictonary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
extern Mutex*   PackageTable_lock;               // a lock on the class loader package table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
extern Mutex*   CompiledIC_lock;                 // a lock used to guard compiled IC patching and access
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
extern Mutex*   InlineCacheBuffer_lock;          // a lock used to guard the InlineCacheBuffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
extern Mutex*   VMStatistic_lock;                // a lock used to guard statistics count increment
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
extern Mutex*   JNIGlobalHandle_lock;            // a lock on creating JNI global handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
extern Mutex*   JNIHandleBlockFreeList_lock;     // a lock on the JNI handle block free list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
extern Mutex*   JNICachedItableIndex_lock;       // a lock on caching an itable index during JNI invoke
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
extern Mutex*   JmethodIdCreation_lock;          // a lock on creating JNI method identifiers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
extern Mutex*   JfieldIdCreation_lock;           // a lock on creating JNI static field identifiers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
extern Monitor* JNICritical_lock;                // a lock used while entering and exiting JNI critical regions, allows GC to sometimes get in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
extern Mutex*   JvmtiThreadState_lock;           // a lock on modification of JVMTI thread data
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
extern Monitor* JvmtiPendingEvent_lock;          // a lock on the JVMTI pending events list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
extern Mutex*   Heap_lock;                       // a lock on the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
extern Mutex*   ExpandHeap_lock;                 // a lock on expanding the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
extern Mutex*   AdapterHandlerLibrary_lock;      // a lock on the AdapterHandlerLibrary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
extern Mutex*   SignatureHandlerLibrary_lock;    // a lock on the SignatureHandlerLibrary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
extern Mutex*   VtableStubs_lock;                // a lock on the VtableStubs
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
extern Mutex*   SymbolTable_lock;                // a lock on the symbol table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
extern Mutex*   StringTable_lock;                // a lock on the interned string table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
extern Mutex*   CodeCache_lock;                  // a lock on the CodeCache, rank is special, use MutexLockerEx
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
extern Mutex*   MethodData_lock;                 // a lock on installation of method data
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
extern Mutex*   RetData_lock;                    // a lock on installation of RetData inside method data
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
extern Mutex*   DerivedPointerTableGC_lock;      // a lock to protect the derived pointer table
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
extern Monitor* VMOperationQueue_lock;           // a lock on queue of vm_operations waiting to execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
extern Monitor* VMOperationRequest_lock;         // a lock on Threads waiting for a vm_operation to terminate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
extern Monitor* Safepoint_lock;                  // a lock used by the safepoint abstraction
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
extern Monitor* SerializePage_lock;              // a lock used when VMThread changing serialize memory page permission during safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
extern Monitor* Threads_lock;                    // a lock on the Threads table of active Java threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                                                 // (also used by Safepoints too to block threads creation/destruction)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
extern Monitor* CGC_lock;                        // used for coordination between
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
                                                 // fore- & background GC threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
extern Mutex*   STS_init_lock;                   // coordinate initialization of SuspendibleThreadSets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
extern Monitor* SLT_lock;                        // used in CMS GC for acquiring PLL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
extern Monitor* iCMS_lock;                       // CMS incremental mode start/stop notification
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
extern Monitor* FullGCCount_lock;                // in support of "concurrent" full gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
                                                 // (see option ExplicitGCInvokesConcurrent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
extern Mutex*   ParGCRareEvent_lock;             // Synchronizes various (rare) parallel GC ops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
extern Mutex*   Compile_lock;                    // a lock held when Compilation is updating code (used to block CodeCache traversal, CHA updates, etc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
extern Monitor* MethodCompileQueue_lock;         // a lock held when method compilations are enqueued, dequeued
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#ifdef TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
extern Monitor* C1_lock;                         // a lock to ensure on single c1 compile is ever active
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
#endif // TIERED
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
extern Monitor* CompileThread_lock;              // a lock held by compile threads during compilation system initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
extern Mutex*   CompileTaskAlloc_lock;           // a lock held when CompileTasks are allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
extern Mutex*   CompileStatistics_lock;          // a lock held when updating compilation statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
extern Mutex*   MultiArray_lock;                 // a lock used to guard allocation of multi-dim arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
extern Monitor* Terminator_lock;                 // a lock used to guard termination of the vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
extern Monitor* BeforeExit_lock;                 // a lock used to guard cleanups and shutdown hooks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
extern Monitor* Notify_lock;                     // a lock used to synchronize the start-up of the vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
extern Monitor* Interrupt_lock;                  // a lock used for condition variable mediated interrupt processing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
extern Monitor* ProfileVM_lock;                  // a lock used for profiling the VMThread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
extern Mutex*   ProfilePrint_lock;               // a lock used to serialize the printing of profiles
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
extern Mutex*   ExceptionCache_lock;             // a lock used to synchronize exception cache updates
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
extern Mutex*   OsrList_lock;                    // a lock used to serialize access to OSR queues
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
extern Mutex*   FullGCALot_lock;                 // a lock to make FullGCALot MT safe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
extern Mutex*   Debug1_lock;                     // A bunch of pre-allocated locks that can be used for tracing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
extern Mutex*   Debug2_lock;                     // down synchronization related bugs!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
extern Mutex*   Debug3_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
extern Mutex*   RawMonitor_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
extern Mutex*   PerfDataMemAlloc_lock;           // a lock on the allocator for PerfData memory for performance data
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
extern Mutex*   PerfDataManager_lock;            // a long on access to PerfDataManager resources
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
extern Mutex*   ParkerFreeList_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
extern Mutex*   OopMapCacheAlloc_lock;           // protects allocation of oop_map caches
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
extern Mutex*   Management_lock;                 // a lock used to serialize JVM management
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
extern Monitor* LowMemory_lock;                  // a lock used for low memory detection
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// A MutexLocker provides mutual exclusion with respect to a given mutex
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// for the scope which contains the locker.  The lock is an OS lock, not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
// an object lock, and the two do not interoperate.  Do not use Mutex-based
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// locks to lock on Java objects, because they will not be respected if a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// that object is locked using the Java locking mechanism.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
//                NOTE WELL!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// See orderAccess.hpp.  We assume throughout the VM that MutexLocker's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// and friends constructors do a fence, a lock and an acquire *in that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// order*.  And that their destructors do a release and unlock, in *that*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
// order.  If their implementations change such that these assumptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
// are violated, a whole lot of code will break.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// Print all mutexes/monitors that are currently owned by a thread; called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// by fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
void print_owned_locks_on_error(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
char *lock_name(Mutex *mutex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
class MutexLocker: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  Monitor * _mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  MutexLocker(Monitor * mutex) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    assert(mutex->rank() != Mutex::special,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      "Special ranked mutex should only use MutexLockerEx");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    _mutex = mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    _mutex->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Overloaded constructor passing current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  MutexLocker(Monitor * mutex, Thread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    assert(mutex->rank() != Mutex::special,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      "Special ranked mutex should only use MutexLockerEx");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    _mutex = mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    _mutex->lock(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  ~MutexLocker() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// for debugging: check that we're already owning this lock (or are at a safepoint)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
void assert_locked_or_safepoint(const Monitor * lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
void assert_lock_strong(const Monitor * lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
#define assert_locked_or_safepoint(lock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
#define assert_lock_strong(lock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
// A MutexLockerEx behaves like a MutexLocker when its constructor is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// called with a Mutex.  Unlike a MutexLocker, its constructor can also be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// called with NULL, in which case the MutexLockerEx is a no-op.  There
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
// is also a corresponding MutexUnlockerEx.  We want to keep the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
// basic MutexLocker as fast as possible.  MutexLockerEx can also lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
// without safepoint check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
class MutexLockerEx: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  Monitor * _mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  MutexLockerEx(Monitor * mutex, bool no_safepoint_check = !Mutex::_no_safepoint_check_flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    _mutex = mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    if (_mutex != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
      assert(mutex->rank() > Mutex::special || no_safepoint_check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
        "Mutexes with rank special or lower should not do safepoint checks");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      if (no_safepoint_check)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
        _mutex->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
        _mutex->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  ~MutexLockerEx() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    if (_mutex != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
      _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
// A MonitorLockerEx is like a MutexLockerEx above, except it takes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
// a possibly null Monitor, and allows wait/notify as well which are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
// delegated to the underlying Monitor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
class MonitorLockerEx: public MutexLockerEx {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  Monitor * _monitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  MonitorLockerEx(Monitor* monitor,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                  bool no_safepoint_check = !Mutex::_no_safepoint_check_flag):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    MutexLockerEx(monitor, no_safepoint_check),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    _monitor(monitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    // Superclass constructor did locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  ~MonitorLockerEx() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      if (_monitor != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
        assert_lock_strong(_monitor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    #endif  // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    // Superclass destructor will do unlocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  bool wait(bool no_safepoint_check = !Mutex::_no_safepoint_check_flag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
            long timeout = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
            bool as_suspend_equivalent = !Mutex::_as_suspend_equivalent_flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    if (_monitor != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      return _monitor->wait(no_safepoint_check, timeout, as_suspend_equivalent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  bool notify_all() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    if (_monitor != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      return _monitor->notify_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  bool notify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    if (_monitor != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      return _monitor->notify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
// A GCMutexLocker is usually initialized with a mutex that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
// automatically acquired in order to do GC.  The function that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
// synchronizes using a GCMutexLocker may be called both during and between
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
// GC's.  Thus, it must acquire the mutex if GC is not in progress, but not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
// if GC is in progress (since the mutex is already held on its behalf.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
class GCMutexLocker: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  Monitor * _mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  bool _locked;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  GCMutexLocker(Monitor * mutex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  ~GCMutexLocker() { if (_locked) _mutex->unlock(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// A MutexUnlocker temporarily exits a previously
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
// entered mutex for the scope which contains the unlocker.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
class MutexUnlocker: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  Monitor * _mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  MutexUnlocker(Monitor * mutex) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    _mutex = mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  ~MutexUnlocker() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    _mutex->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
// A MutexUnlockerEx temporarily exits a previously
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// entered mutex for the scope which contains the unlocker.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
class MutexUnlockerEx: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  Monitor * _mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  bool _no_safepoint_check;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  MutexUnlockerEx(Monitor * mutex, bool no_safepoint_check = !Mutex::_no_safepoint_check_flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    _mutex = mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    _no_safepoint_check = no_safepoint_check;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  ~MutexUnlockerEx() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    if (_no_safepoint_check == Mutex::_no_safepoint_check_flag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      _mutex->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      _mutex->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
// A special MutexLocker that allows:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
//   - reentrant locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
//   - locking out of order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
// Only too be used for verify code, where we can relaxe out dead-lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
// dection code a bit (unsafe, but probably ok). This code is NEVER to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
// be included in a product version.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
class VerifyMutexLocker: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  Monitor * _mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  bool   _reentrant;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  VerifyMutexLocker(Monitor * mutex) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    _mutex     = mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    _reentrant = mutex->owned_by_self();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    if (!_reentrant) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      // We temp. diable strict safepoint checking, while we require the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      FlagSetting fs(StrictSafepointChecks, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      _mutex->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  ~VerifyMutexLocker() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    if (!_reentrant) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
      _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
#endif