src/share/vm/runtime/mutexLocker.cpp

Wed, 11 Jan 2012 17:34:02 -0500

author
phh
date
Wed, 11 Jan 2012 17:34:02 -0500
changeset 3427
94ec88ca68e2
parent 3156
f08d439fab8c
child 3467
0a10d80352d5
permissions
-rw-r--r--

7115199: Add event tracing hooks and Java Flight Recorder infrastructure
Summary: Added a nop tracing infrastructure, JFR makefile changes and other infrastructure used only by JFR.
Reviewed-by: acorn, sspitsyn
Contributed-by: markus.gronlund@oracle.com

     1 /*
     2  * Copyright (c) 1997, 2011, 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 "precompiled.hpp"
    26 #include "runtime/mutexLocker.hpp"
    27 #include "runtime/safepoint.hpp"
    28 #include "runtime/threadLocalStorage.hpp"
    29 #include "runtime/vmThread.hpp"
    30 #ifdef TARGET_OS_FAMILY_linux
    31 # include "thread_linux.inline.hpp"
    32 #endif
    33 #ifdef TARGET_OS_FAMILY_solaris
    34 # include "thread_solaris.inline.hpp"
    35 #endif
    36 #ifdef TARGET_OS_FAMILY_windows
    37 # include "thread_windows.inline.hpp"
    38 #endif
    39 #ifdef TARGET_OS_FAMILY_bsd
    40 # include "thread_bsd.inline.hpp"
    41 #endif
    43 // Mutexes used in the VM (see comment in mutexLocker.hpp):
    44 //
    45 // Note that the following pointers are effectively final -- after having been
    46 // set at JVM startup-time, they should never be subsequently mutated.
    47 // Instead of using pointers to malloc()ed monitors and mutexes we should consider
    48 // eliminating the indirection and using instances instead.
    49 // Consider using GCC's __read_mostly.
    51 Mutex*   Patching_lock                = NULL;
    52 Monitor* SystemDictionary_lock        = NULL;
    53 Mutex*   PackageTable_lock            = NULL;
    54 Mutex*   CompiledIC_lock              = NULL;
    55 Mutex*   InlineCacheBuffer_lock       = NULL;
    56 Mutex*   VMStatistic_lock             = NULL;
    57 Mutex*   JNIGlobalHandle_lock         = NULL;
    58 Mutex*   JNIHandleBlockFreeList_lock  = NULL;
    59 Mutex*   JNICachedItableIndex_lock    = NULL;
    60 Mutex*   JmethodIdCreation_lock       = NULL;
    61 Mutex*   JfieldIdCreation_lock        = NULL;
    62 Monitor* JNICritical_lock             = NULL;
    63 Mutex*   JvmtiThreadState_lock        = NULL;
    64 Monitor* JvmtiPendingEvent_lock       = NULL;
    65 Monitor* Heap_lock                    = NULL;
    66 Mutex*   ExpandHeap_lock              = NULL;
    67 Mutex*   AdapterHandlerLibrary_lock   = NULL;
    68 Mutex*   SignatureHandlerLibrary_lock = NULL;
    69 Mutex*   VtableStubs_lock             = NULL;
    70 Mutex*   SymbolTable_lock             = NULL;
    71 Mutex*   StringTable_lock             = NULL;
    72 Mutex*   CodeCache_lock               = NULL;
    73 Mutex*   MethodData_lock              = NULL;
    74 Mutex*   RetData_lock                 = NULL;
    75 Monitor* VMOperationQueue_lock        = NULL;
    76 Monitor* VMOperationRequest_lock      = NULL;
    77 Monitor* Safepoint_lock               = NULL;
    78 Monitor* SerializePage_lock           = NULL;
    79 Monitor* Threads_lock                 = NULL;
    80 Monitor* CGC_lock                     = NULL;
    81 Mutex*   STS_init_lock                = NULL;
    82 Monitor* SLT_lock                     = NULL;
    83 Monitor* iCMS_lock                    = NULL;
    84 Monitor* FullGCCount_lock             = NULL;
    85 Monitor* CMark_lock                   = NULL;
    86 Mutex*   CMRegionStack_lock           = NULL;
    87 Mutex*   SATB_Q_FL_lock               = NULL;
    88 Monitor* SATB_Q_CBL_mon               = NULL;
    89 Mutex*   Shared_SATB_Q_lock           = NULL;
    90 Mutex*   DirtyCardQ_FL_lock           = NULL;
    91 Monitor* DirtyCardQ_CBL_mon           = NULL;
    92 Mutex*   Shared_DirtyCardQ_lock       = NULL;
    93 Mutex*   ParGCRareEvent_lock          = NULL;
    94 Mutex*   EvacFailureStack_lock        = NULL;
    95 Mutex*   DerivedPointerTableGC_lock   = NULL;
    96 Mutex*   Compile_lock                 = NULL;
    97 Monitor* MethodCompileQueue_lock      = NULL;
    98 Monitor* CompileThread_lock           = NULL;
    99 Mutex*   CompileTaskAlloc_lock        = NULL;
   100 Mutex*   CompileStatistics_lock       = NULL;
   101 Mutex*   MultiArray_lock              = NULL;
   102 Monitor* Terminator_lock              = NULL;
   103 Monitor* BeforeExit_lock              = NULL;
   104 Monitor* Notify_lock                  = NULL;
   105 Monitor* Interrupt_lock               = NULL;
   106 Monitor* ProfileVM_lock               = NULL;
   107 Mutex*   ProfilePrint_lock            = NULL;
   108 Mutex*   ExceptionCache_lock          = NULL;
   109 Monitor* ObjAllocPost_lock            = NULL;
   110 Mutex*   OsrList_lock                 = NULL;
   111 #ifndef PRODUCT
   112 Mutex*   FullGCALot_lock              = NULL;
   113 #endif
   115 Mutex*   Debug1_lock                  = NULL;
   116 Mutex*   Debug2_lock                  = NULL;
   117 Mutex*   Debug3_lock                  = NULL;
   119 Mutex*   tty_lock                     = NULL;
   121 Mutex*   RawMonitor_lock              = NULL;
   122 Mutex*   PerfDataMemAlloc_lock        = NULL;
   123 Mutex*   PerfDataManager_lock         = NULL;
   124 Mutex*   OopMapCacheAlloc_lock        = NULL;
   126 Mutex*   FreeList_lock                = NULL;
   127 Monitor* SecondaryFreeList_lock       = NULL;
   128 Mutex*   OldSets_lock                 = NULL;
   129 Mutex*   MMUTracker_lock              = NULL;
   130 Mutex*   HotCardCache_lock            = NULL;
   132 Monitor* GCTaskManager_lock           = NULL;
   134 Mutex*   Management_lock              = NULL;
   135 Monitor* Service_lock                 = NULL;
   136 Mutex*   Stacktrace_lock              = NULL;
   138 Monitor* JfrQuery_lock                = NULL;
   139 Monitor* JfrMsg_lock                  = NULL;
   140 Mutex*   JfrBuffer_lock               = NULL;
   141 Mutex*   JfrStream_lock               = NULL;
   143 #define MAX_NUM_MUTEX 128
   144 static Monitor * _mutex_array[MAX_NUM_MUTEX];
   145 static int _num_mutex;
   147 #ifdef ASSERT
   148 void assert_locked_or_safepoint(const Monitor * lock) {
   149   // check if this thread owns the lock (common case)
   150   if (IgnoreLockingAssertions) return;
   151   assert(lock != NULL, "Need non-NULL lock");
   152   if (lock->owned_by_self()) return;
   153   if (SafepointSynchronize::is_at_safepoint()) return;
   154   if (!Universe::is_fully_initialized()) return;
   155   // see if invoker of VM operation owns it
   156   VM_Operation* op = VMThread::vm_operation();
   157   if (op != NULL && op->calling_thread() == lock->owner()) return;
   158   fatal(err_msg("must own lock %s", lock->name()));
   159 }
   161 // a stronger assertion than the above
   162 void assert_lock_strong(const Monitor * lock) {
   163   if (IgnoreLockingAssertions) return;
   164   assert(lock != NULL, "Need non-NULL lock");
   165   if (lock->owned_by_self()) return;
   166   fatal(err_msg("must own lock %s", lock->name()));
   167 }
   168 #endif
   170 #define def(var, type, pri, vm_block) {                           \
   171   var = new type(Mutex::pri, #var, vm_block);                     \
   172   assert(_num_mutex < MAX_NUM_MUTEX,                              \
   173                     "increase MAX_NUM_MUTEX");                    \
   174   _mutex_array[_num_mutex++] = var;                               \
   175 }
   177 void mutex_init() {
   178   def(tty_lock                     , Mutex  , event,       true ); // allow to lock in VM
   180   def(CGC_lock                   , Monitor, special,     true ); // coordinate between fore- and background GC
   181   def(STS_init_lock              , Mutex,   leaf,        true );
   182   if (UseConcMarkSweepGC) {
   183     def(iCMS_lock                  , Monitor, special,     true ); // CMS incremental mode start/stop notification
   184   }
   185   if (UseConcMarkSweepGC || UseG1GC) {
   186     def(FullGCCount_lock           , Monitor, leaf,        true ); // in support of ExplicitGCInvokesConcurrent
   187   }
   188   if (UseG1GC) {
   189     def(CMark_lock                 , Monitor, nonleaf,     true ); // coordinate concurrent mark thread
   190     def(CMRegionStack_lock         , Mutex,   leaf,        true );
   191     def(SATB_Q_FL_lock             , Mutex  , special,     true );
   192     def(SATB_Q_CBL_mon             , Monitor, nonleaf,     true );
   193     def(Shared_SATB_Q_lock         , Mutex,   nonleaf,     true );
   195     def(DirtyCardQ_FL_lock         , Mutex  , special,     true );
   196     def(DirtyCardQ_CBL_mon         , Monitor, nonleaf,     true );
   197     def(Shared_DirtyCardQ_lock     , Mutex,   nonleaf,     true );
   199     def(FreeList_lock              , Mutex,   leaf     ,   true );
   200     def(SecondaryFreeList_lock     , Monitor, leaf     ,   true );
   201     def(OldSets_lock               , Mutex  , leaf     ,   true );
   202     def(MMUTracker_lock            , Mutex  , leaf     ,   true );
   203     def(HotCardCache_lock          , Mutex  , special  ,   true );
   204     def(EvacFailureStack_lock      , Mutex  , nonleaf  ,   true );
   205   }
   206   def(ParGCRareEvent_lock          , Mutex  , leaf     ,   true );
   207   def(DerivedPointerTableGC_lock   , Mutex,   leaf,        true );
   208   def(CodeCache_lock               , Mutex  , special,     true );
   209   def(Interrupt_lock               , Monitor, special,     true ); // used for interrupt processing
   210   def(RawMonitor_lock              , Mutex,   special,     true );
   211   def(OopMapCacheAlloc_lock        , Mutex,   leaf,        true ); // used for oop_map_cache allocation.
   213   def(Patching_lock                , Mutex  , special,     true ); // used for safepointing and code patching.
   214   def(ObjAllocPost_lock            , Monitor, special,     false);
   215   def(Service_lock                 , Monitor, special,     true ); // used for service thread operations
   216   def(Stacktrace_lock              , Mutex,   special,     true ); // used for JFR stacktrace database
   217   def(JmethodIdCreation_lock       , Mutex  , leaf,        true ); // used for creating jmethodIDs.
   219   def(SystemDictionary_lock        , Monitor, leaf,        true ); // lookups done by VM thread
   220   def(PackageTable_lock            , Mutex  , leaf,        false);
   221   def(InlineCacheBuffer_lock       , Mutex  , leaf,        true );
   222   def(VMStatistic_lock             , Mutex  , leaf,        false);
   223   def(ExpandHeap_lock              , Mutex  , leaf,        true ); // Used during compilation by VM thread
   224   def(JNIHandleBlockFreeList_lock  , Mutex  , leaf,        true ); // handles are used by VM thread
   225   def(SignatureHandlerLibrary_lock , Mutex  , leaf,        false);
   226   def(SymbolTable_lock             , Mutex  , leaf,        true );
   227   def(StringTable_lock             , Mutex  , leaf,        true );
   228   def(ProfilePrint_lock            , Mutex  , leaf,        false); // serial profile printing
   229   def(ExceptionCache_lock          , Mutex  , leaf,        false); // serial profile printing
   230   def(OsrList_lock                 , Mutex  , leaf,        true );
   231   def(Debug1_lock                  , Mutex  , leaf,        true );
   232 #ifndef PRODUCT
   233   def(FullGCALot_lock              , Mutex  , leaf,        false); // a lock to make FullGCALot MT safe
   234 #endif
   235   def(BeforeExit_lock              , Monitor, leaf,        true );
   236   def(PerfDataMemAlloc_lock        , Mutex  , leaf,        true ); // used for allocating PerfData memory for performance data
   237   def(PerfDataManager_lock         , Mutex  , leaf,        true ); // used for synchronized access to PerfDataManager resources
   239   // CMS_modUnionTable_lock                   leaf
   240   // CMS_bitMap_lock                          leaf + 1
   241   // CMS_freeList_lock                        leaf + 2
   243   def(Safepoint_lock               , Monitor, safepoint,   true ); // locks SnippetCache_lock/Threads_lock
   245   def(Threads_lock                 , Monitor, barrier,     true );
   247   def(VMOperationQueue_lock        , Monitor, nonleaf,     true ); // VM_thread allowed to block on these
   248   def(VMOperationRequest_lock      , Monitor, nonleaf,     true );
   249   def(RetData_lock                 , Mutex  , nonleaf,     false);
   250   def(Terminator_lock              , Monitor, nonleaf,     true );
   251   def(VtableStubs_lock             , Mutex  , nonleaf,     true );
   252   def(Notify_lock                  , Monitor, nonleaf,     true );
   253   def(JNIGlobalHandle_lock         , Mutex  , nonleaf,     true ); // locks JNIHandleBlockFreeList_lock
   254   def(JNICritical_lock             , Monitor, nonleaf,     true ); // used for JNI critical regions
   255   def(AdapterHandlerLibrary_lock   , Mutex  , nonleaf,     true);
   256   if (UseConcMarkSweepGC) {
   257     def(SLT_lock                   , Monitor, nonleaf,     false );
   258                     // used in CMS GC for locking PLL lock
   259   }
   260   def(Heap_lock                    , Monitor, nonleaf+1,   false);
   261   def(JfieldIdCreation_lock        , Mutex  , nonleaf+1,   true ); // jfieldID, Used in VM_Operation
   262   def(JNICachedItableIndex_lock    , Mutex  , nonleaf+1,   false); // Used to cache an itable index during JNI invoke
   264   def(CompiledIC_lock              , Mutex  , nonleaf+2,   false); // locks VtableStubs_lock, InlineCacheBuffer_lock
   265   def(CompileTaskAlloc_lock        , Mutex  , nonleaf+2,   true );
   266   def(CompileStatistics_lock       , Mutex  , nonleaf+2,   false);
   267   def(MultiArray_lock              , Mutex  , nonleaf+2,   false); // locks SymbolTable_lock
   269   def(JvmtiThreadState_lock        , Mutex  , nonleaf+2,   false); // Used by JvmtiThreadState/JvmtiEventController
   270   def(JvmtiPendingEvent_lock       , Monitor, nonleaf,     false); // Used by JvmtiCodeBlobEvents
   271   def(Management_lock              , Mutex  , nonleaf+2,   false); // used for JVM management
   273   def(Compile_lock                 , Mutex  , nonleaf+3,   true );
   274   def(MethodData_lock              , Mutex  , nonleaf+3,   false);
   276   def(MethodCompileQueue_lock      , Monitor, nonleaf+4,   true );
   277   def(Debug2_lock                  , Mutex  , nonleaf+4,   true );
   278   def(Debug3_lock                  , Mutex  , nonleaf+4,   true );
   279   def(ProfileVM_lock               , Monitor, nonleaf+4,   false); // used for profiling of the VMThread
   280   def(CompileThread_lock           , Monitor, nonleaf+5,   false );
   282   def(JfrQuery_lock                , Monitor, nonleaf,     true);  // JFR locks, keep these in consecutive order
   283   def(JfrMsg_lock                  , Monitor, nonleaf+2,   true);
   284   def(JfrBuffer_lock               , Mutex,   nonleaf+3,   true);
   285   def(JfrStream_lock               , Mutex,   nonleaf+4,   true);
   286 }
   288 GCMutexLocker::GCMutexLocker(Monitor * mutex) {
   289   if (SafepointSynchronize::is_at_safepoint()) {
   290     _locked = false;
   291   } else {
   292     _mutex = mutex;
   293     _locked = true;
   294     _mutex->lock();
   295   }
   296 }
   298 // Print all mutexes/monitors that are currently owned by a thread; called
   299 // by fatal error handler.
   300 void print_owned_locks_on_error(outputStream* st) {
   301   st->print("VM Mutex/Monitor currently owned by a thread: ");
   302   bool none = true;
   303   for (int i = 0; i < _num_mutex; i++) {
   304      // see if it has an owner
   305      if (_mutex_array[i]->owner() != NULL) {
   306        if (none) {
   307           // print format used by Mutex::print_on_error()
   308           st->print_cr(" ([mutex/lock_event])");
   309           none = false;
   310        }
   311        _mutex_array[i]->print_on_error(st);
   312        st->cr();
   313      }
   314   }
   315   if (none) st->print_cr("None");
   316 }

mercurial