author | mhorie |
Tue, 05 Jun 2018 09:29:15 +0200 | |
changeset 50398 | 4d6a5c267541 |
parent 50191 | c87fba18f2b9 |
child 50429 | 83aec1d357d4 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49041
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48618
diff
changeset
|
2 |
* Copyright (c) 1997, 2018, 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:
3262
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
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:
3262
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OOPS_OOP_INLINE_HPP |
26 |
#define SHARE_VM_OOPS_OOP_INLINE_HPP |
|
27 |
||
49593
4dd58ecc9912
8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents:
49592
diff
changeset
|
28 |
#include "gc/shared/collectedHeap.hpp" |
50056
ca1f2d4d4ec8
8202709: Move oopDesc::is_archive_object to MetaspaceShared::is_archive_object
stefank
parents:
49982
diff
changeset
|
29 |
#include "memory/metaspaceShared.hpp" |
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
30 |
#include "oops/access.inline.hpp" |
7397 | 31 |
#include "oops/arrayKlass.hpp" |
32 |
#include "oops/arrayOop.hpp" |
|
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49452
diff
changeset
|
33 |
#include "oops/compressedOops.inline.hpp" |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
34 |
#include "oops/klass.inline.hpp" |
7397 | 35 |
#include "oops/markOop.inline.hpp" |
36 |
#include "oops/oop.hpp" |
|
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39695
diff
changeset
|
37 |
#include "runtime/atomic.hpp" |
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
22908
diff
changeset
|
38 |
#include "runtime/orderAccess.inline.hpp" |
7397 | 39 |
#include "runtime/os.hpp" |
46625 | 40 |
#include "utilities/align.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13969
diff
changeset
|
41 |
#include "utilities/macros.hpp" |
7397 | 42 |
|
1 | 43 |
// Implementation of all inlined member functions defined in oop.hpp |
44 |
// We need a separate file to avoid circular references |
|
45 |
||
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
46 |
markOop oopDesc::mark() const { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
47 |
return HeapAccess<MO_VOLATILE>::load_at(as_oop(), mark_offset_in_bytes()); |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
48 |
} |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
49 |
|
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
50 |
markOop oopDesc::mark_raw() const { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
51 |
return _mark; |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
52 |
} |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
53 |
|
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
54 |
markOop* oopDesc::mark_addr_raw() const { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
55 |
return (markOop*) &_mark; |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
56 |
} |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
57 |
|
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
58 |
void oopDesc::set_mark(volatile markOop m) { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
59 |
HeapAccess<MO_VOLATILE>::store_at(as_oop(), mark_offset_in_bytes(), m); |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
60 |
} |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
61 |
|
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
62 |
void oopDesc::set_mark_raw(volatile markOop m) { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
63 |
_mark = m; |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
64 |
} |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
65 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
66 |
void oopDesc::release_set_mark(markOop m) { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
67 |
HeapAccess<MO_RELEASE>::store_at(as_oop(), mark_offset_in_bytes(), m); |
1 | 68 |
} |
69 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
70 |
markOop oopDesc::cas_set_mark(markOop new_mark, markOop old_mark) { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
71 |
return HeapAccess<>::atomic_cmpxchg_at(new_mark, as_oop(), mark_offset_in_bytes(), old_mark); |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
72 |
} |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
73 |
|
50398
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
74 |
markOop oopDesc::cas_set_mark_raw(markOop new_mark, markOop old_mark, atomic_memory_order order) { |
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
75 |
return Atomic::cmpxchg(new_mark, &_mark, old_mark, order); |
1 | 76 |
} |
77 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
78 |
void oopDesc::init_mark() { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
79 |
set_mark(markOopDesc::prototype_for_object(this)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
80 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
81 |
|
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
82 |
void oopDesc::init_mark_raw() { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
83 |
set_mark_raw(markOopDesc::prototype_for_object(this)); |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
84 |
} |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
85 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
86 |
Klass* oopDesc::klass() const { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
87 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
88 |
return Klass::decode_klass_not_null(_metadata._compressed_klass); |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
89 |
} else { |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
90 |
return _metadata._klass; |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
91 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
92 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
93 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
94 |
Klass* oopDesc::klass_or_null() const volatile { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
95 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
96 |
return Klass::decode_klass(_metadata._compressed_klass); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
97 |
} else { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
98 |
return _metadata._klass; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
99 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
100 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
101 |
|
41310 | 102 |
Klass* oopDesc::klass_or_null_acquire() const volatile { |
103 |
if (UseCompressedClassPointers) { |
|
104 |
// Workaround for non-const load_acquire parameter. |
|
105 |
const volatile narrowKlass* addr = &_metadata._compressed_klass; |
|
106 |
volatile narrowKlass* xaddr = const_cast<volatile narrowKlass*>(addr); |
|
107 |
return Klass::decode_klass(OrderAccess::load_acquire(xaddr)); |
|
108 |
} else { |
|
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47624
diff
changeset
|
109 |
return OrderAccess::load_acquire(&_metadata._klass); |
41310 | 110 |
} |
111 |
} |
|
112 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
113 |
Klass** oopDesc::klass_addr() { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
114 |
// Only used internally and with CMS and will not work with |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
115 |
// UseCompressedOops |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
116 |
assert(!UseCompressedClassPointers, "only supported with uncompressed klass pointers"); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
117 |
return (Klass**) &_metadata._klass; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
118 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
119 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
120 |
narrowKlass* oopDesc::compressed_klass_addr() { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
121 |
assert(UseCompressedClassPointers, "only called by compressed klass pointers"); |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
122 |
return &_metadata._compressed_klass; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
123 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
124 |
|
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
125 |
#define CHECK_SET_KLASS(k) \ |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
126 |
do { \ |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
127 |
assert(Universe::is_bootstrapping() || k != NULL, "NULL Klass"); \ |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
128 |
assert(Universe::is_bootstrapping() || k->is_klass(), "not a Klass"); \ |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
129 |
} while (0) |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
130 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
131 |
void oopDesc::set_klass(Klass* k) { |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
132 |
CHECK_SET_KLASS(k); |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
133 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
134 |
*compressed_klass_addr() = Klass::encode_klass_not_null(k); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
135 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
136 |
*klass_addr() = k; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
137 |
} |
1 | 138 |
} |
139 |
||
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
140 |
void oopDesc::release_set_klass(Klass* k) { |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
141 |
CHECK_SET_KLASS(k); |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
142 |
if (UseCompressedClassPointers) { |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
143 |
OrderAccess::release_store(compressed_klass_addr(), |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
144 |
Klass::encode_klass_not_null(k)); |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
145 |
} else { |
47634
6a0c42c40cd1
8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents:
47624
diff
changeset
|
146 |
OrderAccess::release_store(klass_addr(), k); |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
147 |
} |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
148 |
} |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
149 |
|
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
150 |
#undef CHECK_SET_KLASS |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
151 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
152 |
int oopDesc::klass_gap() const { |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
153 |
return *(int*)(((intptr_t)this) + klass_gap_offset_in_bytes()); |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
154 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
155 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
156 |
void oopDesc::set_klass_gap(int v) { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
157 |
if (UseCompressedClassPointers) { |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
158 |
*(int*)(((intptr_t)this) + klass_gap_offset_in_bytes()) = v; |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
159 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
160 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
161 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
162 |
void oopDesc::set_klass_to_list_ptr(oop k) { |
1 | 163 |
// This is only to be used during GC, for from-space objects, so no |
164 |
// barrier is needed. |
|
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
165 |
if (UseCompressedClassPointers) { |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49452
diff
changeset
|
166 |
_metadata._compressed_klass = (narrowKlass)CompressedOops::encode(k); // may be null (parnew overflow handling) |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
167 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
168 |
_metadata._klass = (Klass*)(address)k; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
169 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
170 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
171 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
172 |
oop oopDesc::list_ptr_from_klass() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
173 |
// This is only to be used during GC, for from-space objects. |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
174 |
if (UseCompressedClassPointers) { |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49452
diff
changeset
|
175 |
return CompressedOops::decode((narrowOop)_metadata._compressed_klass); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
176 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
177 |
// Special case for GC |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
178 |
return (oop)(address)_metadata._klass; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
179 |
} |
1 | 180 |
} |
181 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
182 |
bool oopDesc::is_a(Klass* k) const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
183 |
return klass()->is_subtype_of(k); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
184 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
185 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
186 |
int oopDesc::size() { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
187 |
return size_given_klass(klass()); |
10540
92d59dba2407
7085860: JSR 292: implement CallSite.setTargetNormal and setTargetVolatile as native methods
twisti
parents:
8725
diff
changeset
|
188 |
} |
1 | 189 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
190 |
int oopDesc::size_given_klass(Klass* klass) { |
1 | 191 |
int lh = klass->layout_helper(); |
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
192 |
int s; |
1 | 193 |
|
194 |
// lh is now a value computed at class initialization that may hint |
|
195 |
// at the size. For instances, this is positive and equal to the |
|
196 |
// size. For arrays, this is negative and provides log2 of the |
|
197 |
// array element size. For other oops, it is zero and thus requires |
|
198 |
// a virtual call. |
|
199 |
// |
|
200 |
// We go to all this trouble because the size computation is at the |
|
201 |
// heart of phase 2 of mark-compaction, and called for every object, |
|
202 |
// alive or dead. So the speed here is equal in importance to the |
|
203 |
// speed of allocation. |
|
204 |
||
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
205 |
if (lh > Klass::_lh_neutral_value) { |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
206 |
if (!Klass::layout_helper_needs_slow_path(lh)) { |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
207 |
s = lh >> LogHeapWordSize; // deliver size scaled by wordSize |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
208 |
} else { |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
209 |
s = klass->oop_size(this); |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
210 |
} |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
211 |
} else if (lh <= Klass::_lh_neutral_value) { |
1 | 212 |
// The most common case is instances; fall through if so. |
213 |
if (lh < Klass::_lh_neutral_value) { |
|
214 |
// Second most common case is arrays. We have to fetch the |
|
215 |
// length of the array, shift (multiply) it appropriately, |
|
216 |
// up to wordSize, add the header, and align to object size. |
|
217 |
size_t size_in_bytes; |
|
218 |
size_t array_length = (size_t) ((arrayOop)this)->length(); |
|
219 |
size_in_bytes = array_length << Klass::layout_helper_log2_element_size(lh); |
|
220 |
size_in_bytes += Klass::layout_helper_header_size(lh); |
|
221 |
||
222 |
// This code could be simplified, but by keeping array_header_in_bytes |
|
223 |
// in units of bytes and doing it this way we can round up just once, |
|
46620
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46529
diff
changeset
|
224 |
// skipping the intermediate round to HeapWordSize. |
750c6edff33b
8178500: Replace usages of round_to and round_down with align_up and align_down
stefank
parents:
46529
diff
changeset
|
225 |
s = (int)(align_up(size_in_bytes, MinObjAlignmentInBytes) / HeapWordSize); |
1 | 226 |
|
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
227 |
// ParNew (used by CMS), UseParallelGC and UseG1GC can change the length field |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
228 |
// of an "old copy" of an object array in the young gen so it indicates |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
229 |
// the grey portion of an already copied array. This will cause the first |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
230 |
// disjunct below to fail if the two comparands are computed across such |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
231 |
// a concurrent change. |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
232 |
// ParNew also runs with promotion labs (which look like int |
1 | 233 |
// filler arrays) which are subject to changing their declared size |
234 |
// when finally retiring a PLAB; this also can cause the first disjunct |
|
235 |
// to fail for another worker thread that is concurrently walking the block |
|
236 |
// offset table. Both these invariant failures are benign for their |
|
237 |
// current uses; we relax the assertion checking to cover these two cases below: |
|
238 |
// is_objArray() && is_forwarded() // covers first scenario above |
|
239 |
// || is_typeArray() // covers second scenario above |
|
240 |
// If and when UseParallelGC uses the same obj array oop stealing/chunking |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
241 |
// technique, we will need to suitably modify the assertion. |
1 | 242 |
assert((s == klass->oop_size(this)) || |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
243 |
(Universe::heap()->is_gc_active() && |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
244 |
((is_typeArray() && UseConcMarkSweepGC) || |
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
245 |
(is_objArray() && is_forwarded() && (UseConcMarkSweepGC || UseParallelGC || UseG1GC)))), |
1 | 246 |
"wrong array object size"); |
247 |
} else { |
|
248 |
// Must be zero, so bite the bullet and take the virtual call. |
|
249 |
s = klass->oop_size(this); |
|
250 |
} |
|
251 |
} |
|
252 |
||
39695
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
37480
diff
changeset
|
253 |
assert(s > 0, "Oop size must be greater than zero, not %d", s); |
46683
33808f7eadd5
8184753: Asserts against MinObjectAlignment should avoid integer division
shade
parents:
46625
diff
changeset
|
254 |
assert(is_object_aligned(s), "Oop size is not properly aligned: %d", s); |
1 | 255 |
return s; |
256 |
} |
|
257 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
258 |
bool oopDesc::is_instance() const { return klass()->is_instance_klass(); } |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
259 |
bool oopDesc::is_array() const { return klass()->is_array_klass(); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
260 |
bool oopDesc::is_objArray() const { return klass()->is_objArray_klass(); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
261 |
bool oopDesc::is_typeArray() const { return klass()->is_typeArray_klass(); } |
1 | 262 |
|
49041
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48618
diff
changeset
|
263 |
void* oopDesc::field_addr_raw(int offset) const { return reinterpret_cast<void*>(cast_from_oop<intptr_t>(as_oop()) + offset); } |
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48618
diff
changeset
|
264 |
void* oopDesc::field_addr(int offset) const { return Access<>::resolve(as_oop())->field_addr_raw(offset); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
265 |
|
49041
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48618
diff
changeset
|
266 |
template <class T> |
44122f767467
8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents:
48618
diff
changeset
|
267 |
T* oopDesc::obj_field_addr_raw(int offset) const { return (T*) field_addr_raw(offset); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
268 |
|
50191 | 269 |
template <typename T> |
270 |
size_t oopDesc::field_offset(T* p) const { return pointer_delta((void*)p, (void*)this, 1); } |
|
271 |
||
48618
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
47998
diff
changeset
|
272 |
template <DecoratorSet decorators> |
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
47998
diff
changeset
|
273 |
inline oop oopDesc::obj_field_access(int offset) const { return HeapAccess<decorators>::oop_load_at(as_oop(), offset); } |
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
274 |
inline oop oopDesc::obj_field(int offset) const { return HeapAccess<>::oop_load_at(as_oop(), offset); } |
48618
688e5cbd0b91
8192003: Refactor weak references in StringTable to use the Access API
eosterlund
parents:
47998
diff
changeset
|
275 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
276 |
inline void oopDesc::obj_field_put(int offset, oop value) { HeapAccess<>::oop_store_at(as_oop(), offset, value); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
277 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
278 |
inline jbyte oopDesc::byte_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
279 |
inline void oopDesc::byte_field_put(int offset, jbyte value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
280 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
281 |
inline jchar oopDesc::char_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
282 |
inline void oopDesc::char_field_put(int offset, jchar value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
1 | 283 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
284 |
inline jboolean oopDesc::bool_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
285 |
inline void oopDesc::bool_field_put(int offset, jboolean value) { HeapAccess<>::store_at(as_oop(), offset, jboolean(value & 1)); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
286 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
287 |
inline jshort oopDesc::short_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
288 |
inline void oopDesc::short_field_put(int offset, jshort value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
46722
ae2cfffe2e64
8185296: java_lang_Class::array_klass should be array_klass_acquire
coleenp
parents:
46710
diff
changeset
|
289 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
290 |
inline jint oopDesc::int_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
291 |
inline void oopDesc::int_field_put(int offset, jint value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
292 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
293 |
inline jlong oopDesc::long_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
294 |
inline void oopDesc::long_field_put(int offset, jlong value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
295 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
296 |
inline jfloat oopDesc::float_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
297 |
inline void oopDesc::float_field_put(int offset, jfloat value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
298 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
299 |
inline jdouble oopDesc::double_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47634
diff
changeset
|
300 |
inline void oopDesc::double_field_put(int offset, jdouble value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
301 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
302 |
bool oopDesc::is_locked() const { |
1 | 303 |
return mark()->is_locked(); |
304 |
} |
|
305 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
306 |
bool oopDesc::is_unlocked() const { |
1 | 307 |
return mark()->is_unlocked(); |
308 |
} |
|
309 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
310 |
bool oopDesc::has_bias_pattern() const { |
1 | 311 |
return mark()->has_bias_pattern(); |
312 |
} |
|
313 |
||
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
314 |
bool oopDesc::has_bias_pattern_raw() const { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
315 |
return mark_raw()->has_bias_pattern(); |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
316 |
} |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
317 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
318 |
// Used only for markSweep, scavenging |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
319 |
bool oopDesc::is_gc_marked() const { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
320 |
return mark_raw()->is_marked(); |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
321 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
322 |
|
1 | 323 |
// Used by scavengers |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
324 |
bool oopDesc::is_forwarded() const { |
1 | 325 |
// The extra heap check is needed since the obj might be locked, in which case the |
326 |
// mark would point to a stack location and have the sentinel bit cleared |
|
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
327 |
return mark_raw()->is_marked(); |
1 | 328 |
} |
329 |
||
330 |
// Used by scavengers |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
331 |
void oopDesc::forward_to(oop p) { |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
332 |
assert(check_obj_alignment(p), |
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
333 |
"forwarding to something not aligned"); |
1 | 334 |
assert(Universe::heap()->is_in_reserved(p), |
335 |
"forwarding to something not in heap"); |
|
50056
ca1f2d4d4ec8
8202709: Move oopDesc::is_archive_object to MetaspaceShared::is_archive_object
stefank
parents:
49982
diff
changeset
|
336 |
assert(!MetaspaceShared::is_archive_object(oop(this)) && |
ca1f2d4d4ec8
8202709: Move oopDesc::is_archive_object to MetaspaceShared::is_archive_object
stefank
parents:
49982
diff
changeset
|
337 |
!MetaspaceShared::is_archive_object(p), |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46722
diff
changeset
|
338 |
"forwarding archive object"); |
1 | 339 |
markOop m = markOopDesc::encode_pointer_as_mark(p); |
340 |
assert(m->decode_pointer() == p, "encoding must be reversable"); |
|
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
341 |
set_mark_raw(m); |
1 | 342 |
} |
343 |
||
344 |
// Used by parallel scavengers |
|
50398
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
345 |
bool oopDesc::cas_forward_to(oop p, markOop compare, atomic_memory_order order) { |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
346 |
assert(check_obj_alignment(p), |
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
347 |
"forwarding to something not aligned"); |
1 | 348 |
assert(Universe::heap()->is_in_reserved(p), |
349 |
"forwarding to something not in heap"); |
|
350 |
markOop m = markOopDesc::encode_pointer_as_mark(p); |
|
351 |
assert(m->decode_pointer() == p, "encoding must be reversable"); |
|
50398
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
352 |
return cas_set_mark_raw(m, compare, order) == compare; |
1 | 353 |
} |
354 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
355 |
oop oopDesc::forward_to_atomic(oop p) { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
356 |
markOop oldMark = mark_raw(); |
29689
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
357 |
markOop forwardPtrMark = markOopDesc::encode_pointer_as_mark(p); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
358 |
markOop curMark; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
359 |
|
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
360 |
assert(forwardPtrMark->decode_pointer() == p, "encoding must be reversable"); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
361 |
assert(sizeof(markOop) == sizeof(intptr_t), "CAS below requires this."); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
362 |
|
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
363 |
while (!oldMark->is_marked()) { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
364 |
curMark = cas_set_mark_raw(forwardPtrMark, oldMark); |
29689
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
365 |
assert(is_forwarded(), "object should have been forwarded"); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
366 |
if (curMark == oldMark) { |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
367 |
return NULL; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
368 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
369 |
// If the CAS was unsuccessful then curMark->is_marked() |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
370 |
// should return true as another thread has CAS'd in another |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
371 |
// forwarding pointer. |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
372 |
oldMark = curMark; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
373 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
374 |
return forwardee(); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
375 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
376 |
|
1 | 377 |
// Note that the forwardee is not the same thing as the displaced_mark. |
378 |
// The forwardee is used when copying during scavenge and mark-sweep. |
|
379 |
// It does need to clear the low two locking- and GC-related bits. |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
380 |
oop oopDesc::forwardee() const { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
381 |
return (oop) mark_raw()->decode_pointer(); |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
382 |
} |
1 | 383 |
|
50398
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
384 |
// Note that the forwardee is not the same thing as the displaced_mark. |
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
385 |
// The forwardee is used when copying during scavenge and mark-sweep. |
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
386 |
// It does need to clear the low two locking- and GC-related bits. |
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
387 |
oop oopDesc::forwardee_acquire() const { |
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
388 |
markOop m = OrderAccess::load_acquire(&_mark); |
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
389 |
return (oop) m->decode_pointer(); |
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
390 |
} |
4d6a5c267541
8154736: enhancement of cmpxchg and copy_to_survivor for ppc64
mhorie
parents:
50191
diff
changeset
|
391 |
|
1 | 392 |
// The following method needs to be MT safe. |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
393 |
uint oopDesc::age() const { |
1 | 394 |
assert(!is_forwarded(), "Attempt to read age from forwarded mark"); |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
395 |
if (has_displaced_mark_raw()) { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
396 |
return displaced_mark_raw()->age(); |
1 | 397 |
} else { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
398 |
return mark_raw()->age(); |
1 | 399 |
} |
400 |
} |
|
401 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
402 |
void oopDesc::incr_age() { |
1 | 403 |
assert(!is_forwarded(), "Attempt to increment age of forwarded mark"); |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
404 |
if (has_displaced_mark_raw()) { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
405 |
set_displaced_mark_raw(displaced_mark_raw()->incr_age()); |
1 | 406 |
} else { |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
407 |
set_mark_raw(mark_raw()->incr_age()); |
1 | 408 |
} |
409 |
} |
|
410 |
||
49982 | 411 |
#if INCLUDE_PARALLELGC |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
412 |
void oopDesc::pc_follow_contents(ParCompactionManager* cm) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
413 |
klass()->oop_pc_follow_contents(this, cm); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
414 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
415 |
|
35877
a2a62511d0f8
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range()
tschatzl
parents:
35862
diff
changeset
|
416 |
void oopDesc::pc_update_contents(ParCompactionManager* cm) { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
417 |
Klass* k = klass(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
418 |
if (!k->is_typeArray_klass()) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
419 |
// It might contain oops beyond the header, so take the virtual call. |
35877
a2a62511d0f8
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range()
tschatzl
parents:
35862
diff
changeset
|
420 |
k->oop_pc_update_pointers(this, cm); |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
421 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
422 |
// Else skip it. The TypeArrayKlass in the header never needs scavenging. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
423 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
424 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
425 |
void oopDesc::ps_push_contents(PSPromotionManager* pm) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
426 |
Klass* k = klass(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
427 |
if (!k->is_typeArray_klass()) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
428 |
// It might contain oops beyond the header, so take the virtual call. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
429 |
k->oop_ps_push_contents(this, pm); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
430 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
431 |
// Else skip it. The TypeArrayKlass in the header never needs scavenging. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
432 |
} |
49982 | 433 |
#endif // INCLUDE_PARALLELGC |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
434 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
435 |
#define OOP_ITERATE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
436 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
437 |
void oopDesc::oop_iterate(OopClosureType* blk) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
438 |
klass()->oop_oop_iterate##nv_suffix(this, blk); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
439 |
} \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
440 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
441 |
void oopDesc::oop_iterate(OopClosureType* blk, MemRegion mr) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
442 |
klass()->oop_oop_iterate_bounded##nv_suffix(this, blk, mr); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
443 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
444 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
445 |
#define OOP_ITERATE_SIZE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
446 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
447 |
int oopDesc::oop_iterate_size(OopClosureType* blk) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
448 |
Klass* k = klass(); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
449 |
int size = size_given_klass(k); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
450 |
k->oop_oop_iterate##nv_suffix(this, blk); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
451 |
return size; \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
452 |
} \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
453 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
454 |
int oopDesc::oop_iterate_size(OopClosureType* blk, MemRegion mr) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
455 |
Klass* k = klass(); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
456 |
int size = size_given_klass(k); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
457 |
k->oop_oop_iterate_bounded##nv_suffix(this, blk, mr); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
458 |
return size; \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
459 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
460 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
461 |
int oopDesc::oop_iterate_no_header(OopClosure* blk) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
462 |
// The NoHeaderExtendedOopClosure wraps the OopClosure and proxies all |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
463 |
// the do_oop calls, but turns off all other features in ExtendedOopClosure. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
464 |
NoHeaderExtendedOopClosure cl(blk); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
465 |
return oop_iterate_size(&cl); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
466 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
467 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
468 |
int oopDesc::oop_iterate_no_header(OopClosure* blk, MemRegion mr) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
469 |
NoHeaderExtendedOopClosure cl(blk); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
470 |
return oop_iterate_size(&cl, mr); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
471 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
472 |
|
49982 | 473 |
#if INCLUDE_OOP_OOP_ITERATE_BACKWARDS |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
474 |
#define OOP_ITERATE_BACKWARDS_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
475 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
476 |
inline void oopDesc::oop_iterate_backwards(OopClosureType* blk) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
477 |
klass()->oop_oop_iterate_backwards##nv_suffix(this, blk); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
478 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
479 |
#else |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
480 |
#define OOP_ITERATE_BACKWARDS_DEFN(OopClosureType, nv_suffix) |
49982 | 481 |
#endif |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
482 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
483 |
#define ALL_OOPDESC_OOP_ITERATE(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
484 |
OOP_ITERATE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
485 |
OOP_ITERATE_SIZE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
486 |
OOP_ITERATE_BACKWARDS_DEFN(OopClosureType, nv_suffix) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
487 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
488 |
ALL_OOP_OOP_ITERATE_CLOSURES_1(ALL_OOPDESC_OOP_ITERATE) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
489 |
ALL_OOP_OOP_ITERATE_CLOSURES_2(ALL_OOPDESC_OOP_ITERATE) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
490 |
|
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49452
diff
changeset
|
491 |
bool oopDesc::is_instanceof_or_null(oop obj, Klass* klass) { |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49452
diff
changeset
|
492 |
return obj == NULL || obj->klass()->is_subtype_of(klass); |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49452
diff
changeset
|
493 |
} |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
49452
diff
changeset
|
494 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
495 |
intptr_t oopDesc::identity_hash() { |
1 | 496 |
// Fast case; if the object is unlocked and the hash value is set, no locking is needed |
497 |
// Note: The mark must be read into local variable to avoid concurrent updates. |
|
498 |
markOop mrk = mark(); |
|
499 |
if (mrk->is_unlocked() && !mrk->has_no_hash()) { |
|
500 |
return mrk->hash(); |
|
501 |
} else if (mrk->is_marked()) { |
|
502 |
return mrk->hash(); |
|
503 |
} else { |
|
504 |
return slow_identity_hash(); |
|
505 |
} |
|
506 |
} |
|
507 |
||
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
508 |
bool oopDesc::has_displaced_mark_raw() const { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
509 |
return mark_raw()->has_displaced_mark_helper(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
510 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
511 |
|
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
512 |
markOop oopDesc::displaced_mark_raw() const { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
513 |
return mark_raw()->displaced_mark_helper(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
514 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
515 |
|
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
516 |
void oopDesc::set_displaced_mark_raw(markOop m) { |
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49593
diff
changeset
|
517 |
mark_raw()->set_displaced_mark_helper(m); |
1 | 518 |
} |
519 |
||
7397 | 520 |
#endif // SHARE_VM_OOPS_OOP_INLINE_HPP |