author | eosterlund |
Fri, 13 Oct 2017 15:08:56 +0200 | |
changeset 47624 | b055cb5170f5 |
parent 47609 | a1f68e415b48 |
child 47634 | 6a0c42c40cd1 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46415
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
41310
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:
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 |
||
30764 | 28 |
#include "gc/shared/ageTable.hpp" |
29 |
#include "gc/shared/barrierSet.inline.hpp" |
|
30 |
#include "gc/shared/cardTableModRefBS.hpp" |
|
31 |
#include "gc/shared/collectedHeap.inline.hpp" |
|
32 |
#include "gc/shared/genCollectedHeap.hpp" |
|
33 |
#include "gc/shared/generation.hpp" |
|
7397 | 34 |
#include "oops/arrayKlass.hpp" |
35 |
#include "oops/arrayOop.hpp" |
|
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
36 |
#include "oops/klass.inline.hpp" |
7397 | 37 |
#include "oops/markOop.inline.hpp" |
38 |
#include "oops/oop.hpp" |
|
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39695
diff
changeset
|
39 |
#include "runtime/atomic.hpp" |
24351
61b33cc6d3cf
8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents:
22908
diff
changeset
|
40 |
#include "runtime/orderAccess.inline.hpp" |
7397 | 41 |
#include "runtime/os.hpp" |
46625 | 42 |
#include "utilities/align.hpp" |
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
13969
diff
changeset
|
43 |
#include "utilities/macros.hpp" |
7397 | 44 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
45 |
inline void update_barrier_set(void* p, oop v, bool release = false) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
46 |
assert(oopDesc::bs() != NULL, "Uninitialized bs in oop!"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
47 |
oopDesc::bs()->write_ref_field(p, v, release); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
48 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
49 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
50 |
template <class T> inline void update_barrier_set_pre(T* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
51 |
oopDesc::bs()->write_ref_field_pre(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
52 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
53 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
54 |
template <class T> void oop_store(T* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
55 |
if (always_do_update_barrier) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
56 |
oop_store((volatile T*)p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
57 |
} else { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
58 |
update_barrier_set_pre(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
59 |
oopDesc::encode_store_heap_oop(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
60 |
// always_do_update_barrier == false => |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
61 |
// Either we are at a safepoint (in GC) or CMS is not used. In both |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
62 |
// cases it's unnecessary to mark the card as dirty with release sematics. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
63 |
update_barrier_set((void*)p, v, false /* release */); // cast away type |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
64 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
65 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
66 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
67 |
template <class T> void oop_store(volatile T* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
68 |
update_barrier_set_pre((T*)p, v); // cast away volatile |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
69 |
// Used by release_obj_field_put, so use release_store_ptr. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
70 |
oopDesc::release_encode_store_heap_oop(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
71 |
// When using CMS we must mark the card corresponding to p as dirty |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
72 |
// with release sematics to prevent that CMS sees the dirty card but |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
73 |
// not the new value v at p due to reordering of the two |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
74 |
// stores. Note that CMS has a concurrent precleaning phase, where |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
75 |
// it reads the card table while the Java threads are running. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
76 |
update_barrier_set((void*)p, v, true /* release */); // cast away type |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
77 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
78 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
79 |
// Should replace *addr = oop assignments where addr type depends on UseCompressedOops |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
80 |
// (without having to remember the function name this calls). |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
81 |
inline void oop_store_raw(HeapWord* addr, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
82 |
if (UseCompressedOops) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
83 |
oopDesc::encode_store_heap_oop((narrowOop*)addr, value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
84 |
} else { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
85 |
oopDesc::encode_store_heap_oop((oop*)addr, value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
86 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
87 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
88 |
|
1 | 89 |
// Implementation of all inlined member functions defined in oop.hpp |
90 |
// We need a separate file to avoid circular references |
|
91 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
92 |
void oopDesc::release_set_mark(markOop m) { |
1 | 93 |
OrderAccess::release_store_ptr(&_mark, m); |
94 |
} |
|
95 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
96 |
markOop oopDesc::cas_set_mark(markOop new_mark, markOop old_mark) { |
46958
a13bd8c6b7a2
8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents:
46810
diff
changeset
|
97 |
return Atomic::cmpxchg(new_mark, &_mark, old_mark); |
1 | 98 |
} |
99 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
100 |
void oopDesc::init_mark() { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
101 |
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
|
102 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
103 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
104 |
Klass* oopDesc::klass() const { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
105 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
106 |
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
|
107 |
} else { |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
108 |
return _metadata._klass; |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
109 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
110 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
111 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
112 |
Klass* oopDesc::klass_or_null() const volatile { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
113 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
114 |
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
|
115 |
} else { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
116 |
return _metadata._klass; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
117 |
} |
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 |
|
41310 | 120 |
Klass* oopDesc::klass_or_null_acquire() const volatile { |
121 |
if (UseCompressedClassPointers) { |
|
122 |
// Workaround for non-const load_acquire parameter. |
|
123 |
const volatile narrowKlass* addr = &_metadata._compressed_klass; |
|
124 |
volatile narrowKlass* xaddr = const_cast<volatile narrowKlass*>(addr); |
|
125 |
return Klass::decode_klass(OrderAccess::load_acquire(xaddr)); |
|
126 |
} else { |
|
127 |
return (Klass*)OrderAccess::load_ptr_acquire(&_metadata._klass); |
|
128 |
} |
|
129 |
} |
|
130 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
131 |
Klass** oopDesc::klass_addr() { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
132 |
// 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
|
133 |
// UseCompressedOops |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
134 |
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
|
135 |
return (Klass**) &_metadata._klass; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
136 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
137 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
138 |
narrowKlass* oopDesc::compressed_klass_addr() { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
139 |
assert(UseCompressedClassPointers, "only called by compressed klass pointers"); |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
140 |
return &_metadata._compressed_klass; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
141 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
142 |
|
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
143 |
#define CHECK_SET_KLASS(k) \ |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
144 |
do { \ |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
145 |
assert(Universe::is_bootstrapping() || k != NULL, "NULL Klass"); \ |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
146 |
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
|
147 |
} while (0) |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
148 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
149 |
void oopDesc::set_klass(Klass* k) { |
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
150 |
CHECK_SET_KLASS(k); |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
151 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
152 |
*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
|
153 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
154 |
*klass_addr() = k; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
155 |
} |
1 | 156 |
} |
157 |
||
41177
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
158 |
void oopDesc::release_set_klass(Klass* k) { |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
159 |
CHECK_SET_KLASS(k); |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
160 |
if (UseCompressedClassPointers) { |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
161 |
OrderAccess::release_store(compressed_klass_addr(), |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
162 |
Klass::encode_klass_not_null(k)); |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
163 |
} else { |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
164 |
OrderAccess::release_store_ptr(klass_addr(), k); |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
165 |
} |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
166 |
} |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
167 |
|
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
168 |
#undef CHECK_SET_KLASS |
3869072fc2e1
8165808: Add release barriers when allocating objects with concurrent collection
kbarrett
parents:
40655
diff
changeset
|
169 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
170 |
int oopDesc::klass_gap() const { |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
171 |
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
|
172 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
173 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
174 |
void oopDesc::set_klass_gap(int v) { |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
175 |
if (UseCompressedClassPointers) { |
593
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
176 |
*(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
|
177 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
178 |
} |
803947e176bd
6696264: assert("narrow oop can never be zero") for GCBasher & ParNewGC
coleenp
parents:
382
diff
changeset
|
179 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
180 |
void oopDesc::set_klass_to_list_ptr(oop k) { |
1 | 181 |
// This is only to be used during GC, for from-space objects, so no |
182 |
// barrier is needed. |
|
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19319
diff
changeset
|
183 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
184 |
_metadata._compressed_klass = (narrowKlass)encode_heap_oop(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
|
185 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
186 |
_metadata._klass = (Klass*)(address)k; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
187 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
188 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
189 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
190 |
oop oopDesc::list_ptr_from_klass() { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
191 |
// 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
|
192 |
if (UseCompressedClassPointers) { |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
15484
diff
changeset
|
193 |
return decode_heap_oop((narrowOop)_metadata._compressed_klass); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
194 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
195 |
// Special case for GC |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
196 |
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
|
197 |
} |
1 | 198 |
} |
199 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
200 |
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
|
201 |
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
|
202 |
} |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
203 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
204 |
int oopDesc::size() { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
205 |
return size_given_klass(klass()); |
10540
92d59dba2407
7085860: JSR 292: implement CallSite.setTargetNormal and setTargetVolatile as native methods
twisti
parents:
8725
diff
changeset
|
206 |
} |
1 | 207 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
208 |
int oopDesc::size_given_klass(Klass* klass) { |
1 | 209 |
int lh = klass->layout_helper(); |
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
210 |
int s; |
1 | 211 |
|
212 |
// lh is now a value computed at class initialization that may hint |
|
213 |
// at the size. For instances, this is positive and equal to the |
|
214 |
// size. For arrays, this is negative and provides log2 of the |
|
215 |
// array element size. For other oops, it is zero and thus requires |
|
216 |
// a virtual call. |
|
217 |
// |
|
218 |
// We go to all this trouble because the size computation is at the |
|
219 |
// heart of phase 2 of mark-compaction, and called for every object, |
|
220 |
// alive or dead. So the speed here is equal in importance to the |
|
221 |
// speed of allocation. |
|
222 |
||
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
223 |
if (lh > Klass::_lh_neutral_value) { |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
224 |
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
|
225 |
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
|
226 |
} else { |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
227 |
s = klass->oop_size(this); |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
228 |
} |
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
8107
diff
changeset
|
229 |
} else if (lh <= Klass::_lh_neutral_value) { |
1 | 230 |
// The most common case is instances; fall through if so. |
231 |
if (lh < Klass::_lh_neutral_value) { |
|
232 |
// Second most common case is arrays. We have to fetch the |
|
233 |
// length of the array, shift (multiply) it appropriately, |
|
234 |
// up to wordSize, add the header, and align to object size. |
|
235 |
size_t size_in_bytes; |
|
236 |
size_t array_length = (size_t) ((arrayOop)this)->length(); |
|
237 |
size_in_bytes = array_length << Klass::layout_helper_log2_element_size(lh); |
|
238 |
size_in_bytes += Klass::layout_helper_header_size(lh); |
|
239 |
||
240 |
// This code could be simplified, but by keeping array_header_in_bytes |
|
241 |
// 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
|
242 |
// 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
|
243 |
s = (int)(align_up(size_in_bytes, MinObjAlignmentInBytes) / HeapWordSize); |
1 | 244 |
|
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
245 |
// 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
|
246 |
// 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
|
247 |
// 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
|
248 |
// 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
|
249 |
// a concurrent change. |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
250 |
// ParNew also runs with promotion labs (which look like int |
1 | 251 |
// filler arrays) which are subject to changing their declared size |
252 |
// when finally retiring a PLAB; this also can cause the first disjunct |
|
253 |
// to fail for another worker thread that is concurrently walking the block |
|
254 |
// offset table. Both these invariant failures are benign for their |
|
255 |
// current uses; we relax the assertion checking to cover these two cases below: |
|
256 |
// is_objArray() && is_forwarded() // covers first scenario above |
|
257 |
// || is_typeArray() // covers second scenario above |
|
258 |
// 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
|
259 |
// technique, we will need to suitably modify the assertion. |
1 | 260 |
assert((s == klass->oop_size(this)) || |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
261 |
(Universe::heap()->is_gc_active() && |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
262 |
((is_typeArray() && UseConcMarkSweepGC) || |
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
25715
diff
changeset
|
263 |
(is_objArray() && is_forwarded() && (UseConcMarkSweepGC || UseParallelGC || UseG1GC)))), |
1 | 264 |
"wrong array object size"); |
265 |
} else { |
|
266 |
// Must be zero, so bite the bullet and take the virtual call. |
|
267 |
s = klass->oop_size(this); |
|
268 |
} |
|
269 |
} |
|
270 |
||
39695
946f1321c075
8158946: btree009 fails with assert(s > 0) failed: Bad size calculated
drwhite
parents:
37480
diff
changeset
|
271 |
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
|
272 |
assert(is_object_aligned(s), "Oop size is not properly aligned: %d", s); |
1 | 273 |
return s; |
274 |
} |
|
275 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
276 |
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
|
277 |
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
|
278 |
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
|
279 |
bool oopDesc::is_typeArray() const { return klass()->is_typeArray_klass(); } |
1 | 280 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
281 |
void* oopDesc::field_base(int offset) const { return (void*)&((char*)this)[offset]; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
282 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
283 |
jbyte* oopDesc::byte_field_addr(int offset) const { return (jbyte*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
284 |
jchar* oopDesc::char_field_addr(int offset) const { return (jchar*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
285 |
jboolean* oopDesc::bool_field_addr(int offset) const { return (jboolean*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
286 |
jint* oopDesc::int_field_addr(int offset) const { return (jint*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
287 |
jshort* oopDesc::short_field_addr(int offset) const { return (jshort*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
288 |
jlong* oopDesc::long_field_addr(int offset) const { return (jlong*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
289 |
jfloat* oopDesc::float_field_addr(int offset) const { return (jfloat*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
290 |
jdouble* oopDesc::double_field_addr(int offset) const { return (jdouble*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
291 |
Metadata** oopDesc::metadata_field_addr(int offset) const { return (Metadata**)field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
292 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
293 |
template <class T> T* oopDesc::obj_field_addr(int offset) const { return (T*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
294 |
address* oopDesc::address_field_addr(int offset) const { return (address*) field_base(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
295 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
296 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
297 |
// Functions for getting and setting oops within instance objects. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
298 |
// If the oops are compressed, the type passed to these overloaded functions |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
299 |
// is narrowOop. All functions are overloaded so they can be called by |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
300 |
// template functions without conditionals (the compiler instantiates via |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
301 |
// the right type and inlines the appopriate code). |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
302 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
303 |
// Algorithm for encoding and decoding oops from 64 bit pointers to 32 bit |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
304 |
// offset from the heap base. Saving the check for null can save instructions |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
305 |
// in inner GC loops so these are separated. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
306 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
307 |
inline bool check_obj_alignment(oop obj) { |
36572
bdbf53032b6a
8149973: Optimize object alignment check in debug builds.
ddmitriev
parents:
35877
diff
changeset
|
308 |
return (cast_from_oop<intptr_t>(obj) & MinObjAlignmentInBytesMask) == 0; |
1894
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1607
diff
changeset
|
309 |
} |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1607
diff
changeset
|
310 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
311 |
oop oopDesc::decode_heap_oop_not_null(narrowOop v) { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
312 |
assert(!is_null(v), "narrow oop value can never be zero"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
313 |
address base = Universe::narrow_oop_base(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
314 |
int shift = Universe::narrow_oop_shift(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
315 |
oop result = (oop)(void*)((uintptr_t)base + ((uintptr_t)v << shift)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
316 |
assert(check_obj_alignment(result), "address not aligned: " INTPTR_FORMAT, p2i((void*) result)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
317 |
return result; |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
318 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
319 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
320 |
oop oopDesc::decode_heap_oop(narrowOop v) { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
321 |
return is_null(v) ? (oop)NULL : decode_heap_oop_not_null(v); |
1 | 322 |
} |
323 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
324 |
narrowOop oopDesc::encode_heap_oop_not_null(oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
325 |
assert(!is_null(v), "oop value can never be zero"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
326 |
assert(check_obj_alignment(v), "Address not aligned"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
327 |
assert(Universe::heap()->is_in_reserved(v), "Address not in heap"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
328 |
address base = Universe::narrow_oop_base(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
329 |
int shift = Universe::narrow_oop_shift(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
330 |
uint64_t pd = (uint64_t)(pointer_delta((void*)v, (void*)base, 1)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
331 |
assert(OopEncodingHeapMax > pd, "change encoding max if new encoding"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
332 |
uint64_t result = pd >> shift; |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
333 |
assert((result & CONST64(0xffffffff00000000)) == 0, "narrow oop overflow"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
334 |
assert(decode_heap_oop(result) == v, "reversibility"); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
335 |
return (narrowOop)result; |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
336 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
337 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35498
diff
changeset
|
338 |
narrowOop oopDesc::encode_heap_oop(oop v) { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
339 |
return (is_null(v)) ? (narrowOop)0 : encode_heap_oop_not_null(v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
340 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
341 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
342 |
// Load and decode an oop out of the Java heap into a wide oop. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
343 |
oop oopDesc::load_decode_heap_oop_not_null(narrowOop* p) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
344 |
return decode_heap_oop_not_null(*p); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
345 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
346 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
347 |
// Load and decode an oop out of the heap accepting null |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
348 |
oop oopDesc::load_decode_heap_oop(narrowOop* p) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
349 |
return decode_heap_oop(*p); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
350 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
351 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
352 |
// Encode and store a heap oop. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
353 |
void oopDesc::encode_store_heap_oop_not_null(narrowOop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
354 |
*p = encode_heap_oop_not_null(v); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
355 |
} |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
382
diff
changeset
|
356 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
357 |
// Encode and store a heap oop allowing for null. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
358 |
void oopDesc::encode_store_heap_oop(narrowOop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
359 |
*p = encode_heap_oop(v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
360 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
361 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
362 |
// Store heap oop as is for volatile fields. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
363 |
void oopDesc::release_store_heap_oop(volatile oop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
364 |
OrderAccess::release_store_ptr(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
365 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
366 |
void oopDesc::release_store_heap_oop(volatile narrowOop* p, narrowOop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
367 |
OrderAccess::release_store(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
368 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
369 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
370 |
void oopDesc::release_encode_store_heap_oop_not_null(volatile narrowOop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
371 |
// heap oop is not pointer sized. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
372 |
OrderAccess::release_store(p, encode_heap_oop_not_null(v)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
373 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
374 |
void oopDesc::release_encode_store_heap_oop_not_null(volatile oop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
375 |
OrderAccess::release_store_ptr(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
376 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
377 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
378 |
void oopDesc::release_encode_store_heap_oop(volatile oop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
379 |
OrderAccess::release_store_ptr(p, v); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
380 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
381 |
void oopDesc::release_encode_store_heap_oop(volatile narrowOop* p, oop v) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
382 |
OrderAccess::release_store(p, encode_heap_oop(v)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
383 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
384 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
385 |
// These functions are only used to exchange oop fields in instances, |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
386 |
// not headers. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
387 |
oop oopDesc::atomic_exchange_oop(oop exchange_value, volatile HeapWord *dest) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
388 |
if (UseCompressedOops) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
389 |
// encode exchange value from oop to T |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
390 |
narrowOop val = encode_heap_oop(exchange_value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
391 |
narrowOop old = (narrowOop)Atomic::xchg(val, (narrowOop*)dest); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
392 |
// decode old from T to oop |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
393 |
return decode_heap_oop(old); |
1 | 394 |
} else { |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
395 |
return (oop)Atomic::xchg_ptr(exchange_value, (oop*)dest); |
1 | 396 |
} |
397 |
} |
|
398 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
399 |
oop oopDesc::atomic_compare_exchange_oop(oop exchange_value, |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
400 |
volatile HeapWord *dest, |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
401 |
oop compare_value, |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
402 |
bool prebarrier) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
403 |
if (UseCompressedOops) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
404 |
if (prebarrier) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
405 |
update_barrier_set_pre((narrowOop*)dest, exchange_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
406 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
407 |
// encode exchange and compare value from oop to T |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
408 |
narrowOop val = encode_heap_oop(exchange_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
409 |
narrowOop cmp = encode_heap_oop(compare_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
410 |
|
46958
a13bd8c6b7a2
8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents:
46810
diff
changeset
|
411 |
narrowOop old = Atomic::cmpxchg(val, (narrowOop*)dest, cmp); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
412 |
// decode old from T to oop |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
413 |
return decode_heap_oop(old); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
414 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
415 |
if (prebarrier) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
416 |
update_barrier_set_pre((oop*)dest, exchange_value); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
417 |
} |
46958
a13bd8c6b7a2
8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents:
46810
diff
changeset
|
418 |
return Atomic::cmpxchg(exchange_value, (oop*)dest, compare_value); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
419 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
420 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
421 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
422 |
// In order to put or get a field out of an instance, must first check |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
423 |
// if the field has been compressed and uncompress it. |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
424 |
oop oopDesc::obj_field(int offset) const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
425 |
return UseCompressedOops ? |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
426 |
load_decode_heap_oop(obj_field_addr<narrowOop>(offset)) : |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
427 |
load_decode_heap_oop(obj_field_addr<oop>(offset)); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
428 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
429 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
430 |
void oopDesc::obj_field_put(int offset, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
431 |
UseCompressedOops ? oop_store(obj_field_addr<narrowOop>(offset), value) : |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
432 |
oop_store(obj_field_addr<oop>(offset), value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
433 |
} |
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 |
void oopDesc::obj_field_put_raw(int offset, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
436 |
UseCompressedOops ? |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
437 |
encode_store_heap_oop(obj_field_addr<narrowOop>(offset), value) : |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
438 |
encode_store_heap_oop(obj_field_addr<oop>(offset), value); |
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 |
void oopDesc::obj_field_put_volatile(int offset, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
441 |
OrderAccess::release(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
442 |
obj_field_put(offset, value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
443 |
OrderAccess::fence(); |
1 | 444 |
} |
445 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
446 |
Metadata* oopDesc::metadata_field(int offset) const { return *metadata_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
447 |
void oopDesc::metadata_field_put(int offset, Metadata* value) { *metadata_field_addr(offset) = value; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
448 |
|
46722
ae2cfffe2e64
8185296: java_lang_Class::array_klass should be array_klass_acquire
coleenp
parents:
46710
diff
changeset
|
449 |
Metadata* oopDesc::metadata_field_acquire(int offset) const { |
ae2cfffe2e64
8185296: java_lang_Class::array_klass should be array_klass_acquire
coleenp
parents:
46710
diff
changeset
|
450 |
return (Metadata*)OrderAccess::load_ptr_acquire(metadata_field_addr(offset)); |
ae2cfffe2e64
8185296: java_lang_Class::array_klass should be array_klass_acquire
coleenp
parents:
46710
diff
changeset
|
451 |
} |
ae2cfffe2e64
8185296: java_lang_Class::array_klass should be array_klass_acquire
coleenp
parents:
46710
diff
changeset
|
452 |
|
46710
941f16147746
8182397: Race in field updates when creating ArrayKlasses can lead to crash
coleenp
parents:
46683
diff
changeset
|
453 |
void oopDesc::release_metadata_field_put(int offset, Metadata* value) { |
941f16147746
8182397: Race in field updates when creating ArrayKlasses can lead to crash
coleenp
parents:
46683
diff
changeset
|
454 |
OrderAccess::release_store_ptr(metadata_field_addr(offset), value); |
941f16147746
8182397: Race in field updates when creating ArrayKlasses can lead to crash
coleenp
parents:
46683
diff
changeset
|
455 |
} |
941f16147746
8182397: Race in field updates when creating ArrayKlasses can lead to crash
coleenp
parents:
46683
diff
changeset
|
456 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
457 |
jbyte oopDesc::byte_field(int offset) const { return (jbyte) *byte_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
458 |
void oopDesc::byte_field_put(int offset, jbyte contents) { *byte_field_addr(offset) = (jint) contents; } |
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 |
jchar oopDesc::char_field(int offset) const { return (jchar) *char_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
461 |
void oopDesc::char_field_put(int offset, jchar contents) { *char_field_addr(offset) = (jint) contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
462 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
463 |
jboolean oopDesc::bool_field(int offset) const { return (jboolean) *bool_field_addr(offset); } |
37480 | 464 |
void oopDesc::bool_field_put(int offset, jboolean contents) { *bool_field_addr(offset) = (((jint) contents) & 1); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
465 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
466 |
jint oopDesc::int_field(int offset) const { return *int_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
467 |
void oopDesc::int_field_put(int offset, jint contents) { *int_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
468 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
469 |
jshort oopDesc::short_field(int offset) const { return (jshort) *short_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
470 |
void oopDesc::short_field_put(int offset, jshort contents) { *short_field_addr(offset) = (jint) contents;} |
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 |
jlong oopDesc::long_field(int offset) const { return *long_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
473 |
void oopDesc::long_field_put(int offset, jlong contents) { *long_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
474 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
475 |
jfloat oopDesc::float_field(int offset) const { return *float_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
476 |
void oopDesc::float_field_put(int offset, jfloat contents) { *float_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
477 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
478 |
jdouble oopDesc::double_field(int offset) const { return *double_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
479 |
void oopDesc::double_field_put(int offset, jdouble contents) { *double_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
480 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
481 |
address oopDesc::address_field(int offset) const { return *address_field_addr(offset); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
482 |
void oopDesc::address_field_put(int offset, address contents) { *address_field_addr(offset) = contents; } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
483 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
484 |
oop oopDesc::obj_field_acquire(int offset) const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
485 |
return UseCompressedOops ? |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
486 |
decode_heap_oop((narrowOop) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
487 |
OrderAccess::load_acquire(obj_field_addr<narrowOop>(offset))) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
488 |
: decode_heap_oop((oop) |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
489 |
OrderAccess::load_ptr_acquire(obj_field_addr<oop>(offset))); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
490 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
491 |
void oopDesc::release_obj_field_put(int offset, oop value) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
492 |
UseCompressedOops ? |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
493 |
oop_store((volatile narrowOop*)obj_field_addr<narrowOop>(offset), value) : |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
494 |
oop_store((volatile oop*) obj_field_addr<oop>(offset), value); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
495 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
496 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
497 |
jbyte oopDesc::byte_field_acquire(int offset) const { return OrderAccess::load_acquire(byte_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
498 |
void oopDesc::release_byte_field_put(int offset, jbyte contents) { OrderAccess::release_store(byte_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
499 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
500 |
jchar oopDesc::char_field_acquire(int offset) const { return OrderAccess::load_acquire(char_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
501 |
void oopDesc::release_char_field_put(int offset, jchar contents) { OrderAccess::release_store(char_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
502 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
503 |
jboolean oopDesc::bool_field_acquire(int offset) const { return OrderAccess::load_acquire(bool_field_addr(offset)); } |
47609
a1f68e415b48
8188813: Generalize OrderAccess to use templates
eosterlund
parents:
47216
diff
changeset
|
504 |
void oopDesc::release_bool_field_put(int offset, jboolean contents) { OrderAccess::release_store(bool_field_addr(offset), jboolean(contents & 1)); } |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
505 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
506 |
jint oopDesc::int_field_acquire(int offset) const { return OrderAccess::load_acquire(int_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
507 |
void oopDesc::release_int_field_put(int offset, jint contents) { OrderAccess::release_store(int_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
508 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
509 |
jshort oopDesc::short_field_acquire(int offset) const { return (jshort)OrderAccess::load_acquire(short_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
510 |
void oopDesc::release_short_field_put(int offset, jshort contents) { OrderAccess::release_store(short_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
511 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
512 |
jlong oopDesc::long_field_acquire(int offset) const { return OrderAccess::load_acquire(long_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
513 |
void oopDesc::release_long_field_put(int offset, jlong contents) { OrderAccess::release_store(long_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
514 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
515 |
jfloat oopDesc::float_field_acquire(int offset) const { return OrderAccess::load_acquire(float_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
516 |
void oopDesc::release_float_field_put(int offset, jfloat contents) { OrderAccess::release_store(float_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
517 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
518 |
jdouble oopDesc::double_field_acquire(int offset) const { return OrderAccess::load_acquire(double_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
519 |
void oopDesc::release_double_field_put(int offset, jdouble contents) { OrderAccess::release_store(double_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
520 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
521 |
address oopDesc::address_field_acquire(int offset) const { return (address) OrderAccess::load_ptr_acquire(address_field_addr(offset)); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
522 |
void oopDesc::release_address_field_put(int offset, address contents) { OrderAccess::release_store_ptr(address_field_addr(offset), contents); } |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
523 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
524 |
bool oopDesc::is_locked() const { |
1 | 525 |
return mark()->is_locked(); |
526 |
} |
|
527 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
528 |
bool oopDesc::is_unlocked() const { |
1 | 529 |
return mark()->is_unlocked(); |
530 |
} |
|
531 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
532 |
bool oopDesc::has_bias_pattern() const { |
1 | 533 |
return mark()->has_bias_pattern(); |
534 |
} |
|
535 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
536 |
// Used only for markSweep, scavenging |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
537 |
bool oopDesc::is_gc_marked() const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
538 |
return mark()->is_marked(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
539 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
540 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
541 |
bool oopDesc::is_scavengable() const { |
47624
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47609
diff
changeset
|
542 |
return Universe::heap()->is_scavengable(oop(const_cast<oopDesc*>(this))); |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27898
diff
changeset
|
543 |
} |
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
27898
diff
changeset
|
544 |
|
1 | 545 |
// Used by scavengers |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
546 |
bool oopDesc::is_forwarded() const { |
1 | 547 |
// The extra heap check is needed since the obj might be locked, in which case the |
548 |
// mark would point to a stack location and have the sentinel bit cleared |
|
549 |
return mark()->is_marked(); |
|
550 |
} |
|
551 |
||
552 |
// Used by scavengers |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
553 |
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
|
554 |
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
|
555 |
"forwarding to something not aligned"); |
1 | 556 |
assert(Universe::heap()->is_in_reserved(p), |
557 |
"forwarding to something not in heap"); |
|
46810
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46722
diff
changeset
|
558 |
assert(!is_archive_object(oop(this)) && |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46722
diff
changeset
|
559 |
!is_archive_object(p), |
7dad333205cd
8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents:
46722
diff
changeset
|
560 |
"forwarding archive object"); |
1 | 561 |
markOop m = markOopDesc::encode_pointer_as_mark(p); |
562 |
assert(m->decode_pointer() == p, "encoding must be reversable"); |
|
563 |
set_mark(m); |
|
564 |
} |
|
565 |
||
566 |
// Used by parallel scavengers |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
567 |
bool oopDesc::cas_forward_to(oop p, markOop compare) { |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
3262
diff
changeset
|
568 |
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
|
569 |
"forwarding to something not aligned"); |
1 | 570 |
assert(Universe::heap()->is_in_reserved(p), |
571 |
"forwarding to something not in heap"); |
|
572 |
markOop m = markOopDesc::encode_pointer_as_mark(p); |
|
573 |
assert(m->decode_pointer() == p, "encoding must be reversable"); |
|
574 |
return cas_set_mark(m, compare) == compare; |
|
575 |
} |
|
576 |
||
29689
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
577 |
#if INCLUDE_ALL_GCS |
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
578 |
oop oopDesc::forward_to_atomic(oop p) { |
29689
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
579 |
markOop oldMark = mark(); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
580 |
markOop forwardPtrMark = markOopDesc::encode_pointer_as_mark(p); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
581 |
markOop curMark; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
582 |
|
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
583 |
assert(forwardPtrMark->decode_pointer() == p, "encoding must be reversable"); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
584 |
assert(sizeof(markOop) == sizeof(intptr_t), "CAS below requires this."); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
585 |
|
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
586 |
while (!oldMark->is_marked()) { |
46958
a13bd8c6b7a2
8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents:
46810
diff
changeset
|
587 |
curMark = Atomic::cmpxchg(forwardPtrMark, &_mark, oldMark); |
29689
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
588 |
assert(is_forwarded(), "object should have been forwarded"); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
589 |
if (curMark == oldMark) { |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
590 |
return NULL; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
591 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
592 |
// If the CAS was unsuccessful then curMark->is_marked() |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
593 |
// should return true as another thread has CAS'd in another |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
594 |
// forwarding pointer. |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
595 |
oldMark = curMark; |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
596 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
597 |
return forwardee(); |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
598 |
} |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
599 |
#endif |
dc72789f83ae
8075249: Cleanup forward_to_atomic and ClaimedForwardPtr
stefank
parents:
29687
diff
changeset
|
600 |
|
1 | 601 |
// Note that the forwardee is not the same thing as the displaced_mark. |
602 |
// The forwardee is used when copying during scavenge and mark-sweep. |
|
603 |
// 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
|
604 |
oop oopDesc::forwardee() const { |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
605 |
return (oop) mark()->decode_pointer(); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
606 |
} |
1 | 607 |
|
608 |
// 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
|
609 |
uint oopDesc::age() const { |
1 | 610 |
assert(!is_forwarded(), "Attempt to read age from forwarded mark"); |
611 |
if (has_displaced_mark()) { |
|
612 |
return displaced_mark()->age(); |
|
613 |
} else { |
|
614 |
return mark()->age(); |
|
615 |
} |
|
616 |
} |
|
617 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
618 |
void oopDesc::incr_age() { |
1 | 619 |
assert(!is_forwarded(), "Attempt to increment age of forwarded mark"); |
620 |
if (has_displaced_mark()) { |
|
621 |
set_displaced_mark(displaced_mark()->incr_age()); |
|
622 |
} else { |
|
623 |
set_mark(mark()->incr_age()); |
|
624 |
} |
|
625 |
} |
|
626 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
627 |
#if INCLUDE_ALL_GCS |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
628 |
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
|
629 |
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
|
630 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
631 |
|
35877
a2a62511d0f8
8146987: Improve Parallel GC Full GC by caching results of live_words_in_range()
tschatzl
parents:
35862
diff
changeset
|
632 |
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
|
633 |
Klass* k = klass(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
634 |
if (!k->is_typeArray_klass()) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
635 |
// 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
|
636 |
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
|
637 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
638 |
// 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
|
639 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
640 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
641 |
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
|
642 |
Klass* k = klass(); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
643 |
if (!k->is_typeArray_klass()) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
644 |
// 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
|
645 |
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
|
646 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
647 |
// 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
|
648 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
649 |
#endif // INCLUDE_ALL_GCS |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
650 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
651 |
#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
|
652 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
653 |
void oopDesc::oop_iterate(OopClosureType* blk) { \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
654 |
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
|
655 |
} \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
656 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
657 |
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
|
658 |
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
|
659 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
660 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
661 |
#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
|
662 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
663 |
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
|
664 |
Klass* k = klass(); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
665 |
int size = size_given_klass(k); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
666 |
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
|
667 |
return size; \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
668 |
} \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
669 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
670 |
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
|
671 |
Klass* k = klass(); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
672 |
int size = size_given_klass(k); \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
673 |
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
|
674 |
return size; \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
675 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
676 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
677 |
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
|
678 |
// 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
|
679 |
// 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
|
680 |
NoHeaderExtendedOopClosure cl(blk); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
681 |
return oop_iterate_size(&cl); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
682 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
683 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
684 |
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
|
685 |
NoHeaderExtendedOopClosure cl(blk); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
686 |
return oop_iterate_size(&cl, mr); |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
687 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
688 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
689 |
#if INCLUDE_ALL_GCS |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
690 |
#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
|
691 |
\ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
692 |
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
|
693 |
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
|
694 |
} |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
695 |
#else |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
696 |
#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
|
697 |
#endif // INCLUDE_ALL_GCS |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
698 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
699 |
#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
|
700 |
OOP_ITERATE_DEFN(OopClosureType, nv_suffix) \ |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
701 |
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
|
702 |
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
|
703 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
704 |
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
|
705 |
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
|
706 |
|
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
707 |
intptr_t oopDesc::identity_hash() { |
1 | 708 |
// Fast case; if the object is unlocked and the hash value is set, no locking is needed |
709 |
// Note: The mark must be read into local variable to avoid concurrent updates. |
|
710 |
markOop mrk = mark(); |
|
711 |
if (mrk->is_unlocked() && !mrk->has_no_hash()) { |
|
712 |
return mrk->hash(); |
|
713 |
} else if (mrk->is_marked()) { |
|
714 |
return mrk->hash(); |
|
715 |
} else { |
|
716 |
return slow_identity_hash(); |
|
717 |
} |
|
718 |
} |
|
719 |
||
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
720 |
bool oopDesc::has_displaced_mark() const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
721 |
return mark()->has_displaced_mark_helper(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
722 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
723 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
724 |
markOop oopDesc::displaced_mark() const { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
725 |
return mark()->displaced_mark_helper(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
726 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
10540
diff
changeset
|
727 |
|
35498
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
728 |
void oopDesc::set_displaced_mark(markOop m) { |
392b50de06c6
8146401: Clean up oop.hpp: add inline directives and fix header files
goetz
parents:
33611
diff
changeset
|
729 |
mark()->set_displaced_mark_helper(m); |
1 | 730 |
} |
731 |
||
7397 | 732 |
#endif // SHARE_VM_OOPS_OOP_INLINE_HPP |