author | jcm |
Mon, 06 Nov 2017 21:28:03 -0800 | |
changeset 47799 | 1772ebf07d1f |
parent 47794 | e84aa2c71241 |
child 47998 | fb0275c320a0 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
47658
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2000, 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:
4886
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4886
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:
4886
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_BARRIERSET_HPP |
26 |
#define SHARE_VM_GC_SHARED_BARRIERSET_HPP |
|
7397 | 27 |
|
28 |
#include "memory/memRegion.hpp" |
|
29 |
#include "oops/oopsHierarchy.hpp" |
|
29325 | 30 |
#include "utilities/fakeRttiSupport.hpp" |
7397 | 31 |
|
1 | 32 |
// This class provides the interface between a barrier implementation and |
33 |
// the rest of the system. |
|
34 |
||
13195 | 35 |
class BarrierSet: public CHeapObj<mtGC> { |
1 | 36 |
friend class VMStructs; |
37 |
public: |
|
29325 | 38 |
// Fake RTTI support. For a derived class T to participate |
39 |
// - T must have a corresponding Name entry. |
|
40 |
// - GetName<T> must be specialized to return the corresponding Name |
|
41 |
// entry. |
|
42 |
// - If T is a base class, the constructor must have a FakeRtti |
|
43 |
// parameter and pass it up to its base class, with the tag set |
|
44 |
// augmented with the corresponding Name entry. |
|
45 |
// - If T is a concrete class, the constructor must create a |
|
46 |
// FakeRtti object whose tag set includes the corresponding Name |
|
47 |
// entry, and pass it up to its base class. |
|
48 |
||
49 |
enum Name { // associated class |
|
50 |
ModRef, // ModRefBarrierSet |
|
51 |
CardTableModRef, // CardTableModRefBS |
|
52 |
CardTableForRS, // CardTableModRefBSForCTRS |
|
53 |
CardTableExtension, // CardTableExtension |
|
54 |
G1SATBCT, // G1SATBCardTableModRefBS |
|
55 |
G1SATBCTLogging // G1SATBCardTableLoggingModRefBS |
|
1 | 56 |
}; |
57 |
||
29325 | 58 |
protected: |
59 |
typedef FakeRttiSupport<BarrierSet, Name> FakeRtti; |
|
60 |
||
61 |
private: |
|
62 |
FakeRtti _fake_rtti; |
|
63 |
||
64 |
// Metafunction mapping a class derived from BarrierSet to the |
|
65 |
// corresponding Name enum tag. |
|
66 |
template<typename T> struct GetName; |
|
67 |
||
68 |
// Downcast argument to a derived barrier set type. |
|
69 |
// The cast is checked in a debug build. |
|
70 |
// T must have a specialization for BarrierSet::GetName<T>. |
|
29331
b788134d664a
8074319: barrier_set_cast defined via friend injection
jwilhelm
parents:
29325
diff
changeset
|
71 |
template<typename T> friend T* barrier_set_cast(BarrierSet* bs); |
29325 | 72 |
|
73 |
public: |
|
74 |
// Note: This is not presently the Name corresponding to the |
|
75 |
// concrete class of this object. |
|
76 |
BarrierSet::Name kind() const { return _fake_rtti.concrete_tag(); } |
|
77 |
||
78 |
// Test whether this object is of the type corresponding to bsn. |
|
79 |
bool is_a(BarrierSet::Name bsn) const { return _fake_rtti.has_tag(bsn); } |
|
80 |
||
81 |
// End of fake RTTI support. |
|
82 |
||
1 | 83 |
protected: |
29325 | 84 |
BarrierSet(const FakeRtti& fake_rtti) : _fake_rtti(fake_rtti) { } |
28830 | 85 |
~BarrierSet() { } |
86 |
||
1 | 87 |
public: |
88 |
// Invoke the barrier, if any, necessary when writing "new_val" into the |
|
89 |
// ref field at "offset" in "obj". |
|
90 |
// (For efficiency reasons, this operation is specialized for certain |
|
91 |
// barrier types. Semantically, it should be thought of as a call to the |
|
92 |
// virtual "_work" function below, which must implement the barrier.) |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
93 |
// First the pre-write versions... |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
1388
diff
changeset
|
94 |
template <class T> inline void write_ref_field_pre(T* field, oop new_val); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
95 |
|
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
96 |
// ...then the post-write version. |
22859
7b88983393b7
8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents:
13728
diff
changeset
|
97 |
inline void write_ref_field(void* field, oop new_val, bool release = false); |
1 | 98 |
|
47658
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
99 |
protected: |
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
100 |
virtual void write_ref_field_pre_work( oop* field, oop new_val) {}; |
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
101 |
virtual void write_ref_field_pre_work(narrowOop* field, oop new_val) {}; |
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
102 |
virtual void write_ref_field_work(void* field, oop new_val, bool release) = 0; |
1 | 103 |
|
47658
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
104 |
public: |
1 | 105 |
// Operations on arrays, or general regions (e.g., for "clone") may be |
106 |
// optimized by some barriers. |
|
107 |
||
4461
c17c526d36ef
6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents:
3262
diff
changeset
|
108 |
// Below length is the # array elements being written |
8498 | 109 |
virtual void write_ref_array_pre(oop* dst, int length, |
110 |
bool dest_uninitialized = false) {} |
|
111 |
virtual void write_ref_array_pre(narrowOop* dst, int length, |
|
112 |
bool dest_uninitialized = false) {} |
|
4461
c17c526d36ef
6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents:
3262
diff
changeset
|
113 |
// Below count is the # array elements being written, starting |
c17c526d36ef
6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents:
3262
diff
changeset
|
114 |
// at the address "start", which may not necessarily be HeapWord-aligned |
c17c526d36ef
6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents:
3262
diff
changeset
|
115 |
inline void write_ref_array(HeapWord* start, size_t count); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
116 |
|
4461
c17c526d36ef
6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents:
3262
diff
changeset
|
117 |
// Static versions, suitable for calling from generated code; |
c17c526d36ef
6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents:
3262
diff
changeset
|
118 |
// count is # array elements being written, starting with "start", |
c17c526d36ef
6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents:
3262
diff
changeset
|
119 |
// which may not necessarily be HeapWord-aligned. |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
120 |
static void static_write_ref_array_pre(HeapWord* start, size_t count); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
121 |
static void static_write_ref_array_post(HeapWord* start, size_t count); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
122 |
|
1 | 123 |
protected: |
124 |
virtual void write_ref_array_work(MemRegion mr) = 0; |
|
47658
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
125 |
|
1 | 126 |
public: |
127 |
// (For efficiency reasons, this operation is specialized for certain |
|
128 |
// barrier types. Semantically, it should be thought of as a call to the |
|
129 |
// virtual "_work" function below, which must implement the barrier.) |
|
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28837
diff
changeset
|
130 |
void write_region(MemRegion mr); |
47658
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
131 |
|
1 | 132 |
protected: |
133 |
virtual void write_region_work(MemRegion mr) = 0; |
|
47658
c2b7fb8e5144
8189355: Cleanup of BarrierSet barrier functions
eosterlund
parents:
47216
diff
changeset
|
134 |
|
1 | 135 |
public: |
136 |
// Inform the BarrierSet that the the covered heap region that starts |
|
137 |
// with "base" has been changed to have the given size (possibly from 0, |
|
138 |
// for initialization.) |
|
139 |
virtual void resize_covered_region(MemRegion new_region) = 0; |
|
140 |
||
141 |
// If the barrier set imposes any alignment restrictions on boundaries |
|
142 |
// within the heap, this function tells whether they are met. |
|
143 |
virtual bool is_aligned(HeapWord* addr) = 0; |
|
144 |
||
12268 | 145 |
// Print a description of the memory for the barrier set |
146 |
virtual void print_on(outputStream* st) const = 0; |
|
1 | 147 |
}; |
7397 | 148 |
|
29331
b788134d664a
8074319: barrier_set_cast defined via friend injection
jwilhelm
parents:
29325
diff
changeset
|
149 |
template<typename T> |
b788134d664a
8074319: barrier_set_cast defined via friend injection
jwilhelm
parents:
29325
diff
changeset
|
150 |
inline T* barrier_set_cast(BarrierSet* bs) { |
b788134d664a
8074319: barrier_set_cast defined via friend injection
jwilhelm
parents:
29325
diff
changeset
|
151 |
assert(bs->is_a(BarrierSet::GetName<T>::value), "wrong type of barrier set"); |
b788134d664a
8074319: barrier_set_cast defined via friend injection
jwilhelm
parents:
29325
diff
changeset
|
152 |
return static_cast<T*>(bs); |
b788134d664a
8074319: barrier_set_cast defined via friend injection
jwilhelm
parents:
29325
diff
changeset
|
153 |
} |
b788134d664a
8074319: barrier_set_cast defined via friend injection
jwilhelm
parents:
29325
diff
changeset
|
154 |
|
30764 | 155 |
#endif // SHARE_VM_GC_SHARED_BARRIERSET_HPP |