128 #endif
129
130 class ObjectMonitor : public CHeapObj<mtObjectMonitor> {
131 friend class ObjectSynchronizer;
132 friend class ObjectWaiter;
133 friend class VMStructs;
134 JVMCI_ONLY(friend class JVMCIVMStructs;)
135
136 static OopStorage* _oop_storage;
137
138 // The sync code expects the header field to be at offset zero (0).
139 // Enforced by the assert() in header_addr().
140 volatile markWord _header; // displaced object header word - mark
141 WeakHandle _object; // backward object pointer
142 // Separate _header and _owner on different cache lines since both can
143 // have busy multi-threaded access. _header and _object are set at initial
144 // inflation. The _object does not change, so it is a good choice to share
145 // its cache line with _header.
146 DEFINE_PAD_MINUS_SIZE(0, OM_CACHE_LINE_SIZE, sizeof(volatile markWord) +
147 sizeof(WeakHandle));
148 // Used by async deflation as a marker in the _owner field:
149 #define DEFLATER_MARKER reinterpret_cast<void*>(-1)
150 void* volatile _owner; // pointer to owning thread OR BasicLock
151 volatile jlong _previous_owner_tid; // thread id of the previous owner of the monitor
152 // Separate _owner and _next_om on different cache lines since
153 // both can have busy multi-threaded access. _previous_owner_tid is only
154 // changed by ObjectMonitor::exit() so it is a good choice to share the
155 // cache line with _owner.
156 DEFINE_PAD_MINUS_SIZE(1, OM_CACHE_LINE_SIZE, sizeof(void* volatile) +
157 sizeof(volatile jlong));
158 ObjectMonitor* _next_om; // Next ObjectMonitor* linkage
159 volatile intx _recursions; // recursion count, 0 for first entry
160 ObjectWaiter* volatile _EntryList; // Threads blocked on entry or reentry.
161 // The list is actually composed of WaitNodes,
162 // acting as proxies for Threads.
163
164 ObjectWaiter* volatile _cxq; // LL of recently-arrived threads blocked on entry.
165 JavaThread* volatile _succ; // Heir presumptive thread - used for futile wakeup throttling
166 JavaThread* volatile _Responsible;
167
168 volatile int _Spinner; // for exit->spinner handoff optimization
169 volatile int _SpinDuration;
227 #define OM_OFFSET_NO_MONITOR_VALUE_TAG(f) \
228 ((ObjectMonitor::f ## _offset_in_bytes()) - markWord::monitor_value)
229
230 markWord header() const;
231 volatile markWord* header_addr();
232 void set_header(markWord hdr);
233
234 bool is_busy() const {
235 // TODO-FIXME: assert _owner == null implies _recursions = 0
236 intptr_t ret_code = _waiters | intptr_t(_cxq) | intptr_t(_EntryList);
237 if (contentions() > 0) {
238 ret_code |= contentions();
239 }
240 if (!owner_is_DEFLATER_MARKER()) {
241 ret_code |= intptr_t(owner_raw());
242 }
243 return ret_code != 0;
244 }
245 const char* is_busy_to_string(stringStream* ss);
246
247 intptr_t is_entered(JavaThread* current) const;
248
249 void* owner() const; // Returns NULL if DEFLATER_MARKER is observed.
250 void* owner_raw() const;
251 // Returns true if owner field == DEFLATER_MARKER and false otherwise.
252 bool owner_is_DEFLATER_MARKER() const;
253 // Returns true if 'this' is being async deflated and false otherwise.
254 bool is_being_async_deflated();
255 // Clear _owner field; current value must match old_value.
256 void release_clear_owner(void* old_value);
257 // Simply set _owner field to new_value; current value must match old_value.
258 void set_owner_from(void* old_value, void* new_value);
259 // Simply set _owner field to current; current value must match basic_lock_p.
260 void set_owner_from_BasicLock(void* basic_lock_p, JavaThread* current);
261 // Try to set _owner field to new_value if the current value matches
262 // old_value, using Atomic::cmpxchg(). Otherwise, does not change the
263 // _owner field. Returns the prior value of the _owner field.
264 void* try_set_owner_from(void* old_value, void* new_value);
265
266 // Simply get _next_om field.
267 ObjectMonitor* next_om() const;
268 // Get _next_om field with acquire semantics.
269 ObjectMonitor* next_om_acquire() const;
270 // Simply set _next_om field to new_value.
271 void set_next_om(ObjectMonitor* new_value);
272 // Set _next_om field to new_value with release semantics.
273 void release_set_next_om(ObjectMonitor* new_value);
274 // Try to set _next_om field to new_value if the current value matches
275 // old_value, using Atomic::cmpxchg(). Otherwise, does not change the
276 // _next_om field. Returns the prior value of the _next_om field.
277 ObjectMonitor* try_set_next_om(ObjectMonitor* old_value, ObjectMonitor* new_value);
278
279 jint waiters() const;
280
281 jint contentions() const;
282 void add_to_contentions(jint value);
283 intx recursions() const { return _recursions; }
284
285 // JVM/TI GetObjectMonitorUsage() needs this:
314 ClearSuccOnSuspend(ObjectMonitor* om) : _om(om) {}
315 void operator()(JavaThread* current);
316 };
317 public:
318 bool enter(JavaThread* current);
319 void exit(JavaThread* current, bool not_suspended = true);
320 void wait(jlong millis, bool interruptible, TRAPS);
321 void notify(TRAPS);
322 void notifyAll(TRAPS);
323
324 void print() const;
325 #ifdef ASSERT
326 void print_debug_style_on(outputStream* st) const;
327 #endif
328 void print_on(outputStream* st) const;
329
330 // Use the following at your own risk
331 intx complete_exit(JavaThread* current);
332 bool reenter(intx recursions, JavaThread* current);
333
334 private:
335 void AddWaiter(ObjectWaiter* waiter);
336 void INotify(JavaThread* current);
337 ObjectWaiter* DequeueWaiter();
338 void DequeueSpecificWaiter(ObjectWaiter* waiter);
339 void EnterI(JavaThread* current);
340 void ReenterI(JavaThread* current, ObjectWaiter* current_node);
341 void UnlinkAfterAcquire(JavaThread* current, ObjectWaiter* current_node);
342 int TryLock(JavaThread* current);
343 int NotRunnable(JavaThread* current, JavaThread* Owner);
344 int TrySpin(JavaThread* current);
345 void ExitEpilog(JavaThread* current, ObjectWaiter* Wakee);
346
347 // Deflation support
348 bool deflate_monitor();
349 void install_displaced_markword_in_object(const oop obj);
350 };
351
352 #endif // SHARE_RUNTIME_OBJECTMONITOR_HPP
|
128 #endif
129
130 class ObjectMonitor : public CHeapObj<mtObjectMonitor> {
131 friend class ObjectSynchronizer;
132 friend class ObjectWaiter;
133 friend class VMStructs;
134 JVMCI_ONLY(friend class JVMCIVMStructs;)
135
136 static OopStorage* _oop_storage;
137
138 // The sync code expects the header field to be at offset zero (0).
139 // Enforced by the assert() in header_addr().
140 volatile markWord _header; // displaced object header word - mark
141 WeakHandle _object; // backward object pointer
142 // Separate _header and _owner on different cache lines since both can
143 // have busy multi-threaded access. _header and _object are set at initial
144 // inflation. The _object does not change, so it is a good choice to share
145 // its cache line with _header.
146 DEFINE_PAD_MINUS_SIZE(0, OM_CACHE_LINE_SIZE, sizeof(volatile markWord) +
147 sizeof(WeakHandle));
148 // Used by async deflation as a marker in the _owner field.
149 // Note that the choice of the two markers is peculiar:
150 // - They need to represent values that cannot be pointers. In particular,
151 // we achieve this by using the lowest two bits.
152 // - ANONYMOUS_OWNER should be a small value, it is used in generated code
153 // and small values encode much better.
154 // - We test for anonymous owner by testing for the lowest bit, therefore
155 // DEFLATER_MARKER must *not* have that bit set.
156 #define DEFLATER_MARKER reinterpret_cast<void*>(2)
157 public:
158 // NOTE: Typed as uintptr_t so that we can pick it up in SA, via vmStructs.
159 static const uintptr_t ANONYMOUS_OWNER = 1;
160
161 private:
162 static void* anon_owner_ptr() { return reinterpret_cast<void*>(ANONYMOUS_OWNER); }
163
164 void* volatile _owner; // pointer to owning thread OR BasicLock
165 volatile jlong _previous_owner_tid; // thread id of the previous owner of the monitor
166 // Separate _owner and _next_om on different cache lines since
167 // both can have busy multi-threaded access. _previous_owner_tid is only
168 // changed by ObjectMonitor::exit() so it is a good choice to share the
169 // cache line with _owner.
170 DEFINE_PAD_MINUS_SIZE(1, OM_CACHE_LINE_SIZE, sizeof(void* volatile) +
171 sizeof(volatile jlong));
172 ObjectMonitor* _next_om; // Next ObjectMonitor* linkage
173 volatile intx _recursions; // recursion count, 0 for first entry
174 ObjectWaiter* volatile _EntryList; // Threads blocked on entry or reentry.
175 // The list is actually composed of WaitNodes,
176 // acting as proxies for Threads.
177
178 ObjectWaiter* volatile _cxq; // LL of recently-arrived threads blocked on entry.
179 JavaThread* volatile _succ; // Heir presumptive thread - used for futile wakeup throttling
180 JavaThread* volatile _Responsible;
181
182 volatile int _Spinner; // for exit->spinner handoff optimization
183 volatile int _SpinDuration;
241 #define OM_OFFSET_NO_MONITOR_VALUE_TAG(f) \
242 ((ObjectMonitor::f ## _offset_in_bytes()) - markWord::monitor_value)
243
244 markWord header() const;
245 volatile markWord* header_addr();
246 void set_header(markWord hdr);
247
248 bool is_busy() const {
249 // TODO-FIXME: assert _owner == null implies _recursions = 0
250 intptr_t ret_code = _waiters | intptr_t(_cxq) | intptr_t(_EntryList);
251 if (contentions() > 0) {
252 ret_code |= contentions();
253 }
254 if (!owner_is_DEFLATER_MARKER()) {
255 ret_code |= intptr_t(owner_raw());
256 }
257 return ret_code != 0;
258 }
259 const char* is_busy_to_string(stringStream* ss);
260
261 bool is_entered(JavaThread* current) const;
262
263 bool has_owner() const;
264 void* owner() const; // Returns NULL if DEFLATER_MARKER is observed.
265 void* owner_raw() const;
266 // Returns true if owner field == DEFLATER_MARKER and false otherwise.
267 bool owner_is_DEFLATER_MARKER() const;
268 // Returns true if 'this' is being async deflated and false otherwise.
269 bool is_being_async_deflated();
270 // Clear _owner field; current value must match old_value.
271 void release_clear_owner(void* old_value);
272 // Simply set _owner field to new_value; current value must match old_value.
273 void set_owner_from(void* old_value, void* new_value);
274 // Simply set _owner field to current; current value must match basic_lock_p.
275 void set_owner_from_BasicLock(void* basic_lock_p, JavaThread* current);
276 // Try to set _owner field to new_value if the current value matches
277 // old_value, using Atomic::cmpxchg(). Otherwise, does not change the
278 // _owner field. Returns the prior value of the _owner field.
279 void* try_set_owner_from(void* old_value, void* new_value);
280
281 void set_owner_anonymous() {
282 set_owner_from(NULL, anon_owner_ptr());
283 }
284
285 bool is_owner_anonymous() const {
286 return owner_raw() == anon_owner_ptr();
287 }
288
289 void set_owner_from_anonymous(Thread* owner) {
290 set_owner_from(anon_owner_ptr(), owner);
291 }
292
293 // Simply get _next_om field.
294 ObjectMonitor* next_om() const;
295 // Get _next_om field with acquire semantics.
296 ObjectMonitor* next_om_acquire() const;
297 // Simply set _next_om field to new_value.
298 void set_next_om(ObjectMonitor* new_value);
299 // Set _next_om field to new_value with release semantics.
300 void release_set_next_om(ObjectMonitor* new_value);
301 // Try to set _next_om field to new_value if the current value matches
302 // old_value, using Atomic::cmpxchg(). Otherwise, does not change the
303 // _next_om field. Returns the prior value of the _next_om field.
304 ObjectMonitor* try_set_next_om(ObjectMonitor* old_value, ObjectMonitor* new_value);
305
306 jint waiters() const;
307
308 jint contentions() const;
309 void add_to_contentions(jint value);
310 intx recursions() const { return _recursions; }
311
312 // JVM/TI GetObjectMonitorUsage() needs this:
341 ClearSuccOnSuspend(ObjectMonitor* om) : _om(om) {}
342 void operator()(JavaThread* current);
343 };
344 public:
345 bool enter(JavaThread* current);
346 void exit(JavaThread* current, bool not_suspended = true);
347 void wait(jlong millis, bool interruptible, TRAPS);
348 void notify(TRAPS);
349 void notifyAll(TRAPS);
350
351 void print() const;
352 #ifdef ASSERT
353 void print_debug_style_on(outputStream* st) const;
354 #endif
355 void print_on(outputStream* st) const;
356
357 // Use the following at your own risk
358 intx complete_exit(JavaThread* current);
359 bool reenter(intx recursions, JavaThread* current);
360
361 static void maybe_deflate_dead(oop* p);
362
363 private:
364 void AddWaiter(ObjectWaiter* waiter);
365 void INotify(JavaThread* current);
366 ObjectWaiter* DequeueWaiter();
367 void DequeueSpecificWaiter(ObjectWaiter* waiter);
368 void EnterI(JavaThread* current);
369 void ReenterI(JavaThread* current, ObjectWaiter* current_node);
370 void UnlinkAfterAcquire(JavaThread* current, ObjectWaiter* current_node);
371 int TryLock(JavaThread* current);
372 int NotRunnable(JavaThread* current, JavaThread* Owner);
373 int TrySpin(JavaThread* current);
374 void ExitEpilog(JavaThread* current, ObjectWaiter* Wakee);
375
376 // Deflation support
377 bool deflate_monitor();
378 void install_displaced_markword_in_object(const oop obj);
379 };
380
381 #endif // SHARE_RUNTIME_OBJECTMONITOR_HPP
|