author | brutisso |
Fri, 11 Mar 2016 11:34:22 +0100 | |
changeset 37073 | c39d0903390b |
parent 35862 | 411842d0c882 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
2 |
* Copyright (c) 2001, 2016, 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/serial/defNewGeneration.hpp" |
29 |
#include "gc/shared/cardTableRS.hpp" |
|
30 |
#include "gc/shared/genCollectedHeap.hpp" |
|
31 |
#include "gc/shared/genOopClosures.hpp" |
|
32 |
#include "gc/shared/generation.hpp" |
|
33 |
#include "gc/shared/space.hpp" |
|
7397 | 34 |
|
1 | 35 |
inline OopsInGenClosure::OopsInGenClosure(Generation* gen) : |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
36 |
ExtendedOopClosure(gen->ref_processor()), _orig_gen(gen), _rs(NULL) { |
1 | 37 |
set_generation(gen); |
38 |
} |
|
39 |
||
40 |
inline void OopsInGenClosure::set_generation(Generation* gen) { |
|
41 |
_gen = gen; |
|
42 |
_gen_boundary = _gen->reserved().start(); |
|
43 |
// Barrier set for the heap, must be set after heap is initialized |
|
44 |
if (_rs == NULL) { |
|
33212 | 45 |
_rs = GenCollectedHeap::heap()->rem_set(); |
1 | 46 |
} |
47 |
} |
|
48 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
49 |
template <class T> inline void OopsInGenClosure::do_barrier(T* p) { |
1 | 50 |
assert(generation()->is_in_reserved(p), "expected ref in generation"); |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
51 |
T heap_oop = oopDesc::load_heap_oop(p); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
52 |
assert(!oopDesc::is_null(heap_oop), "expected non-null oop"); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
53 |
oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); |
1 | 54 |
// If p points to a younger generation, mark the card. |
55 |
if ((HeapWord*)obj < _gen_boundary) { |
|
56 |
_rs->inline_write_ref_field_gc(p, obj); |
|
57 |
} |
|
58 |
} |
|
59 |
||
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
60 |
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
|
61 |
assert(generation()->is_in_reserved(p), "expected ref in generation"); |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
62 |
T heap_oop = oopDesc::load_heap_oop(p); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
63 |
assert(!oopDesc::is_null(heap_oop), "expected non-null oop"); |
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
64 |
oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
65 |
// If p points to a younger generation, mark the card. |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
66 |
if ((HeapWord*)obj < gen_boundary()) { |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
67 |
rs()->write_ref_field_gc_par(p, obj); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
68 |
} |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
69 |
} |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
70 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
71 |
inline void OopsInKlassOrGenClosure::do_klass_barrier() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
72 |
assert(_scanned_klass != NULL, "Must be"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
73 |
_scanned_klass->record_modified_oops(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
74 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
75 |
|
1 | 76 |
// 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
|
77 |
// in FastScanClosure::do_oop_work() |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
78 |
template <class T> inline void ScanClosure::do_oop_work(T* p) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
79 |
T heap_oop = oopDesc::load_heap_oop(p); |
1 | 80 |
// Should we copy the obj? |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
81 |
if (!oopDesc::is_null(heap_oop)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
82 |
oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); |
1 | 83 |
if ((HeapWord*)obj < _boundary) { |
84 |
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
|
85 |
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
|
86 |
: _g->copy_to_survivor_space(obj); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
87 |
oopDesc::encode_store_heap_oop_not_null(p, new_obj); |
1 | 88 |
} |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
89 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
90 |
if (is_scanning_a_klass()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
91 |
do_klass_barrier(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
92 |
} else if (_gc_barrier) { |
1 | 93 |
// Now call parent closure |
94 |
do_barrier(p); |
|
95 |
} |
|
96 |
} |
|
97 |
} |
|
98 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
99 |
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
|
100 |
inline void ScanClosure::do_oop_nv(narrowOop* p) { ScanClosure::do_oop_work(p); } |
1 | 101 |
|
102 |
// 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
|
103 |
// in ScanClosure::do_oop_work() |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
104 |
template <class T> inline void FastScanClosure::do_oop_work(T* p) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
105 |
T heap_oop = oopDesc::load_heap_oop(p); |
1 | 106 |
// Should we copy the obj? |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
107 |
if (!oopDesc::is_null(heap_oop)) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
108 |
oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); |
1 | 109 |
if ((HeapWord*)obj < _boundary) { |
110 |
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
|
111 |
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
|
112 |
: _g->copy_to_survivor_space(obj); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
113 |
oopDesc::encode_store_heap_oop_not_null(p, new_obj); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
114 |
if (is_scanning_a_klass()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
115 |
do_klass_barrier(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
7397
diff
changeset
|
116 |
} else if (_gc_barrier) { |
1 | 117 |
// Now call parent closure |
118 |
do_barrier(p); |
|
119 |
} |
|
120 |
} |
|
121 |
} |
|
122 |
} |
|
123 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
124 |
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
|
125 |
inline void FastScanClosure::do_oop_nv(narrowOop* p) { FastScanClosure::do_oop_work(p); } |
1 | 126 |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
127 |
template <class T> void FilteringClosure::do_oop_work(T* p) { |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
128 |
T heap_oop = oopDesc::load_heap_oop(p); |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
129 |
if (!oopDesc::is_null(heap_oop)) { |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
130 |
oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
131 |
if ((HeapWord*)obj < _boundary) { |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
132 |
_cl->do_oop(p); |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
133 |
} |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
134 |
} |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
135 |
} |
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
136 |
|
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
33212
diff
changeset
|
137 |
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
|
138 |
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
|
139 |
|
1 | 140 |
// Note similarity to ScanClosure; the difference is that |
141 |
// 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
|
142 |
template <class T> inline void ScanWeakRefClosure::do_oop_work(T* p) { |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
143 |
assert(!oopDesc::is_null(*p), "null weak reference?"); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
144 |
oop obj = oopDesc::load_decode_heap_oop_not_null(p); |
1 | 145 |
// weak references are sometimes scanned twice; must check |
146 |
// that to-space doesn't already contain this object |
|
147 |
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
|
148 |
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
|
149 |
: _g->copy_to_survivor_space(obj); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
150 |
oopDesc::encode_store_heap_oop_not_null(p, new_obj); |
1 | 151 |
} |
152 |
} |
|
153 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
154 |
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
|
155 |
inline void ScanWeakRefClosure::do_oop_nv(narrowOop* p) { ScanWeakRefClosure::do_oop_work(p); } |
7397 | 156 |
|
30764 | 157 |
#endif // SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP |