1 /*
  2  * Copyright (c) 1997, 2024, 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_OOPS_MARKWORD_HPP
 26 #define SHARE_OOPS_MARKWORD_HPP
 27 
 28 #include "metaprogramming/primitiveConversions.hpp"
 29 #include "oops/oopsHierarchy.hpp"
 30 #include "runtime/globals.hpp"
 31 
 32 #include <type_traits>
 33 
 34 // The markWord describes the header of an object.
 35 //
 36 // Bit-format of an object header (most significant first, big endian layout below):
 37 //
 38 //  32 bits:
 39 //  --------
 40 //             hash:25 ------------>| age:4  unused_gap:1  lock:2 (normal object)
 41 //
 42 //  64 bits:
 43 //  --------
 44 //  unused:25 hash:31 -->| unused_gap:1  age:4  unused_gap:1  lock:2 (normal object)
 45 //
 46 //  - hash contains the identity hash value: largest value is
 47 //    31 bits, see os::random().  Also, 64-bit vm's require
 48 //    a hash value no bigger than 32 bits because they will not
 49 //    properly generate a mask larger than that: see library_call.cpp
 50 //
 51 //  - the two lock bits are used to describe three states: locked/unlocked and monitor.
 52 //
 53 //    [ptr             | 00]  locked             ptr points to real header on stack (stack-locking in use)
 54 //    [header          | 00]  locked             locked regular object header (fast-locking in use)
 55 //    [header          | 01]  unlocked           regular object header
 56 //    [ptr             | 10]  monitor            inflated lock (header is swapped out, UseObjectMonitorTable == false)
 57 //    [header          | 10]  monitor            inflated lock (UseObjectMonitorTable == true)
 58 //    [ptr             | 11]  marked             used to mark an object
 59 //    [0 ............ 0| 00]  inflating          inflation in progress (stack-locking in use)
 60 //
 61 //    We assume that stack/thread pointers have the lowest two bits cleared.
 62 //
 63 //
 64 //  - INFLATING() is a distinguished markword value of all zeros that is
 65 //    used when inflating an existing stack-lock into an ObjectMonitor.
 66 //    See below for is_being_inflated() and INFLATING().
 67 //
 68 //
 69 //
 70 //  Valhalla
 71 //
 72 //  <CMH: merge this doc into the text above>
 73 //
 74 //  Project Valhalla has mark word encoding requirements for the following oops:
 75 //
 76 //  * inline types: have alternative bytecode behavior, e.g. can not be locked
 77 //    - "larval state": mutable state, but only during object init, observable
 78 //      by only by a single thread (generally do not mutate markWord)
 79 //
 80 //  * flat arrays: load/decode of klass layout helper is expensive for aaload
 81 //
 82 //  * "null free" arrays: load/decode of klass layout helper again for aaload
 83 //
 84 //  EnableValhalla
 85 //
 86 //  Formerly known as "biased lock bit", "unused_gap" is free to use: using this
 87 //  bit to indicate inline type, combined with "unlocked" lock bits, means we
 88 //  will not interfere with lock encodings (displaced, inflating, and monitor),
 89 //  since inline types can't be locked.
 90 //
 91 //  Further state encoding
 92 //
 93 //  32 bit plaforms currently have no further room for encoding. No room for
 94 //  "denormalized layout helper bits", these fast mark word tests can only be made on
 95 //  64 bit platforms. 32-bit platforms need to load the klass->_layout_helper. This
 96 //  said, the larval state bit is still required for operation, stealing from the hash
 97 //  code is simplest mechanism.
 98 //
 99 //  Valhalla specific encodings
100 //
101 //  Revised Bit-format of an object header (most significant first, big endian layout below):
102 //
103 //  32 bits:
104 //  --------
105 //  hash:24 ------------>| larval:1 age:4 inline_type:1 lock:2
106 //
107 //  64 bits:
108 //  --------
109 //  unused:1 | <-- hash:31 -->| unused:22 larval:1 age:4 flat_array:1 null_free_array:1 inline_type:1 lock:2
110 //
111 //  The "fast" static type bits (flat_array, null_free_array, and inline_type)
112 //  are placed lowest next to lock bits to more easily decode forwarding pointers.
113 //  G1 for example, implicitly clears age bits ("G1FullGCCompactionPoint::forward()")
114 //  using "oopDesc->forwardee()", so it necessary for "markWord::decode_pointer()"
115 //  to return a non-nullptr for this case, but not confuse the static type bits for
116 //  a pointer.
117 //
118 //  Static types bits are recorded in the "klass->prototype_header()", displaced
119 //  mark should simply use the prototype header as "slow path", rather chasing
120 //  monitor or stack lock races.
121 //
122 //  Lock patterns (note inline types can't be locked/monitor/inflating)...
123 //
124 //  [ptr            | 000]  locked             ptr points to real header on stack
125 //  [header         | ?01]  unlocked           regular object header
126 //  [ptr            | 010]  monitor            inflated lock (header is wapped out)
127 //  [ptr            | ?11]  marked             used to mark an object
128 //  [0 ............ | 000]  inflating          inflation in progress
129 //
130 //
131 
132 class BasicLock;
133 class ObjectMonitor;
134 class JavaThread;
135 class outputStream;
136 
137 class markWord {
138  private:
139   uintptr_t _value;
140 
141  public:
142   explicit markWord(uintptr_t value) : _value(value) {}
143 
144   markWord() = default;         // Doesn't initialize _value.
145 
146   // It is critical for performance that this class be trivially
147   // destructable, copyable, and assignable.
148   ~markWord() = default;
149   markWord(const markWord&) = default;
150   markWord& operator=(const markWord&) = default;
151 
152   static markWord from_pointer(void* ptr) {
153     return markWord((uintptr_t)ptr);
154   }
155   void* to_pointer() const {
156     return (void*)_value;
157   }
158 
159   bool operator==(const markWord& other) const {
160     return _value == other._value;
161   }
162   bool operator!=(const markWord& other) const {
163     return !operator==(other);
164   }
165 
166   // Conversion
167   uintptr_t value() const { return _value; }
168 
169   // Constants, in least significant bit order
170   static const int lock_bits                      = 2;
171   static const int first_unused_gap_bits          = 1; // When !EnableValhalla
172   // EnableValhalla: static prototype header bits (fast path instead of klass layout_helper)
173   static const int inline_type_bits               = 1;
174   static const int null_free_array_bits           = LP64_ONLY(1) NOT_LP64(0);
175   static const int flat_array_bits                = LP64_ONLY(1) NOT_LP64(0);
176   // instance state
177   static const int age_bits                       = 4;
178   static const int larval_bits                    = 1;
179   static const int max_hash_bits                  = BitsPerWord - age_bits - lock_bits - inline_type_bits - larval_bits - flat_array_bits - null_free_array_bits;
180   static const int hash_bits                      = max_hash_bits > 31 ? 31 : max_hash_bits;
181   static const int second_unused_gap_bits         = LP64_ONLY(1) NOT_LP64(0); // !EnableValhalla: unused
182 
183   static const int lock_shift                     = 0;
184   static const int inline_type_shift              = lock_bits;
185   static const int null_free_array_shift          = inline_type_shift + inline_type_bits;
186   static const int flat_array_shift               = null_free_array_shift + null_free_array_bits;
187   static const int age_shift                      = flat_array_shift + flat_array_bits;
188   static const int unused_gap_shift               = age_shift + age_bits; // !EnableValhalla: unused
189   static const int larval_shift                   = age_shift + age_bits;
190   static const int hash_shift                     = LP64_ONLY(32) NOT_LP64(larval_shift + larval_bits);
191 
192   static const uintptr_t lock_mask                = right_n_bits(lock_bits);
193   static const uintptr_t lock_mask_in_place       = lock_mask << lock_shift;
194   static const uintptr_t inline_type_mask         = right_n_bits(lock_bits + inline_type_bits);
195   static const uintptr_t inline_type_mask_in_place = inline_type_mask << lock_shift;
196   static const uintptr_t inline_type_bit_in_place = 1 << inline_type_shift;
197   static const uintptr_t null_free_array_mask     = right_n_bits(null_free_array_bits);
198   static const uintptr_t null_free_array_mask_in_place = (null_free_array_mask << null_free_array_shift) | lock_mask_in_place;
199   static const uintptr_t null_free_array_bit_in_place  = (1 << null_free_array_shift);
200   static const uintptr_t flat_array_mask          = right_n_bits(flat_array_bits);
201   static const uintptr_t flat_array_mask_in_place = (flat_array_mask << flat_array_shift) | null_free_array_mask_in_place | lock_mask_in_place;
202   static const uintptr_t flat_array_bit_in_place  = (1 << flat_array_shift);
203 
204   static const uintptr_t age_mask                 = right_n_bits(age_bits);
205   static const uintptr_t age_mask_in_place        = age_mask << age_shift;
206 
207   static const uintptr_t larval_mask              = right_n_bits(larval_bits);
208   static const uintptr_t larval_mask_in_place     = (larval_mask << larval_shift) | inline_type_mask_in_place;
209   static const uintptr_t larval_bit_in_place      = (1 << larval_shift);
210 
211   static const uintptr_t hash_mask                = right_n_bits(hash_bits);
212   static const uintptr_t hash_mask_in_place       = hash_mask << hash_shift;
213 
214   static const uintptr_t locked_value             = 0;
215   static const uintptr_t unlocked_value           = 1;
216   static const uintptr_t monitor_value            = 2;
217   static const uintptr_t marked_value             = 3;
218 
219   static const uintptr_t inline_type_pattern      = inline_type_bit_in_place | unlocked_value;
220   static const uintptr_t null_free_array_pattern  = null_free_array_bit_in_place | unlocked_value;
221   static const uintptr_t flat_array_pattern       = flat_array_bit_in_place | null_free_array_pattern;
222   // Has static klass prototype, used for decode/encode pointer
223   static const uintptr_t static_prototype_mask    = LP64_ONLY(right_n_bits(inline_type_bits + flat_array_bits + null_free_array_bits)) NOT_LP64(right_n_bits(inline_type_bits));
224   static const uintptr_t static_prototype_mask_in_place = static_prototype_mask << lock_bits;
225   static const uintptr_t static_prototype_value_max = (1 << age_shift) - 1;
226 
227   static const uintptr_t larval_pattern           = larval_bit_in_place | inline_type_pattern;
228 
229   static const uintptr_t no_hash                  = 0 ;  // no hash value assigned
230   static const uintptr_t no_hash_in_place         = (uintptr_t)no_hash << hash_shift;
231   static const uintptr_t no_lock_in_place         = unlocked_value;
232 
233   static const uint max_age                       = age_mask;
234 
235   // Creates a markWord with all bits set to zero.
236   static markWord zero() { return markWord(uintptr_t(0)); }
237 
238   bool is_inline_type() const {
239     return (mask_bits(value(), inline_type_mask_in_place) == inline_type_pattern);
240   }
241 
242   // lock accessors (note that these assume lock_shift == 0)
243   bool is_locked()   const {
244     return (mask_bits(value(), lock_mask_in_place) != unlocked_value);
245   }
246   bool is_unlocked() const {
247     return (mask_bits(value(), lock_mask_in_place) == unlocked_value);
248   }
249   bool is_marked()   const {
250     return (mask_bits(value(), lock_mask_in_place) == marked_value);
251   }
252 
253   // is unlocked and not an inline type (which cannot be involved in locking, displacement or inflation)
254   // i.e. test both lock bits and the inline type bit together
255   bool is_neutral()  const {  // Not locked, or marked - a "clean" neutral state
256     return (mask_bits(value(), inline_type_mask_in_place) == unlocked_value);
257   }
258 
259   bool is_forwarded()   const {
260     return (mask_bits(value(), lock_mask_in_place) == marked_value);
261   }
262 
263   // Special temporary state of the markWord while being inflated.
264   // Code that looks at mark outside a lock need to take this into account.
265   bool is_being_inflated() const { return (value() == 0); }
266 
267   // Distinguished markword value - used when inflating over
268   // an existing stack-lock.  0 indicates the markword is "BUSY".
269   // Lockword mutators that use a LD...CAS idiom should always
270   // check for and avoid overwriting a 0 value installed by some
271   // other thread.  (They should spin or block instead.  The 0 value
272   // is transient and *should* be short-lived).
273   // Fast-locking does not use INFLATING.
274   static markWord INFLATING() { return zero(); }    // inflate-in-progress
275 
276   // Should this header be preserved during GC?
277   bool must_be_preserved(const oopDesc* obj) const {
278     return (!is_unlocked() || !has_no_hash() || (EnableValhalla && is_larval_state()));
279   }
280 
281   // WARNING: The following routines are used EXCLUSIVELY by
282   // synchronization functions. They are not really gc safe.
283   // They must get updated if markWord layout get changed.
284   markWord set_unlocked() const {
285     return markWord(value() | unlocked_value);
286   }
287   bool has_locker() const {
288     assert(LockingMode == LM_LEGACY, "should only be called with legacy stack locking");
289     return (value() & lock_mask_in_place) == locked_value;
290   }
291   BasicLock* locker() const {
292     assert(has_locker(), "check");
293     return (BasicLock*) value();
294   }
295 
296   bool is_fast_locked() const {
297     assert(LockingMode == LM_LIGHTWEIGHT, "should only be called with new lightweight locking");
298     return (value() & lock_mask_in_place) == locked_value;
299   }
300   markWord set_fast_locked() const {
301     // Clear the lock_mask_in_place bits to set locked_value:
302     return markWord(value() & ~lock_mask_in_place);
303   }
304 
305   bool has_monitor() const {
306     return ((value() & lock_mask_in_place) == monitor_value);
307   }
308   ObjectMonitor* monitor() const {
309     assert(has_monitor(), "check");
310     assert(!UseObjectMonitorTable, "Lightweight locking with OM table does not use markWord for monitors");
311     // Use xor instead of &~ to provide one extra tag-bit check.
312     return (ObjectMonitor*) (value() ^ monitor_value);
313   }
314   bool has_displaced_mark_helper() const {
315     intptr_t lockbits = value() & lock_mask_in_place;
316     if (LockingMode == LM_LIGHTWEIGHT) {
317       return !UseObjectMonitorTable && lockbits == monitor_value;
318     }
319     // monitor (0b10) | stack-locked (0b00)?
320     return (lockbits & unlocked_value) == 0;
321   }
322   markWord displaced_mark_helper() const;
323   void set_displaced_mark_helper(markWord m) const;
324   markWord copy_set_hash(intptr_t hash) const {
325     uintptr_t tmp = value() & (~hash_mask_in_place);
326     tmp |= ((hash & hash_mask) << hash_shift);
327     return markWord(tmp);
328   }
329   // it is only used to be stored into BasicLock as the
330   // indicator that the lock is using heavyweight monitor
331   static markWord unused_mark() {
332     return markWord(marked_value);
333   }
334   // the following two functions create the markWord to be
335   // stored into object header, it encodes monitor info
336   static markWord encode(BasicLock* lock) {
337     return from_pointer(lock);
338   }
339   static markWord encode(ObjectMonitor* monitor) {
340     assert(!UseObjectMonitorTable, "Lightweight locking with OM table does not use markWord for monitors");
341     uintptr_t tmp = (uintptr_t) monitor;
342     return markWord(tmp | monitor_value);
343   }
344 
345   markWord set_has_monitor() const {
346     return markWord((value() & ~lock_mask_in_place) | monitor_value);
347   }
348 
349   // used to encode pointers during GC
350   markWord clear_lock_bits() const { return markWord(value() & ~lock_mask_in_place); }
351 
352   // age operations
353   markWord set_marked()   { return markWord((value() & ~lock_mask_in_place) | marked_value); }
354   markWord set_unmarked() { return markWord((value() & ~lock_mask_in_place) | unlocked_value); }
355 
356   uint     age()           const { return (uint) mask_bits(value() >> age_shift, age_mask); }
357   markWord set_age(uint v) const {
358     assert((v & ~age_mask) == 0, "shouldn't overflow age field");
359     return markWord((value() & ~age_mask_in_place) | ((v & age_mask) << age_shift));
360   }
361   markWord incr_age()      const { return age() == max_age ? markWord(_value) : set_age(age() + 1); }
362 
363   // hash operations
364   intptr_t hash() const {
365     return mask_bits(value() >> hash_shift, hash_mask);
366   }
367 
368   bool has_no_hash() const {
369     return hash() == no_hash;
370   }
371 
372   // private buffered value operations
373   markWord enter_larval_state() const {
374     return markWord(value() | larval_bit_in_place);
375   }
376   markWord exit_larval_state() const {
377     return markWord(value() & ~larval_bit_in_place);
378   }
379   bool is_larval_state() const {
380     return (mask_bits(value(), larval_mask_in_place) == larval_pattern);
381   }
382 
383 #ifdef _LP64 // 64 bit encodings only
384   bool is_flat_array() const {
385     return (mask_bits(value(), flat_array_mask_in_place) == flat_array_pattern);
386   }
387 
388   bool is_null_free_array() const {
389     return (mask_bits(value(), null_free_array_mask_in_place) == null_free_array_pattern);
390   }
391 #else
392   bool is_flat_array() const {
393     fatal("Should not ask this for mark word, ask oopDesc");
394     return false;
395   }
396 
397   bool is_null_free_array() const {
398     fatal("Should not ask this for mark word, ask oopDesc");
399     return false;
400   }
401 #endif
402   // Prototype mark for initialization
403   static markWord prototype() {
404     return markWord( no_hash_in_place | no_lock_in_place );
405   }
406 
407   static markWord inline_type_prototype() {
408     return markWord(inline_type_pattern);
409   }
410 
411 #ifdef _LP64 // 64 bit encodings only
412   static markWord flat_array_prototype() {
413     return markWord(flat_array_pattern);
414   }
415 
416   static markWord null_free_array_prototype() {
417     return markWord(null_free_array_pattern);
418   }
419 #endif
420 
421   // Debugging
422   void print_on(outputStream* st, bool print_monitor_info = true) const;
423 
424   // Prepare address of oop for placement into mark
425   inline static markWord encode_pointer_as_mark(void* p) { return from_pointer(p).set_marked(); }
426 
427   // Recover address of oop from encoded form used in mark
428   inline void* decode_pointer() const {
429     return (EnableValhalla && _value < static_prototype_value_max) ? nullptr :
430       (void*) (clear_lock_bits().value());
431   }
432 
433   inline oop forwardee() const {
434     return cast_to_oop(decode_pointer());
435   }
436 };
437 
438 // Support atomic operations.
439 template<>
440 struct PrimitiveConversions::Translate<markWord> : public std::true_type {
441   typedef markWord Value;
442   typedef uintptr_t Decayed;
443 
444   static Decayed decay(const Value& x) { return x.value(); }
445   static Value recover(Decayed x) { return Value(x); }
446 };
447 
448 #endif // SHARE_OOPS_MARKWORD_HPP