author | jiangli |
Fri, 02 Mar 2018 17:25:55 -0500 | |
changeset 49329 | 04ed29f9ef33 |
parent 47998 | fb0275c320a0 |
child 49592 | 77fb0be7d19f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
37248
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, 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:
4584
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4584
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:
4584
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
26 |
#include "classfile/altHashing.hpp" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
27 |
#include "classfile/javaClasses.inline.hpp" |
37248 | 28 |
#include "memory/resourceArea.hpp" |
7397 | 29 |
#include "oops/oop.inline.hpp" |
29084
1b732f2836ce
8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents:
29081
diff
changeset
|
30 |
#include "oops/verifyOopClosure.hpp" |
7397 | 31 |
#include "runtime/handles.inline.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
13728
diff
changeset
|
32 |
#include "runtime/thread.inline.hpp" |
7397 | 33 |
#include "utilities/copy.hpp" |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
34 |
#if INCLUDE_ALL_GCS |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
35 |
#include "gc/g1/g1Allocator.inline.hpp" |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
36 |
#endif |
1 | 37 |
|
38 |
bool always_do_update_barrier = false; |
|
39 |
||
40 |
void oopDesc::print_on(outputStream* st) const { |
|
41 |
if (this == NULL) { |
|
42 |
st->print_cr("NULL"); |
|
43 |
} else { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
44 |
klass()->oop_print_on(oop(this), st); |
1 | 45 |
} |
46 |
} |
|
47 |
||
48 |
void oopDesc::print_address_on(outputStream* st) const { |
|
37190
09d719d466a6
8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents:
33611
diff
changeset
|
49 |
st->print("{" INTPTR_FORMAT "}", p2i(this)); |
09d719d466a6
8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents:
33611
diff
changeset
|
50 |
|
1 | 51 |
} |
52 |
||
53 |
void oopDesc::print() { print_on(tty); } |
|
54 |
||
55 |
void oopDesc::print_address() { print_address_on(tty); } |
|
56 |
||
57 |
char* oopDesc::print_string() { |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
58 |
stringStream st; |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
59 |
print_on(&st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
60 |
return st.as_string(); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
61 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
62 |
|
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
63 |
void oopDesc::print_value() { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
64 |
print_value_on(tty); |
1 | 65 |
} |
66 |
||
67 |
char* oopDesc::print_value_string() { |
|
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
68 |
char buf[100]; |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
69 |
stringStream st(buf, sizeof(buf)); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
70 |
print_value_on(&st); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
71 |
return st.as_string(); |
1 | 72 |
} |
73 |
||
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
74 |
void oopDesc::print_value_on(outputStream* st) const { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
75 |
oop obj = oop(this); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
76 |
if (this == NULL) { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
77 |
st->print("NULL"); |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
78 |
} else if (java_lang_String::is_instance(obj)) { |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
79 |
java_lang_String::print(obj, st); |
37190
09d719d466a6
8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents:
33611
diff
changeset
|
80 |
print_address_on(st); |
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
81 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
82 |
klass()->oop_print_value_on(obj, st); |
4584
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
83 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
84 |
} |
e2a449e8cc6f
6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents:
2332
diff
changeset
|
85 |
|
1 | 86 |
|
87 |
void oopDesc::verify_on(outputStream* st) { |
|
88 |
if (this != NULL) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
89 |
klass()->oop_verify_on(this, st); |
1 | 90 |
} |
91 |
} |
|
92 |
||
93 |
||
94 |
void oopDesc::verify() { |
|
95 |
verify_on(tty); |
|
96 |
} |
|
97 |
||
98 |
intptr_t oopDesc::slow_identity_hash() { |
|
99 |
// slow case; we have to acquire the micro lock in order to locate the header |
|
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
37248
diff
changeset
|
100 |
Thread* THREAD = Thread::current(); |
1 | 101 |
ResetNoHandleMark rnm; // Might be called from LEAF/QUICK ENTRY |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
37248
diff
changeset
|
102 |
HandleMark hm(THREAD); |
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
37248
diff
changeset
|
103 |
Handle object(THREAD, this); |
1 | 104 |
return ObjectSynchronizer::identity_hash_value_for(object); |
105 |
} |
|
106 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
107 |
// When String table needs to rehash |
22757
b2cbb3680b4f
8033792: AltHashing used jint for imprecise bit shifting
minqi
parents:
17087
diff
changeset
|
108 |
unsigned int oopDesc::new_hash(juint seed) { |
17081
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
14583
diff
changeset
|
109 |
EXCEPTION_MARK; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
110 |
ResourceMark rm; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
111 |
int length; |
17081
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
14583
diff
changeset
|
112 |
jchar* chars = java_lang_String::as_unicode_string(this, length, THREAD); |
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
14583
diff
changeset
|
113 |
if (chars != NULL) { |
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
14583
diff
changeset
|
114 |
// Use alternate hashing algorithm on the string |
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
14583
diff
changeset
|
115 |
return AltHashing::murmur3_32(seed, chars, length); |
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
14583
diff
changeset
|
116 |
} else { |
17087
f0b76c4c93a0
8011661: Insufficient memory message says "malloc" when sometimes it should say "mmap"
ccheung
parents:
17081
diff
changeset
|
117 |
vm_exit_out_of_memory(length, OOM_MALLOC_ERROR, "unable to create Unicode strings for String table rehash"); |
17081
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
14583
diff
changeset
|
118 |
return 0; |
cf52c2bc3f8c
8011773: Some tests on Interned String crashed JVM with OOM
hseigel
parents:
14583
diff
changeset
|
119 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
120 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
121 |
|
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
122 |
// used only for asserts and guarantees |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
123 |
bool oopDesc::is_oop(oop obj, bool ignore_mark_word) { |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
124 |
if (!check_obj_alignment(obj)) return false; |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
125 |
if (!Universe::heap()->is_in_reserved(obj)) return false; |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
126 |
// obj is aligned and accessible in heap |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
127 |
if (Universe::heap()->is_in_reserved(obj->klass_or_null())) return false; |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
128 |
|
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
129 |
// Header verification: the mark is typically non-NULL. If we're |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
130 |
// at a safepoint, it must not be null. |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
131 |
// Outside of a safepoint, the header could be changing (for example, |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
132 |
// another thread could be inflating a lock on this object). |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
133 |
if (ignore_mark_word) { |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
134 |
return true; |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
135 |
} |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
136 |
if (obj->mark() != NULL) { |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
137 |
return true; |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
138 |
} |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
139 |
return !SafepointSynchronize::is_at_safepoint(); |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
140 |
} |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
141 |
|
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
142 |
// used only for asserts and guarantees |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
143 |
bool oopDesc::is_oop_or_null(oop obj, bool ignore_mark_word) { |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
144 |
return obj == NULL ? true : is_oop(obj, ignore_mark_word); |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
145 |
} |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
146 |
|
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
147 |
#ifndef PRODUCT |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
148 |
// used only for asserts |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
149 |
bool oopDesc::is_unlocked_oop() const { |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
150 |
if (!Universe::heap()->is_in_reserved(this)) return false; |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
151 |
return mark()->is_unlocked(); |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
152 |
} |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
153 |
#endif // PRODUCT |
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
154 |
|
1 | 155 |
VerifyOopClosure VerifyOopClosure::verify_oop; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
156 |
|
29084
1b732f2836ce
8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents:
29081
diff
changeset
|
157 |
template <class T> void VerifyOopClosure::do_oop_work(T* p) { |
1b732f2836ce
8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents:
29081
diff
changeset
|
158 |
oop obj = oopDesc::load_decode_heap_oop(p); |
46968
9119841280f4
8160399: is_oop_or_null involves undefined behavior
coleenp
parents:
46810
diff
changeset
|
159 |
guarantee(oopDesc::is_oop_or_null(obj), "invalid oop: " INTPTR_FORMAT, p2i((oopDesc*) obj)); |
29084
1b732f2836ce
8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents:
29081
diff
changeset
|
160 |
} |
1b732f2836ce
8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents:
29081
diff
changeset
|
161 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
162 |
void VerifyOopClosure::do_oop(oop* p) { VerifyOopClosure::do_oop_work(p); } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
163 |
void VerifyOopClosure::do_oop(narrowOop* p) { VerifyOopClosure::do_oop_work(p); } |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
164 |
|
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
165 |
// type test operations that doesn't require inclusion of oop.inline.hpp. |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
166 |
bool oopDesc::is_instance_noinline() const { return is_instance(); } |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
167 |
bool oopDesc::is_array_noinline() const { return is_array(); } |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
168 |
bool oopDesc::is_objArray_noinline() const { return is_objArray(); } |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
169 |
bool oopDesc::is_typeArray_noinline() const { return is_typeArray(); } |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
170 |
|
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
171 |
bool oopDesc::has_klass_gap() { |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
172 |
// Only has a klass gap when compressed class pointers are used. |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
173 |
return UseCompressedClassPointers; |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
24424
diff
changeset
|
174 |
} |
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
175 |
|
47998
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
176 |
oop oopDesc::obj_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::oop_load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
177 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
178 |
void oopDesc::obj_field_put_raw(int offset, oop value) { RawAccess<>::oop_store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
179 |
void oopDesc::release_obj_field_put(int offset, oop value) { HeapAccess<MO_RELEASE>::oop_store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
180 |
void oopDesc::obj_field_put_volatile(int offset, oop value) { HeapAccess<MO_SEQ_CST>::oop_store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
181 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
182 |
address oopDesc::address_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
183 |
address oopDesc::address_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
184 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
185 |
void oopDesc::address_field_put(int offset, address value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
186 |
void oopDesc::release_address_field_put(int offset, address value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
187 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
188 |
Metadata* oopDesc::metadata_field(int offset) const { return HeapAccess<>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
189 |
void oopDesc::metadata_field_put(int offset, Metadata* value) { HeapAccess<>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
190 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
191 |
Metadata* oopDesc::metadata_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
192 |
void oopDesc::release_metadata_field_put(int offset, Metadata* value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
193 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
194 |
jbyte oopDesc::byte_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
195 |
void oopDesc::release_byte_field_put(int offset, jbyte value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
196 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
197 |
jchar oopDesc::char_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
198 |
void oopDesc::release_char_field_put(int offset, jchar value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
199 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
200 |
jboolean oopDesc::bool_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
201 |
void oopDesc::release_bool_field_put(int offset, jboolean value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, jboolean(value & 1)); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
202 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
203 |
jint oopDesc::int_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
204 |
void oopDesc::release_int_field_put(int offset, jint value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
205 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
206 |
jshort oopDesc::short_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
207 |
void oopDesc::release_short_field_put(int offset, jshort value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
208 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
209 |
jlong oopDesc::long_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
210 |
void oopDesc::release_long_field_put(int offset, jlong value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
211 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
212 |
jfloat oopDesc::float_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
213 |
void oopDesc::release_float_field_put(int offset, jfloat value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
214 |
|
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
215 |
jdouble oopDesc::double_field_acquire(int offset) const { return HeapAccess<MO_ACQUIRE>::load_at(as_oop(), offset); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
216 |
void oopDesc::release_double_field_put(int offset, jdouble value) { HeapAccess<MO_RELEASE>::store_at(as_oop(), offset, value); } |
fb0275c320a0
8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents:
47216
diff
changeset
|
217 |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
218 |
#if INCLUDE_CDS_JAVA_HEAP |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
219 |
bool oopDesc::is_archive_object(oop p) { |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
220 |
return (p == NULL) ? false : G1ArchiveAllocator::is_archive_object(p); |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
221 |
} |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46271
diff
changeset
|
222 |
#endif |