1 /*
2  * Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved.
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  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #ifndef SHARE_RUNTIME_OBJECTMONITOR_HPP
26 #define SHARE_RUNTIME_OBJECTMONITOR_HPP
27 
28 #include "memory/allocation.hpp"
29 #include "memory/padded.hpp"
30 #include "oops/markWord.hpp"
31 #include "oops/weakHandle.hpp"
32 #include "runtime/os.hpp"
33 #include "runtime/park.hpp"
34 #include "runtime/perfData.hpp"
35 
36 class ObjectMonitor;
37 
38 // ObjectWaiter serves as a "proxy" or surrogate thread.
39 // TODO-FIXME: Eliminate ObjectWaiter and use the thread-specific
40 // ParkEvent instead.  Beware, however, that the JVMTI code
41 // knows about ObjectWaiters, so we'll have to reconcile that code.
42 // See next_waiter(), first_waiter(), etc.
43 
44 class ObjectWaiter : public StackObj {
45  public:
46   enum TStates { TS_UNDEF, TS_READY, TS_RUN, TS_WAIT, TS_ENTER, TS_CXQ };
47   ObjectWaiter* volatile _next;
48   ObjectWaiter* volatile _prev;
49   Thread*       _thread;
50   jlong         _notifier_tid;
51   ParkEvent *   _event;
52   volatile int  _notified;
53   volatile TStates TState;
54   bool          _active;           // Contention monitoring is enabled
55  public:
56   ObjectWaiter(Thread* thread);
57 
58   void wait_reenter_begin(ObjectMonitor *mon);
59   void wait_reenter_end(ObjectMonitor *mon);
60 };
61 
62 // The ObjectMonitor class implements the heavyweight version of a
63 // JavaMonitor. The lightweight BasicLock/stack lock version has been
64 // inflated into an ObjectMonitor. This inflation is typically due to
65 // contention or use of Object.wait().
66 //
67 // WARNING: This is a very sensitive and fragile class. DO NOT make any
68 // changes unless you are fully aware of the underlying semantics.
69 //
70 // ObjectMonitor Layout Overview/Highlights/Restrictions:
71 //
72 // - The _header field must be at offset 0 because the displaced header
73 //   from markWord is stored there. We do not want markWord.hpp to include
74 //   ObjectMonitor.hpp to avoid exposing ObjectMonitor everywhere. This
75 //   means that ObjectMonitor cannot inherit from any other class nor can
76 //   it use any virtual member functions. This restriction is critical to
77 //   the proper functioning of the VM.
78 // - The _header and _owner fields should be separated by enough space
79 //   to avoid false sharing due to parallel access by different threads.
80 //   This is an advisory recommendation.
81 // - The general layout of the fields in ObjectMonitor is:
82 //     _header
83 //     <lightly_used_fields>
84 //     <optional padding>
85 //     _owner
86 //     <remaining_fields>
87 // - The VM assumes write ordering and machine word alignment with
88 //   respect to the _owner field and the <remaining_fields> that can
89 //   be read in parallel by other threads.
90 // - Generally fields that are accessed closely together in time should
91 //   be placed proximally in space to promote data cache locality. That
92 //   is, temporal locality should condition spatial locality.
93 // - We have to balance avoiding false sharing with excessive invalidation
94 //   from coherence traffic. As such, we try to cluster fields that tend
95 //   to be _written_ at approximately the same time onto the same data
96 //   cache line.
97 // - We also have to balance the natural tension between minimizing
98 //   single threaded capacity misses with excessive multi-threaded
99 //   coherency misses. There is no single optimal layout for both
100 //   single-threaded and multi-threaded environments.
101 //
102 // - See TEST_VM(ObjectMonitor, sanity) gtest for how critical restrictions are
103 //   enforced.
104 // - Adjacent ObjectMonitors should be separated by enough space to avoid
105 //   false sharing. This is handled by the ObjectMonitor allocation code
106 //   in synchronizer.cpp. Also see TEST_VM(SynchronizerTest, sanity) gtest.
107 //
108 // Futures notes:
109 //   - Separating _owner from the <remaining_fields> by enough space to
110 //     avoid false sharing might be profitable. Given
111 //     http://blogs.oracle.com/dave/entry/cas_and_cache_trivia_invalidate
112 //     we know that the CAS in monitorenter will invalidate the line
113 //     underlying _owner. We want to avoid an L1 data cache miss on that
114 //     same line for monitorexit. Putting these <remaining_fields>:
115 //     _recursions, _EntryList, _cxq, and _succ, all of which may be
116 //     fetched in the inflated unlock path, on a different cache line
117 //     would make them immune to CAS-based invalidation from the _owner
118 //     field.
119 //
120 //   - The _recursions field should be of type int, or int32_t but not
121 //     intptr_t. There's no reason to use a 64-bit type for this field
122 //     in a 64-bit JVM.
123 
124 #ifndef OM_CACHE_LINE_SIZE
125 // Use DEFAULT_CACHE_LINE_SIZE if not already specified for
126 // the current build platform.
127 #define OM_CACHE_LINE_SIZE DEFAULT_CACHE_LINE_SIZE
128 #endif
129 
130 class ObjectMonitor : public CHeapObj<mtInternal> {
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* _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*) +
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   Thread* volatile _succ;           // Heir presumptive thread - used for futile wakeup throttling
166   Thread* volatile _Responsible;
167 
168   volatile int _Spinner;            // for exit->spinner handoff optimization
169   volatile int _SpinDuration;
170 
171   jint  _contentions;               // Number of active contentions in enter(). It is used by is_busy()
172                                     // along with other fields to determine if an ObjectMonitor can be
173                                     // deflated. It is also used by the async deflation protocol. See
174                                     // ObjectMonitor::deflate_monitor().
175  protected:
176   ObjectWaiter* volatile _WaitSet;  // LL of threads wait()ing on the monitor
177   volatile jint  _waiters;          // number of waiting threads
178  private:
179   volatile int _WaitSetLock;        // protects Wait Queue - simple spinlock
180 
181  public:
182   static void Initialize();
183 
184   // Only perform a PerfData operation if the PerfData object has been
185   // allocated and if the PerfDataManager has not freed the PerfData
186   // objects which can happen at normal VM shutdown.
187   //
188   #define OM_PERFDATA_OP(f, op_str)              \
189     do {                                         \
190       if (ObjectMonitor::_sync_ ## f != NULL &&  \
191           PerfDataManager::has_PerfData()) {     \
192         ObjectMonitor::_sync_ ## f->op_str;      \
193       }                                          \
194     } while (0)
195 
196   static PerfCounter * _sync_ContendedLockAttempts;
197   static PerfCounter * _sync_FutileWakeups;
198   static PerfCounter * _sync_Parks;
199   static PerfCounter * _sync_Notifications;
200   static PerfCounter * _sync_Inflations;
201   static PerfCounter * _sync_Deflations;
202   static PerfLongVariable * _sync_MonExtant;
203 
204   static int Knob_SpinLimit;
205 
206   void* operator new (size_t size) throw();
207   void* operator new[] (size_t size) throw();
208   void operator delete(void* p);
209   void operator delete[] (void* p);
210 
211   // TODO-FIXME: the "offset" routines should return a type of off_t instead of int ...
212   // ByteSize would also be an appropriate type.
header_offset_in_bytes()213   static int header_offset_in_bytes()      { return offset_of(ObjectMonitor, _header); }
object_offset_in_bytes()214   static int object_offset_in_bytes()      { return offset_of(ObjectMonitor, _object); }
owner_offset_in_bytes()215   static int owner_offset_in_bytes()       { return offset_of(ObjectMonitor, _owner); }
recursions_offset_in_bytes()216   static int recursions_offset_in_bytes()  { return offset_of(ObjectMonitor, _recursions); }
cxq_offset_in_bytes()217   static int cxq_offset_in_bytes()         { return offset_of(ObjectMonitor, _cxq); }
succ_offset_in_bytes()218   static int succ_offset_in_bytes()        { return offset_of(ObjectMonitor, _succ); }
EntryList_offset_in_bytes()219   static int EntryList_offset_in_bytes()   { return offset_of(ObjectMonitor, _EntryList); }
220 
221   // ObjectMonitor references can be ORed with markWord::monitor_value
222   // as part of the ObjectMonitor tagging mechanism. When we combine an
223   // ObjectMonitor reference with an offset, we need to remove the tag
224   // value in order to generate the proper address.
225   //
226   // We can either adjust the ObjectMonitor reference and then add the
227   // offset or we can adjust the offset that is added to the ObjectMonitor
228   // reference. The latter avoids an AGI (Address Generation Interlock)
229   // stall so the helper macro adjusts the offset value that is returned
230   // to the ObjectMonitor reference manipulation code:
231   //
232   #define OM_OFFSET_NO_MONITOR_VALUE_TAG(f) \
233     ((ObjectMonitor::f ## _offset_in_bytes()) - markWord::monitor_value)
234 
235   markWord           header() const;
236   volatile markWord* header_addr();
237   void               set_header(markWord hdr);
238 
is_busy() const239   intptr_t is_busy() const {
240     // TODO-FIXME: assert _owner == null implies _recursions = 0
241     intptr_t ret_code = _waiters | intptr_t(_cxq) | intptr_t(_EntryList);
242     if (contentions() > 0) {
243       ret_code |= contentions();
244     }
245     if (!owner_is_DEFLATER_MARKER()) {
246       ret_code |= intptr_t(owner_raw());
247     }
248     return ret_code;
249   }
250   const char* is_busy_to_string(stringStream* ss);
251 
252   intptr_t  is_entered(Thread* current) const;
253 
254   void*     owner() const;  // Returns NULL if DEFLATER_MARKER is observed.
255   void*     owner_raw() const;
256   // Returns true if owner field == DEFLATER_MARKER and false otherwise.
257   bool      owner_is_DEFLATER_MARKER() const;
258   // Returns true if 'this' is being async deflated and false otherwise.
259   bool      is_being_async_deflated();
260   // Clear _owner field; current value must match old_value.
261   void      release_clear_owner(void* old_value);
262   // Simply set _owner field to new_value; current value must match old_value.
263   void      set_owner_from(void* old_value, void* new_value);
264   // Simply set _owner field to self; current value must match basic_lock_p.
265   void      set_owner_from_BasicLock(void* basic_lock_p, Thread* self);
266   // Try to set _owner field to new_value if the current value matches
267   // old_value, using Atomic::cmpxchg(). Otherwise, does not change the
268   // _owner field. Returns the prior value of the _owner field.
269   void*     try_set_owner_from(void* old_value, void* new_value);
270 
271   // Simply get _next_om field.
272   ObjectMonitor* next_om() const;
273   // Get _next_om field with acquire semantics.
274   ObjectMonitor* next_om_acquire() const;
275   // Simply set _next_om field to new_value.
276   void set_next_om(ObjectMonitor* new_value);
277   // Set _next_om field to new_value with release semantics.
278   void release_set_next_om(ObjectMonitor* new_value);
279   // Try to set _next_om field to new_value if the current value matches
280   // old_value, using Atomic::cmpxchg(). Otherwise, does not change the
281   // _next_om field. Returns the prior value of the _next_om field.
282   ObjectMonitor* try_set_next_om(ObjectMonitor* old_value, ObjectMonitor* new_value);
283 
284   jint      waiters() const;
285 
286   jint      contentions() const;
287   void      add_to_contentions(jint value);
recursions() const288   intx      recursions() const                                         { return _recursions; }
289 
290   // JVM/TI GetObjectMonitorUsage() needs this:
first_waiter()291   ObjectWaiter* first_waiter()                                         { return _WaitSet; }
next_waiter(ObjectWaiter * o)292   ObjectWaiter* next_waiter(ObjectWaiter* o)                           { return o->_next; }
thread_of_waiter(ObjectWaiter * o)293   Thread* thread_of_waiter(ObjectWaiter* o)                            { return o->_thread; }
294 
295   ObjectMonitor(oop object);
296   ~ObjectMonitor();
297 
298   oop       object() const;
299   oop       object_peek() const;
300 
301   // Returns true if the specified thread owns the ObjectMonitor. Otherwise
302   // returns false and throws IllegalMonitorStateException (IMSE).
303   bool      check_owner(Thread* THREAD);
304 
305   bool      enter(TRAPS);
306   void      exit(bool not_suspended, TRAPS);
307   void      wait(jlong millis, bool interruptable, TRAPS);
308   void      notify(TRAPS);
309   void      notifyAll(TRAPS);
310 
311   void      print() const;
312 #ifdef ASSERT
313   void      print_debug_style_on(outputStream* st) const;
314 #endif
315   void      print_on(outputStream* st) const;
316 
317 // Use the following at your own risk
318   intx      complete_exit(TRAPS);
319   bool      reenter(intx recursions, TRAPS);
320 
321  private:
322   void      AddWaiter(ObjectWaiter* waiter);
323   void      INotify(Thread* self);
324   ObjectWaiter* DequeueWaiter();
325   void      DequeueSpecificWaiter(ObjectWaiter* waiter);
326   void      EnterI(TRAPS);
327   void      ReenterI(Thread* self, ObjectWaiter* self_node);
328   void      UnlinkAfterAcquire(Thread* self, ObjectWaiter* self_node);
329   int       TryLock(Thread* self);
330   int       NotRunnable(Thread* self, Thread* Owner);
331   int       TrySpin(Thread* self);
332   void      ExitEpilog(Thread* self, ObjectWaiter* Wakee);
333   bool      ExitSuspendEquivalent(JavaThread* self);
334 
335   // Deflation support
336   bool      deflate_monitor();
337   void      install_displaced_markword_in_object(const oop obj);
338 };
339 
340 #endif // SHARE_RUNTIME_OBJECTMONITOR_HPP
341