hotspot/src/share/vm/runtime/synchronizer.hpp
author acorn
Fri, 22 Oct 2010 15:59:34 -0400
changeset 6975 dc9b63952682
parent 5920 8fdbb85e62d3
child 7397 5b173b4ca846
permissions -rw-r--r--
6988353: refactor contended sync subsystem Summary: reduce complexity by factoring synchronizer.cpp Reviewed-by: dholmes, never, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
     2
 * Copyright (c) 1998, 2007, Oracle and/or its affiliates. All rights reserved.
1
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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class ObjectMonitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class ObjectSynchronizer : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  typedef enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
    owner_self,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    owner_none,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    owner_other
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  } LockOwnership;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // exit must be implemented non-blocking, since the compiler cannot easily handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // deoptimization at monitor exit. Hence, it does not take a Handle argument.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // This is full version of monitor enter and exit. I choose not
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // to use enter() and exit() in order to make sure user be ware
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // of the performance and semantics difference. They are normally
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // used by ObjectLocker etc. The interpreter and compiler use
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // assembly copies of these routines. Please keep them synchornized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // attempt_rebias flag is used by UseBiasedLocking implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static void fast_enter  (Handle obj, BasicLock* lock, bool attempt_rebias, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static void fast_exit   (oop obj,    BasicLock* lock, Thread* THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // WARNING: They are ONLY used to handle the slow cases. They should
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // only be used when the fast cases failed. Use of these functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // without previous fast case check may cause fatal error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static void slow_enter  (Handle obj, BasicLock* lock, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static void slow_exit   (oop obj,    BasicLock* lock, Thread* THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Used only to handle jni locks or other unmatched monitor enter/exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // Internally they will use heavy weight monitor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static void jni_enter   (Handle obj, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static bool jni_try_enter(Handle obj, Thread* THREAD); // Implements Unsafe.tryMonitorEnter
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static void jni_exit    (oop obj,    Thread* THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Handle all interpreter, compiler and jni cases
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static void wait               (Handle obj, jlong millis, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  static void notify             (Handle obj,               TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  static void notifyall          (Handle obj,               TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Special internal-use-only method for use by JVM infrastructure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // that needs to wait() on a java-level object but that can't risk
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // throwing unexpected InterruptedExecutionExceptions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static void waitUninterruptibly (Handle obj, jlong Millis, Thread * THREAD) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // used by classloading to free classloader object lock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // wait on an internal lock, and reclaim original lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // with original recursion count
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static intptr_t complete_exit  (Handle obj,                TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  static void reenter            (Handle obj, intptr_t recursion, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // thread-specific and global objectMonitor free list accessors
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
    78
//  static void verifyInUse (Thread * Self) ; too slow for general assert/debug
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static ObjectMonitor * omAlloc (Thread * Self) ;
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
    80
  static void omRelease (Thread * Self, ObjectMonitor * m, bool FromPerThreadAlloc) ;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  static void omFlush   (Thread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Inflate light weight monitor to heavy weight monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static ObjectMonitor* inflate(Thread * Self, oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // This version is only for internal use
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static ObjectMonitor* inflate_helper(oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Returns the identity hash value for an oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // NOTE: It may cause monitor inflation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static intptr_t identity_hash_value_for(Handle obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static intptr_t FastHashCode (Thread * Self, oop obj) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // java.lang.Thread support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static bool current_thread_holds_lock(JavaThread* thread, Handle h_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static LockOwnership query_lock_ownership(JavaThread * self, Handle h_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static JavaThread* get_lock_owner(Handle h_obj, bool doLock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // JNI detach support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static void release_monitors_owned_by_thread(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static void monitors_iterate(MonitorClosure* m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // GC: we current use aggressive monitor deflation policy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // Basically we deflate all monitors that are not busy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // An adaptive profile-based deflation policy could be used if needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static void deflate_idle_monitors();
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
   107
  static int walk_monitor_list(ObjectMonitor** listheadp,
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
   108
                               ObjectMonitor** FreeHeadp,
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
   109
                               ObjectMonitor** FreeTailp);
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 1
diff changeset
   110
  static bool deflate_monitor(ObjectMonitor* mid, oop obj, ObjectMonitor** FreeHeadp,
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 1
diff changeset
   111
                              ObjectMonitor** FreeTailp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  static void trace_locking(Handle obj, bool is_compiled, bool is_method, bool is_locking) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static void verify() PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static int  verify_objmon_isinpool(ObjectMonitor *addr) PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   119
  static void RegisterSpinCallback (int (*)(intptr_t, int), intptr_t) ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   120
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  enum { _BLOCKSIZE = 128 };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static ObjectMonitor* gBlockList;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  static ObjectMonitor * volatile gFreeList;
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
   125
  static ObjectMonitor * volatile gOmInUseList; // for moribund thread, so monitors they inflated still get scanned
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
   126
  static int gOmInUseCount;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// ObjectLocker enforced balanced locking and can never thrown an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// IllegalMonitorStateException. However, a pending exception may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// have to pass through, and we must also be able to deal with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// asynchronous exceptions. The caller is responsible for checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// the threads pending exception if needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
// doLock was added to support classloading with UnsyncloadClass which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
// requires flag based choice of locking the classloader lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
class ObjectLocker : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  Thread*   _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  Handle    _obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  BasicLock _lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  bool      _dolock;   // default true
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  ObjectLocker(Handle obj, Thread* thread, bool doLock = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  ~ObjectLocker();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Monitor behavior
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  void wait      (TRAPS)      { ObjectSynchronizer::wait     (_obj, 0, CHECK); } // wait forever
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  void notify_all(TRAPS)      { ObjectSynchronizer::notifyall(_obj,    CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  void waitUninterruptibly (TRAPS) { ObjectSynchronizer::waitUninterruptibly (_obj, 0, CHECK);}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // complete_exit gives up lock completely, returning recursion count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // reenter reclaims lock with original recursion count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  intptr_t complete_exit(TRAPS) { return  ObjectSynchronizer::complete_exit(_obj, CHECK_0); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void reenter(intptr_t recursion, TRAPS) { ObjectSynchronizer::reenter(_obj, recursion, CHECK); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
};