author | stefank |
Fri, 04 May 2018 11:41:35 +0200 | |
changeset 49982 | 9042ffe5b7fe |
parent 49722 | a47d1e21b3f1 |
child 50728 | 9375184cec98 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49592
diff
changeset
|
2 |
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP |
26 |
#define SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/shared/cardTableRS.hpp" |
29 |
#include "gc/shared/genCollectedHeap.hpp" |
|
30 |
#include "gc/shared/genOopClosures.hpp" |
|
31 |
#include "gc/shared/generation.hpp" |
|
32 |
#include "gc/shared/space.hpp" |
|
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
33 |
#include "oops/access.inline.hpp" |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
34 |
#include "oops/compressedOops.inline.hpp" |
49722
a47d1e21b3f1
8199735: Mark word updates need to use Access API
rkennke
parents:
49592
diff
changeset
|
35 |
#include "oops/oop.inline.hpp" |
49982 | 36 |
#if INCLUDE_SERIALGC |
37 |
#include "gc/serial/defNewGeneration.inline.hpp" |
|
38 |
#endif |
|
7397 | 39 |
|
1 | 40 |
inline OopsInGenClosure::OopsInGenClosure(Generation* gen) : |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
41 |
ExtendedOopClosure(gen->ref_processor()), _orig_gen(gen), _rs(NULL) { |
1 | 42 |
set_generation(gen); |
43 |
} |
|
44 |
||
45 |
inline void OopsInGenClosure::set_generation(Generation* gen) { |
|
46 |
_gen = gen; |
|
47 |
_gen_boundary = _gen->reserved().start(); |
|
48 |
// Barrier set for the heap, must be set after heap is initialized |
|
49 |
if (_rs == NULL) { |
|
33212 | 50 |
_rs = GenCollectedHeap::heap()->rem_set(); |
1 | 51 |
} |
52 |
} |
|
53 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
54 |
template <class T> inline void OopsInGenClosure::do_barrier(T* p) { |
1 | 55 |
assert(generation()->is_in_reserved(p), "expected ref in generation"); |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
56 |
T heap_oop = RawAccess<>::oop_load(p); |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
57 |
assert(!CompressedOops::is_null(heap_oop), "expected non-null oop"); |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
58 |
oop obj = CompressedOops::decode_not_null(heap_oop); |
1 | 59 |
// If p points to a younger generation, mark the card. |
60 |
if ((HeapWord*)obj < _gen_boundary) { |
|
61 |
_rs->inline_write_ref_field_gc(p, obj); |
|
62 |
} |
|
63 |
} |
|
64 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
65 |
template <class T> inline void OopsInGenClosure::par_do_barrier(T* p) { |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
66 |
assert(generation()->is_in_reserved(p), "expected ref in generation"); |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
67 |
T heap_oop = RawAccess<>::oop_load(p); |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
68 |
assert(!CompressedOops::is_null(heap_oop), "expected non-null oop"); |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
69 |
oop obj = CompressedOops::decode_not_null(heap_oop); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
70 |
// If p points to a younger generation, mark the card. |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
71 |
if ((HeapWord*)obj < gen_boundary()) { |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
72 |
rs()->write_ref_field_gc_par(p, obj); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
73 |
} |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
74 |
} |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
75 |
|
47580 | 76 |
inline void OopsInClassLoaderDataOrGenClosure::do_cld_barrier() { |
77 |
assert(_scanned_cld != NULL, "Must be"); |
|
78 |
if (!_scanned_cld->has_modified_oops()) { |
|
79 |
_scanned_cld->record_modified_oops(); |
|
80 |
} |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
81 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
82 |
|
49982 | 83 |
#if INCLUDE_SERIALGC |
84 |
||
1 | 85 |
// NOTE! Any changes made here should also be made |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
86 |
// in FastScanClosure::do_oop_work() |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
87 |
template <class T> inline void ScanClosure::do_oop_work(T* p) { |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
88 |
T heap_oop = RawAccess<>::oop_load(p); |
1 | 89 |
// Should we copy the obj? |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
90 |
if (!CompressedOops::is_null(heap_oop)) { |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
91 |
oop obj = CompressedOops::decode_not_null(heap_oop); |
1 | 92 |
if ((HeapWord*)obj < _boundary) { |
93 |
assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?"); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
94 |
oop new_obj = obj->is_forwarded() ? obj->forwardee() |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
95 |
: _g->copy_to_survivor_space(obj); |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
96 |
RawAccess<OOP_NOT_NULL>::oop_store(p, new_obj); |
1 | 97 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
98 |
|
47580 | 99 |
if (is_scanning_a_cld()) { |
100 |
do_cld_barrier(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
101 |
} else if (_gc_barrier) { |
1 | 102 |
// Now call parent closure |
103 |
do_barrier(p); |
|
104 |
} |
|
105 |
} |
|
106 |
} |
|
107 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
108 |
inline void ScanClosure::do_oop_nv(oop* p) { ScanClosure::do_oop_work(p); } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
109 |
inline void ScanClosure::do_oop_nv(narrowOop* p) { ScanClosure::do_oop_work(p); } |
1 | 110 |
|
111 |
// NOTE! Any changes made here should also be made |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
112 |
// in ScanClosure::do_oop_work() |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
113 |
template <class T> inline void FastScanClosure::do_oop_work(T* p) { |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
114 |
T heap_oop = RawAccess<>::oop_load(p); |
1 | 115 |
// Should we copy the obj? |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
116 |
if (!CompressedOops::is_null(heap_oop)) { |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
117 |
oop obj = CompressedOops::decode_not_null(heap_oop); |
1 | 118 |
if ((HeapWord*)obj < _boundary) { |
119 |
assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?"); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
120 |
oop new_obj = obj->is_forwarded() ? obj->forwardee() |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
121 |
: _g->copy_to_survivor_space(obj); |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
122 |
RawAccess<OOP_NOT_NULL>::oop_store(p, new_obj); |
47580 | 123 |
if (is_scanning_a_cld()) { |
124 |
do_cld_barrier(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
125 |
} else if (_gc_barrier) { |
1 | 126 |
// Now call parent closure |
127 |
do_barrier(p); |
|
128 |
} |
|
129 |
} |
|
130 |
} |
|
131 |
} |
|
132 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
133 |
inline void FastScanClosure::do_oop_nv(oop* p) { FastScanClosure::do_oop_work(p); } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
134 |
inline void FastScanClosure::do_oop_nv(narrowOop* p) { FastScanClosure::do_oop_work(p); } |
1 | 135 |
|
49982 | 136 |
#endif // INCLUDE_SERIALGC |
137 |
||
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
138 |
template <class T> void FilteringClosure::do_oop_work(T* p) { |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
139 |
T heap_oop = RawAccess<>::oop_load(p); |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
140 |
if (!CompressedOops::is_null(heap_oop)) { |
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
141 |
oop obj = CompressedOops::decode_not_null(heap_oop); |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
142 |
if ((HeapWord*)obj < _boundary) { |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
143 |
_cl->do_oop(p); |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
144 |
} |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
145 |
} |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
146 |
} |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
147 |
|
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
148 |
void FilteringClosure::do_oop_nv(oop* p) { FilteringClosure::do_oop_work(p); } |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
149 |
void FilteringClosure::do_oop_nv(narrowOop* p) { FilteringClosure::do_oop_work(p); } |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
150 |
|
49982 | 151 |
#if INCLUDE_SERIALGC |
152 |
||
1 | 153 |
// Note similarity to ScanClosure; the difference is that |
154 |
// the barrier set is taken care of outside this closure. |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
155 |
template <class T> inline void ScanWeakRefClosure::do_oop_work(T* p) { |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
156 |
oop obj = RawAccess<OOP_NOT_NULL>::oop_load(p); |
1 | 157 |
// weak references are sometimes scanned twice; must check |
158 |
// that to-space doesn't already contain this object |
|
159 |
if ((HeapWord*)obj < _boundary && !_g->to()->is_in_reserved(obj)) { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
160 |
oop new_obj = obj->is_forwarded() ? obj->forwardee() |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
161 |
: _g->copy_to_survivor_space(obj); |
49592
77fb0be7d19f
8199946: Move load/store and encode/decode out of oopDesc
stefank
parents:
47580
diff
changeset
|
162 |
RawAccess<OOP_NOT_NULL>::oop_store(p, new_obj); |
1 | 163 |
} |
164 |
} |
|
165 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
166 |
inline void ScanWeakRefClosure::do_oop_nv(oop* p) { ScanWeakRefClosure::do_oop_work(p); } |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
167 |
inline void ScanWeakRefClosure::do_oop_nv(narrowOop* p) { ScanWeakRefClosure::do_oop_work(p); } |
7397 | 168 |
|
49982 | 169 |
#endif // INCLUDE_SERIALGC |
170 |
||
30764 | 171 |
#endif // SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP |