author | dcubed |
Wed, 10 Sep 2014 11:52:16 -0600 | |
changeset 26684 | d1221849ea3d |
parent 26683 | a02753d5a0b2 |
child 27165 | 785a8d56024c |
permissions | -rw-r--r-- |
1 | 1 |
/* |
25472
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25064
diff
changeset
|
2 |
* Copyright (c) 1998, 2014, 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_OBJECTMONITOR_HPP |
26 |
#define SHARE_VM_RUNTIME_OBJECTMONITOR_HPP |
|
27 |
||
28 |
#include "runtime/os.hpp" |
|
7408
c04a5c989f26
7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents:
7397
diff
changeset
|
29 |
#include "runtime/park.hpp" |
7397 | 30 |
#include "runtime/perfData.hpp" |
31 |
||
6975 | 32 |
// ObjectWaiter serves as a "proxy" or surrogate thread. |
33 |
// TODO-FIXME: Eliminate ObjectWaiter and use the thread-specific |
|
34 |
// ParkEvent instead. Beware, however, that the JVMTI code |
|
35 |
// knows about ObjectWaiters, so we'll have to reconcile that code. |
|
36 |
// See next_waiter(), first_waiter(), etc. |
|
37 |
||
38 |
class ObjectWaiter : public StackObj { |
|
39 |
public: |
|
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
40 |
enum TStates { TS_UNDEF, TS_READY, TS_RUN, TS_WAIT, TS_ENTER, TS_CXQ }; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
41 |
enum Sorted { PREPEND, APPEND, SORTED }; |
6975 | 42 |
ObjectWaiter * volatile _next; |
43 |
ObjectWaiter * volatile _prev; |
|
44 |
Thread* _thread; |
|
18025 | 45 |
jlong _notifier_tid; |
6975 | 46 |
ParkEvent * _event; |
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
47 |
volatile int _notified; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
48 |
volatile TStates TState; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
49 |
Sorted _Sorted; // List placement disposition |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
50 |
bool _active; // Contention monitoring is enabled |
6975 | 51 |
public: |
52 |
ObjectWaiter(Thread* thread); |
|
53 |
||
54 |
void wait_reenter_begin(ObjectMonitor *mon); |
|
55 |
void wait_reenter_end(ObjectMonitor *mon); |
|
56 |
}; |
|
57 |
||
18025 | 58 |
// forward declaration to avoid include tracing.hpp |
59 |
class EventJavaMonitorWait; |
|
60 |
||
1 | 61 |
// WARNING: |
62 |
// This is a very sensitive and fragile class. DO NOT make any |
|
63 |
// change unless you are fully aware of the underlying semantics. |
|
64 |
||
65 |
// This class can not inherit from any other class, because I have |
|
66 |
// to let the displaced header be the very first word. Otherwise I |
|
67 |
// have to let markOop include this file, which would export the |
|
68 |
// monitor data structure to everywhere. |
|
69 |
// |
|
70 |
// The ObjectMonitor class is used to implement JavaMonitors which have |
|
71 |
// transformed from the lightweight structure of the thread stack to a |
|
72 |
// heavy weight lock due to contention |
|
73 |
||
74 |
// It is also used as RawMonitor by the JVMTI |
|
75 |
||
76 |
||
77 |
class ObjectMonitor { |
|
78 |
public: |
|
79 |
enum { |
|
80 |
OM_OK, // no error |
|
81 |
OM_SYSTEM_ERROR, // operating system error |
|
82 |
OM_ILLEGAL_MONITOR_STATE, // IllegalMonitorStateException |
|
83 |
OM_INTERRUPTED, // Thread.interrupt() |
|
84 |
OM_TIMED_OUT // Object.wait() timed out |
|
85 |
}; |
|
86 |
||
87 |
public: |
|
88 |
// TODO-FIXME: the "offset" routines should return a type of off_t instead of int ... |
|
89 |
// ByteSize would also be an appropriate type. |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
90 |
static int header_offset_in_bytes() { return offset_of(ObjectMonitor, _header); } |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
91 |
static int object_offset_in_bytes() { return offset_of(ObjectMonitor, _object); } |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
92 |
static int owner_offset_in_bytes() { return offset_of(ObjectMonitor, _owner); } |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
93 |
static int count_offset_in_bytes() { return offset_of(ObjectMonitor, _count); } |
1 | 94 |
static int recursions_offset_in_bytes() { return offset_of(ObjectMonitor, _recursions); } |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
95 |
static int cxq_offset_in_bytes() { return offset_of(ObjectMonitor, _cxq); } |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
96 |
static int succ_offset_in_bytes() { return offset_of(ObjectMonitor, _succ); } |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
97 |
static int EntryList_offset_in_bytes() { return offset_of(ObjectMonitor, _EntryList); } |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
98 |
static int FreeNext_offset_in_bytes() { return offset_of(ObjectMonitor, FreeNext); } |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
99 |
static int WaitSet_offset_in_bytes() { return offset_of(ObjectMonitor, _WaitSet); } |
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
100 |
static int Responsible_offset_in_bytes() { return offset_of(ObjectMonitor, _Responsible); } |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
101 |
static int Spinner_offset_in_bytes() { return offset_of(ObjectMonitor, _Spinner); } |
1 | 102 |
|
103 |
public: |
|
22551 | 104 |
// Eventually we'll make provisions for multiple callbacks, but |
1 | 105 |
// now one will suffice. |
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
106 |
static int (*SpinCallbackFunction)(intptr_t, int); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
107 |
static intptr_t SpinCallbackArgument; |
1 | 108 |
|
109 |
||
110 |
public: |
|
111 |
markOop header() const; |
|
112 |
void set_header(markOop hdr); |
|
113 |
||
6975 | 114 |
intptr_t is_busy() const { |
115 |
// TODO-FIXME: merge _count and _waiters. |
|
116 |
// TODO-FIXME: assert _owner == null implies _recursions = 0 |
|
117 |
// TODO-FIXME: assert _WaitSet != null implies _count > 0 |
|
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
118 |
return _count|_waiters|intptr_t(_owner)|intptr_t(_cxq)|intptr_t(_EntryList); |
6975 | 119 |
} |
120 |
||
1 | 121 |
intptr_t is_entered(Thread* current) const; |
122 |
||
123 |
void* owner() const; |
|
124 |
void set_owner(void* owner); |
|
125 |
||
126 |
intptr_t waiters() const; |
|
127 |
||
128 |
intptr_t count() const; |
|
129 |
void set_count(intptr_t count); |
|
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
130 |
intptr_t contentions() const; |
6975 | 131 |
intptr_t recursions() const { return _recursions; } |
1 | 132 |
|
133 |
// JVM/DI GetMonitorInfo() needs this |
|
6975 | 134 |
ObjectWaiter* first_waiter() { return _WaitSet; } |
135 |
ObjectWaiter* next_waiter(ObjectWaiter* o) { return o->_next; } |
|
136 |
Thread* thread_of_waiter(ObjectWaiter* o) { return o->_thread; } |
|
137 |
||
138 |
// initialize the monitor, exception the semaphore, all other fields |
|
139 |
// are simple integers or pointers |
|
140 |
ObjectMonitor() { |
|
141 |
_header = NULL; |
|
142 |
_count = 0; |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
143 |
_waiters = 0; |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
144 |
_recursions = 0; |
6975 | 145 |
_object = NULL; |
146 |
_owner = NULL; |
|
147 |
_WaitSet = NULL; |
|
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
148 |
_WaitSetLock = 0; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
149 |
_Responsible = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
150 |
_succ = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
151 |
_cxq = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
152 |
FreeNext = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
153 |
_EntryList = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
154 |
_SpinFreq = 0; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
155 |
_SpinClock = 0; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
156 |
OwnerIsThread = 0; |
18025 | 157 |
_previous_owner_tid = 0; |
6975 | 158 |
} |
1 | 159 |
|
6975 | 160 |
~ObjectMonitor() { |
26683
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
161 |
// TODO: Add asserts ... |
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
162 |
// _cxq == 0 _succ == NULL _owner == NULL _waiters == 0 |
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
163 |
// _count == 0 _EntryList == NULL etc |
6975 | 164 |
} |
165 |
||
26683
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
166 |
private: |
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
167 |
void Recycle() { |
6975 | 168 |
// TODO: add stronger asserts ... |
169 |
// _cxq == 0 _succ == NULL _owner == NULL _waiters == 0 |
|
170 |
// _count == 0 EntryList == NULL |
|
171 |
// _recursions == 0 _WaitSet == NULL |
|
172 |
// TODO: assert (is_busy()|_recursions) == 0 |
|
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
173 |
_succ = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
174 |
_EntryList = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
175 |
_cxq = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
176 |
_WaitSet = NULL; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
177 |
_recursions = 0; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
178 |
_SpinFreq = 0; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
179 |
_SpinClock = 0; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
180 |
OwnerIsThread = 0; |
6975 | 181 |
} |
182 |
||
26683
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
183 |
public: |
1 | 184 |
|
185 |
void* object() const; |
|
186 |
void* object_addr(); |
|
187 |
void set_object(void* obj); |
|
188 |
||
189 |
bool check(TRAPS); // true if the thread owns the monitor. |
|
190 |
void check_slow(TRAPS); |
|
191 |
void clear(); |
|
25633
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25472
diff
changeset
|
192 |
static void sanity_checks(); // public for -XX:+ExecuteInternalVMTests |
4cd9c4622c8c
8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents:
25472
diff
changeset
|
193 |
// in PRODUCT for -XX:SyncKnobs=Verbose=1 |
1 | 194 |
#ifndef PRODUCT |
195 |
void verify(); |
|
196 |
void print(); |
|
197 |
#endif |
|
198 |
||
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
199 |
bool try_enter(TRAPS); |
1 | 200 |
void enter(TRAPS); |
18025 | 201 |
void exit(bool not_suspended, TRAPS); |
1 | 202 |
void wait(jlong millis, bool interruptable, TRAPS); |
203 |
void notify(TRAPS); |
|
204 |
void notifyAll(TRAPS); |
|
205 |
||
206 |
// Use the following at your own risk |
|
207 |
intptr_t complete_exit(TRAPS); |
|
208 |
void reenter(intptr_t recursions, TRAPS); |
|
209 |
||
210 |
private: |
|
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
211 |
void AddWaiter(ObjectWaiter * waiter); |
6975 | 212 |
static void DeferredInitialize(); |
1 | 213 |
|
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
214 |
ObjectWaiter * DequeueWaiter(); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
215 |
void DequeueSpecificWaiter(ObjectWaiter * waiter); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
216 |
void EnterI(TRAPS); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
217 |
void ReenterI(Thread * Self, ObjectWaiter * SelfNode); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
218 |
void UnlinkAfterAcquire(Thread * Self, ObjectWaiter * SelfNode); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
219 |
int TryLock(Thread * Self); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
220 |
int NotRunnable(Thread * Self, Thread * Owner); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
221 |
int TrySpin_Fixed(Thread * Self); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
222 |
int TrySpin_VaryFrequency(Thread * Self); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
223 |
int TrySpin_VaryDuration(Thread * Self); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
224 |
void ctAsserts(); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
225 |
void ExitEpilog(Thread * Self, ObjectWaiter * Wakee); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
226 |
bool ExitSuspendEquivalent(JavaThread * Self); |
18025 | 227 |
void post_monitor_wait_event(EventJavaMonitorWait * event, |
26683
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
228 |
jlong notifier_tid, |
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
229 |
jlong timeout, |
a02753d5a0b2
8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
25633
diff
changeset
|
230 |
bool timedout); |
1 | 231 |
|
232 |
private: |
|
233 |
friend class ObjectSynchronizer; |
|
234 |
friend class ObjectWaiter; |
|
235 |
friend class VMStructs; |
|
236 |
||
237 |
// WARNING: this must be the very first word of ObjectMonitor |
|
238 |
// This means this class can't use any virtual member functions. |
|
239 |
||
240 |
volatile markOop _header; // displaced object header word - mark |
|
241 |
void* volatile _object; // backward object pointer - strong root |
|
242 |
||
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
243 |
double SharingPad[1]; // temp to reduce false sharing |
1 | 244 |
|
245 |
// All the following fields must be machine word aligned |
|
246 |
// The VM assumes write ordering wrt these fields, which can be |
|
247 |
// read from other threads. |
|
248 |
||
6975 | 249 |
protected: // protected for jvmtiRawMonitor |
1 | 250 |
void * volatile _owner; // pointer to owning thread OR BasicLock |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
251 |
volatile jlong _previous_owner_tid; // thread id of the previous owner of the monitor |
1 | 252 |
volatile intptr_t _recursions; // recursion count, 0 for first entry |
6975 | 253 |
private: |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
254 |
int OwnerIsThread; // _owner is (Thread *) vs SP/BasicLock |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
255 |
ObjectWaiter * volatile _cxq; // LL of recently-arrived threads blocked on entry. |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
256 |
// The list is actually composed of WaitNodes, acting |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
257 |
// as proxies for Threads. |
6975 | 258 |
protected: |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
259 |
ObjectWaiter * volatile _EntryList; // Threads blocked on entry or reentry. |
6975 | 260 |
private: |
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
261 |
Thread * volatile _succ; // Heir presumptive thread - used for futile wakeup throttling |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
262 |
Thread * volatile _Responsible; |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
263 |
int _PromptDrain; // rqst to drain cxq into EntryList ASAP |
1 | 264 |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
265 |
volatile int _Spinner; // for exit->spinner handoff optimization |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
266 |
volatile int _SpinFreq; // Spin 1-out-of-N attempts: success rate |
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
267 |
volatile int _SpinClock; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
268 |
volatile int _SpinDuration; |
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
269 |
volatile intptr_t _SpinState; // MCS/CLH list of spinners |
1 | 270 |
|
271 |
// TODO-FIXME: _count, _waiters and _recursions should be of |
|
272 |
// type int, or int32_t but not intptr_t. There's no reason |
|
273 |
// to use 64-bit fields for these variables on a 64-bit JVM. |
|
274 |
||
22551 | 275 |
volatile intptr_t _count; // reference count to prevent reclamation/deflation |
1 | 276 |
// at stop-the-world time. See deflate_idle_monitors(). |
277 |
// _count is approximately |_WaitSet| + |_EntryList| |
|
6975 | 278 |
protected: |
1 | 279 |
volatile intptr_t _waiters; // number of waiting threads |
6975 | 280 |
private: |
281 |
protected: |
|
1 | 282 |
ObjectWaiter * volatile _WaitSet; // LL of threads wait()ing on the monitor |
6975 | 283 |
private: |
1 | 284 |
volatile int _WaitSetLock; // protects Wait Queue - simple spinlock |
285 |
||
286 |
public: |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
287 |
int _QMix; // Mixed prepend queue discipline |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
288 |
ObjectMonitor * FreeNext; // Free list linkage |
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
289 |
intptr_t StatA, StatsB; |
1 | 290 |
|
6975 | 291 |
public: |
25064
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
292 |
static void Initialize(); |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
293 |
static PerfCounter * _sync_ContendedLockAttempts; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
294 |
static PerfCounter * _sync_FutileWakeups; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
295 |
static PerfCounter * _sync_Parks; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
296 |
static PerfCounter * _sync_EmptyNotifications; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
297 |
static PerfCounter * _sync_Notifications; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
298 |
static PerfCounter * _sync_SlowEnter; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
299 |
static PerfCounter * _sync_SlowExit; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
300 |
static PerfCounter * _sync_SlowNotify; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
301 |
static PerfCounter * _sync_SlowNotifyAll; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
302 |
static PerfCounter * _sync_FailedSpins; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
303 |
static PerfCounter * _sync_SuccessfulSpins; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
304 |
static PerfCounter * _sync_PrivateA; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
305 |
static PerfCounter * _sync_PrivateB; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
306 |
static PerfCounter * _sync_MonInCirculation; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
307 |
static PerfCounter * _sync_MonScavenged; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
308 |
static PerfCounter * _sync_Inflations; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
309 |
static PerfCounter * _sync_Deflations; |
244218e6ec0a
8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents:
22551
diff
changeset
|
310 |
static PerfLongVariable * _sync_MonExtant; |
6975 | 311 |
|
312 |
public: |
|
313 |
static int Knob_Verbose; |
|
25472
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25064
diff
changeset
|
314 |
static int Knob_VerifyInUse; |
6975 | 315 |
static int Knob_SpinLimit; |
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
18025
diff
changeset
|
316 |
void* operator new (size_t size) throw() { |
17376 | 317 |
return AllocateHeap(size, mtInternal); |
318 |
} |
|
19696
bd5a0131bde1
8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents:
18025
diff
changeset
|
319 |
void* operator new[] (size_t size) throw() { |
17376 | 320 |
return operator new (size); |
321 |
} |
|
322 |
void operator delete(void* p) { |
|
323 |
FreeHeap(p, mtInternal); |
|
324 |
} |
|
325 |
void operator delete[] (void *p) { |
|
326 |
operator delete(p); |
|
327 |
} |
|
1 | 328 |
}; |
6975 | 329 |
|
330 |
#undef TEVENT |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
331 |
#define TEVENT(nom) { if (SyncVerbose) FEVENT(nom); } |
6975 | 332 |
|
26684
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
333 |
#define FEVENT(nom) \ |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
334 |
{ \ |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
335 |
static volatile int ctr = 0; \ |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
336 |
int v = ++ctr; \ |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
337 |
if ((v & (v - 1)) == 0) { \ |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
338 |
::printf(#nom " : %d\n", v); \ |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
339 |
::fflush(stdout); \ |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
340 |
} \ |
d1221849ea3d
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents:
26683
diff
changeset
|
341 |
} |
6975 | 342 |
|
343 |
#undef TEVENT |
|
344 |
#define TEVENT(nom) {;} |
|
345 |
||
7397 | 346 |
|
347 |
#endif // SHARE_VM_RUNTIME_OBJECTMONITOR_HPP |