author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46702 | hotspot/src/share/vm/runtime/synchronizer.hpp@13ae789b982e |
child 47634 | 6a0c42c40cd1 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46541
d20828de9e39
8181859: Monitor deflation is not checked in cleanup path
rehn
parents:
46474
diff
changeset
|
2 |
* Copyright (c) 1998, 2017, 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" |
|
1 | 32 |
|
33 |
class ObjectMonitor; |
|
34 |
||
46702 | 35 |
struct DeflateMonitorCounters { |
36 |
int nInuse; // currently associated with objects |
|
37 |
int nInCirculation; // extant |
|
38 |
int nScavenged; // reclaimed |
|
39 |
}; |
|
40 |
||
1 | 41 |
class ObjectSynchronizer : AllStatic { |
42 |
friend class VMStructs; |
|
43 |
public: |
|
44 |
typedef enum { |
|
45 |
owner_self, |
|
46 |
owner_none, |
|
47 |
owner_other |
|
48 |
} LockOwnership; |
|
35934
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
49 |
|
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
50 |
typedef enum { |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
51 |
inflate_cause_vm_internal = 0, |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
52 |
inflate_cause_monitor_enter = 1, |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
53 |
inflate_cause_wait = 2, |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
54 |
inflate_cause_notify = 3, |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
55 |
inflate_cause_hash_code = 4, |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
56 |
inflate_cause_jni_enter = 5, |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
57 |
inflate_cause_jni_exit = 6, |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
58 |
inflate_cause_nof = 7 // Number of causes |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
59 |
} InflateCause; |
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
60 |
|
1 | 61 |
// exit must be implemented non-blocking, since the compiler cannot easily handle |
62 |
// deoptimization at monitor exit. Hence, it does not take a Handle argument. |
|
63 |
||
64 |
// This is full version of monitor enter and exit. I choose not |
|
65 |
// to use enter() and exit() in order to make sure user be ware |
|
66 |
// of the performance and semantics difference. They are normally |
|
67 |
// used by ObjectLocker etc. The interpreter and compiler use |
|
22551 | 68 |
// assembly copies of these routines. Please keep them synchronized. |
1 | 69 |
// |
70 |
// 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
|
71 |
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
|
72 |
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 fast_exit(oop obj, BasicLock* lock, Thread* THREAD); |
1 | 74 |
|
75 |
// WARNING: They are ONLY used to handle the slow cases. They should |
|
76 |
// only be used when the fast cases failed. Use of these functions |
|
77 |
// 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
|
78 |
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
|
79 |
static void slow_exit(oop obj, BasicLock* lock, Thread* THREAD); |
1 | 80 |
|
81 |
// Used only to handle jni locks or other unmatched monitor enter/exit |
|
82 |
// 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
|
83 |
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
|
84 |
static void jni_exit(oop obj, Thread* THREAD); |
1 | 85 |
|
86 |
// 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
|
87 |
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
|
88 |
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
|
89 |
static void notifyall(Handle obj, TRAPS); |
1 | 90 |
|
31856 | 91 |
static bool quick_notify(oopDesc* obj, Thread* Self, bool All); |
29070 | 92 |
static bool quick_enter(oop obj, Thread* Self, BasicLock* Lock); |
93 |
||
1 | 94 |
// Special internal-use-only method for use by JVM infrastructure |
95 |
// that needs to wait() on a java-level object but that can't risk |
|
96 |
// throwing unexpected InterruptedExecutionExceptions. |
|
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22743
diff
changeset
|
97 |
static void waitUninterruptibly(Handle obj, jlong Millis, Thread * THREAD); |
1 | 98 |
|
99 |
// used by classloading to free classloader object lock, |
|
100 |
// wait on an internal lock, and reclaim original lock |
|
101 |
// 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
|
102 |
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
|
103 |
static void reenter (Handle obj, intptr_t recursion, TRAPS); |
1 | 104 |
|
105 |
// 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
|
106 |
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
|
107 |
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
|
108 |
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
|
109 |
bool FromPerThreadAlloc); |
25069
c937c5e883c5
8047156: cleanup more non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22743
diff
changeset
|
110 |
static void omFlush(Thread * Self); |
1 | 111 |
|
112 |
// Inflate light weight monitor to heavy weight monitor |
|
35934
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
113 |
static ObjectMonitor* inflate(Thread * Self, oop obj, const InflateCause cause); |
1 | 114 |
// This version is only for internal use |
115 |
static ObjectMonitor* inflate_helper(oop obj); |
|
35934
76dbe86f3d82
8138562: Event based tracing should cover monitor inflation
dsimms
parents:
33595
diff
changeset
|
116 |
static const char* inflate_cause_name(const InflateCause cause); |
1 | 117 |
|
118 |
// Returns the identity hash value for an oop |
|
119 |
// NOTE: It may cause monitor inflation |
|
120 |
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
|
121 |
static intptr_t FastHashCode(Thread * Self, oop obj); |
1 | 122 |
|
123 |
// java.lang.Thread support |
|
124 |
static bool current_thread_holds_lock(JavaThread* thread, Handle h_obj); |
|
125 |
static LockOwnership query_lock_ownership(JavaThread * self, Handle h_obj); |
|
126 |
||
127 |
static JavaThread* get_lock_owner(Handle h_obj, bool doLock); |
|
128 |
||
129 |
// JNI detach support |
|
130 |
static void release_monitors_owned_by_thread(TRAPS); |
|
131 |
static void monitors_iterate(MonitorClosure* m); |
|
132 |
||
133 |
// GC: we current use aggressive monitor deflation policy |
|
134 |
// Basically we deflate all monitors that are not busy. |
|
135 |
// An adaptive profile-based deflation policy could be used if needed |
|
46702 | 136 |
static void deflate_idle_monitors(DeflateMonitorCounters* counters); |
137 |
static void deflate_thread_local_monitors(Thread* thread, DeflateMonitorCounters* counters); |
|
138 |
static void prepare_deflate_idle_monitors(DeflateMonitorCounters* counters); |
|
139 |
static void finish_deflate_idle_monitors(DeflateMonitorCounters* counters); |
|
140 |
||
30244 | 141 |
// For a given monitor list: global or per-thread, deflate idle monitors |
142 |
static int deflate_monitor_list(ObjectMonitor** listheadp, |
|
143 |
ObjectMonitor** freeHeadp, |
|
144 |
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
|
145 |
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
|
146 |
ObjectMonitor** freeHeadp, |
25472
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25069
diff
changeset
|
147 |
ObjectMonitor** freeTailp); |
46541
d20828de9e39
8181859: Monitor deflation is not checked in cleanup path
rehn
parents:
46474
diff
changeset
|
148 |
static bool is_cleanup_needed(); |
1 | 149 |
static void oops_do(OopClosure* f); |
46474
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
150 |
// Process oops in thread local used monitors |
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
151 |
static void thread_local_used_oops_do(Thread* thread, OopClosure* f); |
1 | 152 |
|
153 |
// debugging |
|
25633
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25472
diff
changeset
|
154 |
static void sanity_checks(const bool verbose, |
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25472
diff
changeset
|
155 |
const unsigned int cache_line_size, |
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25472
diff
changeset
|
156 |
int *error_cnt_ptr, int *warning_cnt_ptr); |
1 | 157 |
static int verify_objmon_isinpool(ObjectMonitor *addr) PRODUCT_RETURN0; |
158 |
||
159 |
private: |
|
160 |
enum { _BLOCKSIZE = 128 }; |
|
30244 | 161 |
// global list of blocks of monitors |
27165
785a8d56024c
8049737: Contended Locking reorder and cache line bucket
dcubed
parents:
26684
diff
changeset
|
162 |
// gBlockList is really PaddedEnd<ObjectMonitor> *, but we don't |
785a8d56024c
8049737: Contended Locking reorder and cache line bucket
dcubed
parents:
26684
diff
changeset
|
163 |
// 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
|
164 |
static ObjectMonitor * volatile gBlockList; |
30244 | 165 |
// global monitor free list |
1 | 166 |
static ObjectMonitor * volatile gFreeList; |
30244 | 167 |
// 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
|
168 |
// 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
|
169 |
static ObjectMonitor * volatile gOmInUseList; |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25069
diff
changeset
|
170 |
// count of entries in gOmInUseList |
5920
8fdbb85e62d3
6964164: MonitorInUseLists leak of contended objects
acorn
parents:
5712
diff
changeset
|
171 |
static int gOmInUseCount; |
46474
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
172 |
|
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
173 |
// Process oops in all monitors |
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
174 |
static void global_oops_do(OopClosure* f); |
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
175 |
// Process oops in all global used monitors (i.e. moribund thread's monitors) |
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
176 |
static void global_used_oops_do(OopClosure* f); |
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
177 |
// Process oops in monitors on the given list |
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
178 |
static void list_oops_do(ObjectMonitor* list, OopClosure* f); |
c872a196b75f
8180175: ObjectSynchronizer only needs to iterate in-use monitors
rkennke
parents:
46342
diff
changeset
|
179 |
|
1 | 180 |
}; |
181 |
||
182 |
// ObjectLocker enforced balanced locking and can never thrown an |
|
183 |
// IllegalMonitorStateException. However, a pending exception may |
|
184 |
// have to pass through, and we must also be able to deal with |
|
185 |
// asynchronous exceptions. The caller is responsible for checking |
|
186 |
// the threads pending exception if needed. |
|
187 |
// doLock was added to support classloading with UnsyncloadClass which |
|
188 |
// requires flag based choice of locking the classloader lock. |
|
189 |
class ObjectLocker : public StackObj { |
|
190 |
private: |
|
191 |
Thread* _thread; |
|
192 |
Handle _obj; |
|
193 |
BasicLock _lock; |
|
194 |
bool _dolock; // default true |
|
195 |
public: |
|
196 |
ObjectLocker(Handle obj, Thread* thread, bool doLock = true); |
|
197 |
~ObjectLocker(); |
|
198 |
||
199 |
// 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
|
200 |
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
|
201 |
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
|
202 |
void waitUninterruptibly(TRAPS) { ObjectSynchronizer::waitUninterruptibly(_obj, 0, CHECK); } |
1 | 203 |
// complete_exit gives up lock completely, returning recursion count |
204 |
// reenter reclaims lock with original recursion count |
|
27680
8ecc0871c18e
8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents:
27165
diff
changeset
|
205 |
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
|
206 |
void reenter(intptr_t recursion, TRAPS) { ObjectSynchronizer::reenter(_obj, recursion, CHECK); } |
1 | 207 |
}; |
7397 | 208 |
|
209 |
#endif // SHARE_VM_RUNTIME_SYNCHRONIZER_HPP |