hotspot/src/share/vm/runtime/synchronizer.hpp
author kzhaldyb
Wed, 21 Dec 2016 12:47:29 +0300
changeset 46342 c871e0f8b02a
parent 39702 ea7e9375bb93
child 46474 c872a196b75f
permissions -rw-r--r--
8171848: ObjectMonitor verify() and print() methods are empty Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
39702
ea7e9375bb93 8068592: Remove unused code in objectMonitor.hpp
dcubed
parents: 37466
diff changeset
     2
 * Copyright (c) 1998, 2016, 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_SYNCHRONIZER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    26
#define SHARE_VM_RUNTIME_SYNCHRONIZER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    28
#include "oops/markOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    29
#include "runtime/basicLock.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    30
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    31
#include "runtime/perfData.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class ObjectMonitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class ObjectSynchronizer : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  typedef enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    owner_self,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    owner_none,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    owner_other
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  } LockOwnership;
35934
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    43
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    44
  typedef enum {
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    45
    inflate_cause_vm_internal = 0,
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    46
    inflate_cause_monitor_enter = 1,
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    47
    inflate_cause_wait = 2,
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    48
    inflate_cause_notify = 3,
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    49
    inflate_cause_hash_code = 4,
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    50
    inflate_cause_jni_enter = 5,
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    51
    inflate_cause_jni_exit = 6,
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    52
    inflate_cause_nof = 7 // Number of causes
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    53
  } InflateCause;
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
    54
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // exit must be implemented non-blocking, since the compiler cannot easily handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // deoptimization at monitor exit. Hence, it does not take a Handle argument.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // This is full version of monitor enter and exit. I choose not
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // to use enter() and exit() in order to make sure user be ware
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // of the performance and semantics difference. They are normally
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // used by ObjectLocker etc. The interpreter and compiler use
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
    62
  // assembly copies of these routines. Please keep them synchronized.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // attempt_rebias flag is used by UseBiasedLocking implementation
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    65
  static void fast_enter(Handle obj, BasicLock* lock, bool attempt_rebias,
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    66
                         TRAPS);
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    67
  static void fast_exit(oop obj, BasicLock* lock, Thread* THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // WARNING: They are ONLY used to handle the slow cases. They should
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // only be used when the fast cases failed. Use of these functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // without previous fast case check may cause fatal error.
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    72
  static void slow_enter(Handle obj, BasicLock* lock, TRAPS);
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    73
  static void slow_exit(oop obj, BasicLock* lock, Thread* THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // Used only to handle jni locks or other unmatched monitor enter/exit
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Internally they will use heavy weight monitor.
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    77
  static void jni_enter(Handle obj, TRAPS);
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    78
  static void jni_exit(oop obj, Thread* THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Handle all interpreter, compiler and jni cases
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    81
  static int  wait(Handle obj, jlong millis, TRAPS);
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    82
  static void notify(Handle obj, TRAPS);
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    83
  static void notifyall(Handle obj, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 30244
diff changeset
    85
  static bool quick_notify(oopDesc* obj, Thread* Self, bool All);
29070
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28621
diff changeset
    86
  static bool quick_enter(oop obj, Thread* Self, BasicLock* Lock);
b0a5fc9c59c8 8061553: Contended Locking fast enter bucket
dcubed
parents: 28621
diff changeset
    87
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Special internal-use-only method for use by JVM infrastructure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // that needs to wait() on a java-level object but that can't risk
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // throwing unexpected InterruptedExecutionExceptions.
25069
c937c5e883c5 8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 22743
diff changeset
    91
  static void waitUninterruptibly(Handle obj, jlong Millis, Thread * THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // used by classloading to free classloader object lock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // wait on an internal lock, and reclaim original lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // with original recursion count
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    96
  static intptr_t complete_exit(Handle obj, TRAPS);
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    97
  static void reenter (Handle obj, intptr_t recursion, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // thread-specific and global objectMonitor free list accessors
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25069
diff changeset
   100
  static void verifyInUse(Thread * Self);
25069
c937c5e883c5 8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 22743
diff changeset
   101
  static ObjectMonitor * omAlloc(Thread * Self);
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   102
  static void omRelease(Thread * Self, ObjectMonitor * m,
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   103
                        bool FromPerThreadAlloc);
25069
c937c5e883c5 8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 22743
diff changeset
   104
  static void omFlush(Thread * Self);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Inflate light weight monitor to heavy weight monitor
35934
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
   107
  static ObjectMonitor* inflate(Thread * Self, oop obj, const InflateCause cause);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // This version is only for internal use
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  static ObjectMonitor* inflate_helper(oop obj);
35934
76dbe86f3d82 8138562: Event based tracing should cover monitor inflation
dsimms
parents: 33595
diff changeset
   110
  static const char* inflate_cause_name(const InflateCause cause);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Returns the identity hash value for an oop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // NOTE: It may cause monitor inflation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static intptr_t identity_hash_value_for(Handle obj);
25069
c937c5e883c5 8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 22743
diff changeset
   115
  static intptr_t FastHashCode(Thread * Self, oop obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // java.lang.Thread support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static bool current_thread_holds_lock(JavaThread* thread, Handle h_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  static LockOwnership query_lock_ownership(JavaThread * self, Handle h_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  static JavaThread* get_lock_owner(Handle h_obj, bool doLock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // JNI detach support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  static void release_monitors_owned_by_thread(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  static void monitors_iterate(MonitorClosure* m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // GC: we current use aggressive monitor deflation policy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Basically we deflate all monitors that are not busy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // An adaptive profile-based deflation policy could be used if needed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  static void deflate_idle_monitors();
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29070
diff changeset
   131
  // For a given monitor list: global or per-thread, deflate idle monitors
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29070
diff changeset
   132
  static int deflate_monitor_list(ObjectMonitor** listheadp,
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29070
diff changeset
   133
                                  ObjectMonitor** freeHeadp,
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29070
diff changeset
   134
                                  ObjectMonitor** freeTailp);
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   135
  static bool deflate_monitor(ObjectMonitor* mid, oop obj,
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   136
                              ObjectMonitor** freeHeadp,
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25069
diff changeset
   137
                              ObjectMonitor** freeTailp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  static void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // debugging
25633
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25472
diff changeset
   141
  static void sanity_checks(const bool verbose,
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25472
diff changeset
   142
                            const unsigned int cache_line_size,
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25472
diff changeset
   143
                            int *error_cnt_ptr, int *warning_cnt_ptr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  static int  verify_objmon_isinpool(ObjectMonitor *addr) PRODUCT_RETURN0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  enum { _BLOCKSIZE = 128 };
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29070
diff changeset
   148
  // global list of blocks of monitors
27165
785a8d56024c 8049737: Contended Locking reorder and cache line bucket
dcubed
parents: 26684
diff changeset
   149
  // gBlockList is really PaddedEnd<ObjectMonitor> *, but we don't
785a8d56024c 8049737: Contended Locking reorder and cache line bucket
dcubed
parents: 26684
diff changeset
   150
  // want to expose the PaddedEnd template more than necessary.
33595
5830c3ae532d 8047212: runtime/ParallelClassLoading/bootstrap/random/inner-complex assert(ObjectSynchronizer::verify_objmon_isinpool(inf)) failed: monitor is invalid
dcubed
parents: 31856
diff changeset
   151
  static ObjectMonitor * volatile gBlockList;
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29070
diff changeset
   152
  // global monitor free list
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  static ObjectMonitor * volatile gFreeList;
30244
d4e471395ff5 8073165: Contended Locking fast exit bucket
dcubed
parents: 29070
diff changeset
   154
  // global monitor in-use list, for moribund threads,
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25069
diff changeset
   155
  // monitors they inflated need to be scanned for deflation
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25069
diff changeset
   156
  static ObjectMonitor * volatile gOmInUseList;
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25069
diff changeset
   157
  // count of entries in gOmInUseList
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
   158
  static int gOmInUseCount;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
// ObjectLocker enforced balanced locking and can never thrown an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
// IllegalMonitorStateException. However, a pending exception may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// have to pass through, and we must also be able to deal with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// asynchronous exceptions. The caller is responsible for checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// the threads pending exception if needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// doLock was added to support classloading with UnsyncloadClass which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// requires flag based choice of locking the classloader lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
class ObjectLocker : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  Thread*   _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  Handle    _obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  BasicLock _lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  bool      _dolock;   // default true
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  ObjectLocker(Handle obj, Thread* thread, bool doLock = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  ~ObjectLocker();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Monitor behavior
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   179
  void wait(TRAPS)  { ObjectSynchronizer::wait(_obj, 0, CHECK); } // wait forever
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   180
  void notify_all(TRAPS)  { ObjectSynchronizer::notifyall(_obj, CHECK); }
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   181
  void waitUninterruptibly(TRAPS) { ObjectSynchronizer::waitUninterruptibly(_obj, 0, CHECK); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // complete_exit gives up lock completely, returning recursion count
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // reenter reclaims lock with original recursion count
27680
8ecc0871c18e 8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents: 27165
diff changeset
   184
  intptr_t complete_exit(TRAPS)  { return ObjectSynchronizer::complete_exit(_obj, THREAD); }
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   185
  void reenter(intptr_t recursion, TRAPS)  { ObjectSynchronizer::reenter(_obj, recursion, CHECK); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
   187
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
   188
#endif // SHARE_VM_RUNTIME_SYNCHRONIZER_HPP