src/share/vm/runtime/mutexLocker.cpp

Fri, 04 Jun 2010 11:18:04 -0700

author
iveresov
date
Fri, 04 Jun 2010 11:18:04 -0700
changeset 1939
b812ff5abc73
parent 1907
c18cbe5936b8
child 2011
4e5661ba9d98
permissions
-rw-r--r--

6958292: C1: Enable parallel compilation
Summary: Enable parallel compilation in C1
Reviewed-by: never, kvn

     1 /*
     2  * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "incls/_precompiled.incl"
    26 #include "incls/_mutexLocker.cpp.incl"
    28 // Mutexes used in the VM (see comment in mutexLocker.hpp):
    29 //
    30 // Note that the following pointers are effectively final -- after having been
    31 // set at JVM startup-time, they should never be subsequently mutated.
    32 // Instead of using pointers to malloc()ed monitors and mutexes we should consider
    33 // eliminating the indirection and using instances instead.
    34 // Consider using GCC's __read_mostly.
    36 Mutex*   Patching_lock                = NULL;
    37 Monitor* SystemDictionary_lock        = NULL;
    38 Mutex*   PackageTable_lock            = NULL;
    39 Mutex*   CompiledIC_lock              = NULL;
    40 Mutex*   InlineCacheBuffer_lock       = NULL;
    41 Mutex*   VMStatistic_lock             = NULL;
    42 Mutex*   JNIGlobalHandle_lock         = NULL;
    43 Mutex*   JNIHandleBlockFreeList_lock  = NULL;
    44 Mutex*   JNICachedItableIndex_lock    = NULL;
    45 Mutex*   JmethodIdCreation_lock       = NULL;
    46 Mutex*   JfieldIdCreation_lock        = NULL;
    47 Monitor* JNICritical_lock             = NULL;
    48 Mutex*   JvmtiThreadState_lock        = NULL;
    49 Monitor* JvmtiPendingEvent_lock       = NULL;
    50 Monitor* Heap_lock                    = NULL;
    51 Mutex*   ExpandHeap_lock              = NULL;
    52 Mutex*   AdapterHandlerLibrary_lock   = NULL;
    53 Mutex*   SignatureHandlerLibrary_lock = NULL;
    54 Mutex*   VtableStubs_lock             = NULL;
    55 Mutex*   SymbolTable_lock             = NULL;
    56 Mutex*   StringTable_lock             = NULL;
    57 Mutex*   CodeCache_lock               = NULL;
    58 Mutex*   MethodData_lock              = NULL;
    59 Mutex*   RetData_lock                 = NULL;
    60 Monitor* VMOperationQueue_lock        = NULL;
    61 Monitor* VMOperationRequest_lock      = NULL;
    62 Monitor* Safepoint_lock               = NULL;
    63 Monitor* SerializePage_lock           = NULL;
    64 Monitor* Threads_lock                 = NULL;
    65 Monitor* CGC_lock                     = NULL;
    66 Mutex*   STS_init_lock                = NULL;
    67 Monitor* SLT_lock                     = NULL;
    68 Monitor* iCMS_lock                    = NULL;
    69 Monitor* FullGCCount_lock             = NULL;
    70 Monitor* CMark_lock                   = NULL;
    71 Monitor* ZF_mon                       = NULL;
    72 Monitor* Cleanup_mon                  = NULL;
    73 Mutex*   CMRegionStack_lock           = NULL;
    74 Mutex*   SATB_Q_FL_lock               = NULL;
    75 Monitor* SATB_Q_CBL_mon               = NULL;
    76 Mutex*   Shared_SATB_Q_lock           = NULL;
    77 Mutex*   DirtyCardQ_FL_lock           = NULL;
    78 Monitor* DirtyCardQ_CBL_mon           = NULL;
    79 Mutex*   Shared_DirtyCardQ_lock       = NULL;
    80 Mutex*   ParGCRareEvent_lock          = NULL;
    81 Mutex*   EvacFailureStack_lock        = NULL;
    82 Mutex*   DerivedPointerTableGC_lock   = NULL;
    83 Mutex*   Compile_lock                 = NULL;
    84 Monitor* MethodCompileQueue_lock      = NULL;
    85 Monitor* CompileThread_lock           = NULL;
    86 Mutex*   CompileTaskAlloc_lock        = NULL;
    87 Mutex*   CompileStatistics_lock       = NULL;
    88 Mutex*   MultiArray_lock              = NULL;
    89 Monitor* Terminator_lock              = NULL;
    90 Monitor* BeforeExit_lock              = NULL;
    91 Monitor* Notify_lock                  = NULL;
    92 Monitor* Interrupt_lock               = NULL;
    93 Monitor* ProfileVM_lock               = NULL;
    94 Mutex*   ProfilePrint_lock            = NULL;
    95 Mutex*   ExceptionCache_lock          = NULL;
    96 Monitor* ObjAllocPost_lock            = NULL;
    97 Mutex*   OsrList_lock                 = NULL;
    98 #ifndef PRODUCT
    99 Mutex*   FullGCALot_lock              = NULL;
   100 #endif
   102 Mutex*   Debug1_lock                  = NULL;
   103 Mutex*   Debug2_lock                  = NULL;
   104 Mutex*   Debug3_lock                  = NULL;
   106 Mutex*   tty_lock                     = NULL;
   108 Mutex*   RawMonitor_lock              = NULL;
   109 Mutex*   PerfDataMemAlloc_lock        = NULL;
   110 Mutex*   PerfDataManager_lock         = NULL;
   111 Mutex*   OopMapCacheAlloc_lock        = NULL;
   113 Mutex*   MMUTracker_lock              = NULL;
   114 Mutex*   HotCardCache_lock            = NULL;
   116 Monitor* GCTaskManager_lock           = NULL;
   118 Mutex*   Management_lock              = NULL;
   119 Monitor* LowMemory_lock               = NULL;
   121 #define MAX_NUM_MUTEX 128
   122 static Monitor * _mutex_array[MAX_NUM_MUTEX];
   123 static int _num_mutex;
   125 #ifdef ASSERT
   126 void assert_locked_or_safepoint(const Monitor * lock) {
   127   // check if this thread owns the lock (common case)
   128   if (IgnoreLockingAssertions) return;
   129   assert(lock != NULL, "Need non-NULL lock");
   130   if (lock->owned_by_self()) return;
   131   if (SafepointSynchronize::is_at_safepoint()) return;
   132   if (!Universe::is_fully_initialized()) return;
   133   // see if invoker of VM operation owns it
   134   VM_Operation* op = VMThread::vm_operation();
   135   if (op != NULL && op->calling_thread() == lock->owner()) return;
   136   fatal(err_msg("must own lock %s", lock->name()));
   137 }
   139 // a stronger assertion than the above
   140 void assert_lock_strong(const Monitor * lock) {
   141   if (IgnoreLockingAssertions) return;
   142   assert(lock != NULL, "Need non-NULL lock");
   143   if (lock->owned_by_self()) return;
   144   fatal(err_msg("must own lock %s", lock->name()));
   145 }
   146 #endif
   148 #define def(var, type, pri, vm_block) {                           \
   149   var = new type(Mutex::pri, #var, vm_block);                     \
   150   assert(_num_mutex < MAX_NUM_MUTEX,                              \
   151                     "increase MAX_NUM_MUTEX");                    \
   152   _mutex_array[_num_mutex++] = var;                               \
   153 }
   155 void mutex_init() {
   156   def(tty_lock                     , Mutex  , event,       true ); // allow to lock in VM
   158   def(CGC_lock                   , Monitor, special,     true ); // coordinate between fore- and background GC
   159   def(STS_init_lock              , Mutex,   leaf,        true );
   160   if (UseConcMarkSweepGC) {
   161     def(iCMS_lock                  , Monitor, special,     true ); // CMS incremental mode start/stop notification
   162     def(FullGCCount_lock           , Monitor, leaf,        true ); // in support of ExplicitGCInvokesConcurrent
   163   }
   164   if (UseG1GC) {
   165     def(CMark_lock                 , Monitor, nonleaf,     true ); // coordinate concurrent mark thread
   166     def(ZF_mon                     , Monitor, leaf,        true );
   167     def(Cleanup_mon                , Monitor, nonleaf,     true );
   168     def(CMRegionStack_lock         , Mutex,   leaf,        true );
   169     def(SATB_Q_FL_lock             , Mutex  , special,     true );
   170     def(SATB_Q_CBL_mon             , Monitor, nonleaf,     true );
   171     def(Shared_SATB_Q_lock         , Mutex,   nonleaf,     true );
   173     def(DirtyCardQ_FL_lock         , Mutex  , special,     true );
   174     def(DirtyCardQ_CBL_mon         , Monitor, nonleaf,     true );
   175     def(Shared_DirtyCardQ_lock     , Mutex,   nonleaf,     true );
   177     def(MMUTracker_lock            , Mutex  , leaf     ,   true );
   178     def(HotCardCache_lock          , Mutex  , special  ,   true );
   179     def(EvacFailureStack_lock      , Mutex  , nonleaf  ,   true );
   180   }
   181   def(ParGCRareEvent_lock          , Mutex  , leaf     ,   true );
   182   def(DerivedPointerTableGC_lock   , Mutex,   leaf,        true );
   183   def(CodeCache_lock               , Mutex  , special,     true );
   184   def(Interrupt_lock               , Monitor, special,     true ); // used for interrupt processing
   185   def(RawMonitor_lock              , Mutex,   special,     true );
   186   def(OopMapCacheAlloc_lock        , Mutex,   leaf,        true ); // used for oop_map_cache allocation.
   188   def(Patching_lock                , Mutex  , special,     true ); // used for safepointing and code patching.
   189   def(ObjAllocPost_lock            , Monitor, special,     false);
   190   def(LowMemory_lock               , Monitor, special,     true ); // used for low memory detection
   191   def(JmethodIdCreation_lock       , Mutex  , leaf,        true ); // used for creating jmethodIDs.
   193   def(SystemDictionary_lock        , Monitor, leaf,        true ); // lookups done by VM thread
   194   def(PackageTable_lock            , Mutex  , leaf,        false);
   195   def(InlineCacheBuffer_lock       , Mutex  , leaf,        true );
   196   def(VMStatistic_lock             , Mutex  , leaf,        false);
   197   def(ExpandHeap_lock              , Mutex  , leaf,        true ); // Used during compilation by VM thread
   198   def(JNIHandleBlockFreeList_lock  , Mutex  , leaf,        true ); // handles are used by VM thread
   199   def(SignatureHandlerLibrary_lock , Mutex  , leaf,        false);
   200   def(SymbolTable_lock             , Mutex  , leaf,        true );
   201   def(StringTable_lock             , Mutex  , leaf,        true );
   202   def(ProfilePrint_lock            , Mutex  , leaf,        false); // serial profile printing
   203   def(ExceptionCache_lock          , Mutex  , leaf,        false); // serial profile printing
   204   def(OsrList_lock                 , Mutex  , leaf,        true );
   205   def(Debug1_lock                  , Mutex  , leaf,        true );
   206 #ifndef PRODUCT
   207   def(FullGCALot_lock              , Mutex  , leaf,        false); // a lock to make FullGCALot MT safe
   208 #endif
   209   def(BeforeExit_lock              , Monitor, leaf,        true );
   210   def(PerfDataMemAlloc_lock        , Mutex  , leaf,        true ); // used for allocating PerfData memory for performance data
   211   def(PerfDataManager_lock         , Mutex  , leaf,        true ); // used for synchronized access to PerfDataManager resources
   213   // CMS_modUnionTable_lock                   leaf
   214   // CMS_bitMap_lock                          leaf + 1
   215   // CMS_freeList_lock                        leaf + 2
   217   def(Safepoint_lock               , Monitor, safepoint,   true ); // locks SnippetCache_lock/Threads_lock
   219   def(Threads_lock                 , Monitor, barrier,     true );
   221   def(VMOperationQueue_lock        , Monitor, nonleaf,     true ); // VM_thread allowed to block on these
   222   def(VMOperationRequest_lock      , Monitor, nonleaf,     true );
   223   def(RetData_lock                 , Mutex  , nonleaf,     false);
   224   def(Terminator_lock              , Monitor, nonleaf,     true );
   225   def(VtableStubs_lock             , Mutex  , nonleaf,     true );
   226   def(Notify_lock                  , Monitor, nonleaf,     true );
   227   def(JNIGlobalHandle_lock         , Mutex  , nonleaf,     true ); // locks JNIHandleBlockFreeList_lock
   228   def(JNICritical_lock             , Monitor, nonleaf,     true ); // used for JNI critical regions
   229   def(AdapterHandlerLibrary_lock   , Mutex  , nonleaf,     true);
   230   if (UseConcMarkSweepGC) {
   231     def(SLT_lock                   , Monitor, nonleaf,     false );
   232                     // used in CMS GC for locking PLL lock
   233   }
   234   def(Heap_lock                    , Monitor, nonleaf+1,   false);
   235   def(JfieldIdCreation_lock        , Mutex  , nonleaf+1,   true ); // jfieldID, Used in VM_Operation
   236   def(JNICachedItableIndex_lock    , Mutex  , nonleaf+1,   false); // Used to cache an itable index during JNI invoke
   238   def(CompiledIC_lock              , Mutex  , nonleaf+2,   false); // locks VtableStubs_lock, InlineCacheBuffer_lock
   239   def(CompileTaskAlloc_lock        , Mutex  , nonleaf+2,   true );
   240   def(CompileStatistics_lock       , Mutex  , nonleaf+2,   false);
   241   def(MultiArray_lock              , Mutex  , nonleaf+2,   false); // locks SymbolTable_lock
   243   def(JvmtiThreadState_lock        , Mutex  , nonleaf+2,   false); // Used by JvmtiThreadState/JvmtiEventController
   244   def(JvmtiPendingEvent_lock       , Monitor, nonleaf,     false); // Used by JvmtiCodeBlobEvents
   245   def(Management_lock              , Mutex  , nonleaf+2,   false); // used for JVM management
   247   def(Compile_lock                 , Mutex  , nonleaf+3,   true );
   248   def(MethodData_lock              , Mutex  , nonleaf+3,   false);
   250   def(MethodCompileQueue_lock      , Monitor, nonleaf+4,   true );
   251   def(Debug2_lock                  , Mutex  , nonleaf+4,   true );
   252   def(Debug3_lock                  , Mutex  , nonleaf+4,   true );
   253   def(ProfileVM_lock               , Monitor, nonleaf+4,   false); // used for profiling of the VMThread
   254   def(CompileThread_lock           , Monitor, nonleaf+5,   false );
   255 }
   257 GCMutexLocker::GCMutexLocker(Monitor * mutex) {
   258   if (SafepointSynchronize::is_at_safepoint()) {
   259     _locked = false;
   260   } else {
   261     _mutex = mutex;
   262     _locked = true;
   263     _mutex->lock();
   264   }
   265 }
   267 // Print all mutexes/monitors that are currently owned by a thread; called
   268 // by fatal error handler.
   269 void print_owned_locks_on_error(outputStream* st) {
   270   st->print("VM Mutex/Monitor currently owned by a thread: ");
   271   bool none = true;
   272   for (int i = 0; i < _num_mutex; i++) {
   273      // see if it has an owner
   274      if (_mutex_array[i]->owner() != NULL) {
   275        if (none) {
   276           // print format used by Mutex::print_on_error()
   277           st->print_cr(" ([mutex/lock_event])");
   278           none = false;
   279        }
   280        _mutex_array[i]->print_on_error(st);
   281        st->cr();
   282      }
   283   }
   284   if (none) st->print_cr("None");
   285 }

mercurial