author | duke |
Wed, 05 Jul 2017 20:35:22 +0200 | |
changeset 30736 | ff3fc75f3214 |
parent 30244 | d4e471395ff5 |
child 31856 | 614d6786ba55 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
28621
37cc414b6491
8054494: Remove sun.misc.Unsafe.monitorEnter, monitorExit and tryMonitorEnter
psandoz
parents:
27680
diff
changeset
|
2 |
* Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_SYNCHRONIZER_HPP |
26 |
#define SHARE_VM_RUNTIME_SYNCHRONIZER_HPP |
|
27 |
||
28 |
#include "oops/markOop.hpp" |
|
29 |
#include "runtime/basicLock.hpp" |
|
30 |
#include "runtime/handles.hpp" |
|
31 |
#include "runtime/perfData.hpp" |
|
32 |
#include "utilities/top.hpp" |
|
33 |
||
1 | 34 |
|
35 |
class ObjectMonitor; |
|
36 |
||
37 |
class ObjectSynchronizer : AllStatic { |
|
38 |
friend class VMStructs; |
|
39 |
public: |
|
40 |
typedef enum { |
|
41 |
owner_self, |
|
42 |
owner_none, |
|
43 |
owner_other |
|
44 |
} LockOwnership; |
|
45 |
// exit must be implemented non-blocking, since the compiler cannot easily handle |
|
46 |
// deoptimization at monitor exit. Hence, it does not take a Handle argument. |
|
47 |
||
48 |
// This is full version of monitor enter and exit. I choose not |
|
49 |
// to use enter() and exit() in order to make sure user be ware |
|
50 |
// of the performance and semantics difference. They are normally |
|
51 |
// used by ObjectLocker etc. The interpreter and compiler use |
|
22551 | 52 |
// assembly copies of these routines. Please keep them synchronized. |
1 | 53 |
// |
54 |
// 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
|
55 |
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
|
56 |
TRAPS); |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
57 |
static void fast_exit(oop obj, BasicLock* lock, Thread* THREAD); |
1 | 58 |
|
59 |
// WARNING: They are ONLY used to handle the slow cases. They should |
|
60 |
// only be used when the fast cases failed. Use of these functions |
|
61 |
// 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
|
62 |
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
|
63 |
static void slow_exit(oop obj, BasicLock* lock, Thread* THREAD); |
1 | 64 |
|
65 |
// Used only to handle jni locks or other unmatched monitor enter/exit |
|
66 |
// 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
|
67 |
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
|
68 |
static void jni_exit(oop obj, Thread* THREAD); |
1 | 69 |
|
70 |
// 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
|
71 |
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
|
72 |
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
|
73 |
static void notifyall(Handle obj, TRAPS); |
1 | 74 |
|
29070 | 75 |
static bool quick_enter(oop obj, Thread* Self, BasicLock* Lock); |
76 |
||
1 | 77 |
// Special internal-use-only method for use by JVM infrastructure |
78 |
// that needs to wait() on a java-level object but that can't risk |
|
79 |
// throwing unexpected InterruptedExecutionExceptions. |
|
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22743
diff
changeset
|
80 |
static void waitUninterruptibly(Handle obj, jlong Millis, Thread * THREAD); |
1 | 81 |
|
82 |
// used by classloading to free classloader object lock, |
|
83 |
// wait on an internal lock, and reclaim original lock |
|
84 |
// 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
|
85 |
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
|
86 |
static void reenter (Handle obj, intptr_t recursion, TRAPS); |
1 | 87 |
|
88 |
// 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
|
89 |
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
|
90 |
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
|
91 |
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
|
92 |
bool FromPerThreadAlloc); |
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22743
diff
changeset
|
93 |
static void omFlush(Thread * Self); |
1 | 94 |
|
95 |
// Inflate light weight monitor to heavy weight monitor |
|
96 |
static ObjectMonitor* inflate(Thread * Self, oop obj); |
|
97 |
// This version is only for internal use |
|
98 |
static ObjectMonitor* inflate_helper(oop obj); |
|
99 |
||
100 |
// Returns the identity hash value for an oop |
|
101 |
// NOTE: It may cause monitor inflation |
|
102 |
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
|
103 |
static intptr_t FastHashCode(Thread * Self, oop obj); |
1 | 104 |
|
105 |
// java.lang.Thread support |
|
106 |
static bool current_thread_holds_lock(JavaThread* thread, Handle h_obj); |
|
107 |
static LockOwnership query_lock_ownership(JavaThread * self, Handle h_obj); |
|
108 |
||
109 |
static JavaThread* get_lock_owner(Handle h_obj, bool doLock); |
|
110 |
||
111 |
// JNI detach support |
|
112 |
static void release_monitors_owned_by_thread(TRAPS); |
|
113 |
static void monitors_iterate(MonitorClosure* m); |
|
114 |
||
115 |
// GC: we current use aggressive monitor deflation policy |
|
116 |
// Basically we deflate all monitors that are not busy. |
|
117 |
// An adaptive profile-based deflation policy could be used if needed |
|
118 |
static void deflate_idle_monitors(); |
|
30244 | 119 |
// For a given monitor list: global or per-thread, deflate idle monitors |
120 |
static int deflate_monitor_list(ObjectMonitor** listheadp, |
|
121 |
ObjectMonitor** freeHeadp, |
|
122 |
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
|
123 |
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
|
124 |
ObjectMonitor** freeHeadp, |
25472
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25069
diff
changeset
|
125 |
ObjectMonitor** freeTailp); |
1 | 126 |
static void oops_do(OopClosure* f); |
127 |
||
128 |
// debugging |
|
25633
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25472
diff
changeset
|
129 |
static void sanity_checks(const bool verbose, |
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25472
diff
changeset
|
130 |
const unsigned int cache_line_size, |
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25472
diff
changeset
|
131 |
int *error_cnt_ptr, int *warning_cnt_ptr); |
1 | 132 |
static void verify() PRODUCT_RETURN; |
133 |
static int verify_objmon_isinpool(ObjectMonitor *addr) PRODUCT_RETURN0; |
|
134 |
||
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22743
diff
changeset
|
135 |
static void RegisterSpinCallback(int(*)(intptr_t, int), intptr_t); |
6975 | 136 |
|
1 | 137 |
private: |
138 |
enum { _BLOCKSIZE = 128 }; |
|
30244 | 139 |
// global list of blocks of monitors |
27165
785a8d56024c
8049737: Contended Locking reorder and cache line bucket
dcubed
parents:
26684
diff
changeset
|
140 |
// gBlockList is really PaddedEnd<ObjectMonitor> *, but we don't |
785a8d56024c
8049737: Contended Locking reorder and cache line bucket
dcubed
parents:
26684
diff
changeset
|
141 |
// want to expose the PaddedEnd template more than necessary. |
30244 | 142 |
static ObjectMonitor * gBlockList; |
143 |
// global monitor free list |
|
1 | 144 |
static ObjectMonitor * volatile gFreeList; |
30244 | 145 |
// 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
|
146 |
// 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
|
147 |
static ObjectMonitor * volatile gOmInUseList; |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25069
diff
changeset
|
148 |
// count of entries in gOmInUseList |
5920
8fdbb85e62d3
6964164: MonitorInUseLists leak of contended objects
acorn
parents:
5712
diff
changeset
|
149 |
static int gOmInUseCount; |
1 | 150 |
}; |
151 |
||
152 |
// ObjectLocker enforced balanced locking and can never thrown an |
|
153 |
// IllegalMonitorStateException. However, a pending exception may |
|
154 |
// have to pass through, and we must also be able to deal with |
|
155 |
// asynchronous exceptions. The caller is responsible for checking |
|
156 |
// the threads pending exception if needed. |
|
157 |
// doLock was added to support classloading with UnsyncloadClass which |
|
158 |
// requires flag based choice of locking the classloader lock. |
|
159 |
class ObjectLocker : public StackObj { |
|
160 |
private: |
|
161 |
Thread* _thread; |
|
162 |
Handle _obj; |
|
163 |
BasicLock _lock; |
|
164 |
bool _dolock; // default true |
|
165 |
public: |
|
166 |
ObjectLocker(Handle obj, Thread* thread, bool doLock = true); |
|
167 |
~ObjectLocker(); |
|
168 |
||
169 |
// 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
|
170 |
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
|
171 |
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
|
172 |
void waitUninterruptibly(TRAPS) { ObjectSynchronizer::waitUninterruptibly(_obj, 0, CHECK); } |
1 | 173 |
// complete_exit gives up lock completely, returning recursion count |
174 |
// reenter reclaims lock with original recursion count |
|
27680
8ecc0871c18e
8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents:
27165
diff
changeset
|
175 |
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
|
176 |
void reenter(intptr_t recursion, TRAPS) { ObjectSynchronizer::reenter(_obj, recursion, CHECK); } |
1 | 177 |
}; |
7397 | 178 |
|
179 |
#endif // SHARE_VM_RUNTIME_SYNCHRONIZER_HPP |