1 /*
 2  * Copyright (c) 2023, 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_INLINE_HPP
26 #define SHARE_OOPS_MARKWORD_INLINE_HPP
27 
28 #include "oops/markWord.hpp"
29 #include "oops/compressedOops.inline.hpp"
30 
31 #ifdef _LP64
32 markWord markWord::actual_mark() const {
33   assert(UseCompactObjectHeaders, "only safe when using compact headers");
34   if (has_displaced_mark_helper()) {
35     return displaced_mark_helper();
36   } else {
37     return *this;
38   }
39 }
40 
41 Klass* markWord::klass() const {
42   assert(UseCompactObjectHeaders, "only used with compact object headers");
43   assert(!CompressedKlassPointers::is_null(narrow_klass()), "narrow klass must not be null: " INTPTR_FORMAT, value());
44   return CompressedKlassPointers::decode_not_null(narrow_klass());
45 }
46 
47 Klass* markWord::klass_or_null() const {
48   assert(UseCompactObjectHeaders, "only used with compact object headers");
49   return CompressedKlassPointers::decode(narrow_klass());
50 }
51 
52 narrowKlass markWord::narrow_klass() const {
53   assert(UseCompactObjectHeaders, "only used with compact object headers");
54   return narrowKlass(value() >> klass_shift);
55 }
56 
57 markWord markWord::set_narrow_klass(narrowKlass nklass) const {
58   assert(UseCompactObjectHeaders, "only used with compact object headers");
59   return markWord((value() & ~klass_mask_in_place) | ((uintptr_t) nklass << klass_shift));
60 }
61 
62 markWord markWord::set_klass(Klass* klass) const {
63   assert(UseCompactObjectHeaders, "only used with compact object headers");
64   assert(UseCompressedClassPointers, "expect compressed klass pointers");
65   narrowKlass nklass = CompressedKlassPointers::encode(const_cast<Klass*>(klass));
66   return set_narrow_klass(nklass);
67 }
68 #endif // _LP64
69 
70 #endif // SHARE_OOPS_MARKWORD_INLINE_HPP