author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 42598 | hotspot/src/share/vm/gc/shared/cardTableRS.hpp@45562c0473fb |
child 47580 | 96392e113a0a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
30764 | 2 |
* Copyright (c) 2001, 2015, 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:
1388
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1388
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:
1388
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_CARDTABLERS_HPP |
26 |
#define SHARE_VM_GC_SHARED_CARDTABLERS_HPP |
|
7397 | 27 |
|
31964 | 28 |
#include "gc/shared/cardTableModRefBSForCTRS.hpp" |
7397 | 29 |
#include "memory/memRegion.hpp" |
30 |
||
1 | 31 |
class Space; |
32 |
class OopsInGenClosure; |
|
33 |
||
33212 | 34 |
// Helper to remember modified oops in all klasses. |
35 |
class KlassRemSet { |
|
36 |
bool _accumulate_modified_oops; |
|
37 |
public: |
|
38 |
KlassRemSet() : _accumulate_modified_oops(false) {} |
|
39 |
void set_accumulate_modified_oops(bool value) { _accumulate_modified_oops = value; } |
|
40 |
bool accumulate_modified_oops() { return _accumulate_modified_oops; } |
|
41 |
bool mod_union_is_clear(); |
|
42 |
void clear_mod_union(); |
|
43 |
}; |
|
44 |
||
45 |
// This RemSet uses a card table both as shared data structure |
|
1 | 46 |
// for a mod ref barrier set and for the rem set information. |
47 |
||
33212 | 48 |
class CardTableRS: public CHeapObj<mtGC> { |
1 | 49 |
friend class VMStructs; |
50 |
// Below are private classes used in impl. |
|
51 |
friend class VerifyCTSpaceClosure; |
|
52 |
friend class ClearNoncleanCardWrapper; |
|
53 |
||
54 |
static jbyte clean_card_val() { |
|
31964 | 55 |
return CardTableModRefBSForCTRS::clean_card; |
1 | 56 |
} |
57 |
||
12118
36458db4ccf5
7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents:
9624
diff
changeset
|
58 |
static intptr_t clean_card_row() { |
31964 | 59 |
return CardTableModRefBSForCTRS::clean_card_row; |
12118
36458db4ccf5
7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents:
9624
diff
changeset
|
60 |
} |
36458db4ccf5
7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents:
9624
diff
changeset
|
61 |
|
1 | 62 |
static bool |
63 |
card_is_dirty_wrt_gen_iter(jbyte cv) { |
|
31964 | 64 |
return CardTableModRefBSForCTRS::card_is_dirty_wrt_gen_iter(cv); |
1 | 65 |
} |
66 |
||
33212 | 67 |
KlassRemSet _klass_rem_set; |
68 |
BarrierSet* _bs; |
|
1 | 69 |
|
33212 | 70 |
CardTableModRefBSForCTRS* _ct_bs; |
1 | 71 |
|
72 |
void verify_space(Space* s, HeapWord* gen_start); |
|
73 |
||
74 |
enum ExtendedCardValue { |
|
31964 | 75 |
youngergen_card = CardTableModRefBSForCTRS::CT_MR_BS_last_reserved + 1, |
1 | 76 |
// These are for parallel collection. |
77 |
// There are three P (parallel) youngergen card values. In general, this |
|
78 |
// needs to be more than the number of generations (including the perm |
|
79 |
// gen) that might have younger_refs_do invoked on them separately. So |
|
80 |
// if we add more gens, we have to add more values. |
|
31964 | 81 |
youngergenP1_card = CardTableModRefBSForCTRS::CT_MR_BS_last_reserved + 2, |
82 |
youngergenP2_card = CardTableModRefBSForCTRS::CT_MR_BS_last_reserved + 3, |
|
83 |
youngergenP3_card = CardTableModRefBSForCTRS::CT_MR_BS_last_reserved + 4, |
|
1 | 84 |
cur_youngergen_and_prev_nonclean_card = |
31964 | 85 |
CardTableModRefBSForCTRS::CT_MR_BS_last_reserved + 5 |
1 | 86 |
}; |
87 |
||
88 |
// An array that contains, for each generation, the card table value last |
|
89 |
// used as the current value for a younger_refs_do iteration of that |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30870
diff
changeset
|
90 |
// portion of the table. The perm gen is index 0. The young gen is index 1, |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30870
diff
changeset
|
91 |
// but will always have the value "clean_card". The old gen is index 2. |
1 | 92 |
jbyte* _last_cur_val_in_gen; |
93 |
||
94 |
jbyte _cur_youngergen_card_val; |
|
95 |
||
27687
3a6367d7110b
8064721: The card tables only ever need two covering regions
ehelin
parents:
22548
diff
changeset
|
96 |
// Number of generations, plus one for lingering PermGen issues in CardTableRS. |
3a6367d7110b
8064721: The card tables only ever need two covering regions
ehelin
parents:
22548
diff
changeset
|
97 |
static const int _regions_to_iterate = 3; |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
98 |
|
1 | 99 |
jbyte cur_youngergen_card_val() { |
100 |
return _cur_youngergen_card_val; |
|
101 |
} |
|
102 |
void set_cur_youngergen_card_val(jbyte v) { |
|
103 |
_cur_youngergen_card_val = v; |
|
104 |
} |
|
105 |
bool is_prev_youngergen_card_val(jbyte v) { |
|
106 |
return |
|
107 |
youngergen_card <= v && |
|
108 |
v < cur_youngergen_and_prev_nonclean_card && |
|
109 |
v != _cur_youngergen_card_val; |
|
110 |
} |
|
111 |
// Return a youngergen_card_value that is not currently in use. |
|
112 |
jbyte find_unused_youngergenP_card_value(); |
|
113 |
||
114 |
public: |
|
27687
3a6367d7110b
8064721: The card tables only ever need two covering regions
ehelin
parents:
22548
diff
changeset
|
115 |
CardTableRS(MemRegion whole_heap); |
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17031
diff
changeset
|
116 |
~CardTableRS(); |
1 | 117 |
|
33212 | 118 |
// Return the barrier set associated with "this." |
119 |
BarrierSet* bs() { return _bs; } |
|
120 |
||
121 |
// Set the barrier set. |
|
122 |
void set_bs(BarrierSet* bs) { _bs = bs; } |
|
123 |
||
124 |
KlassRemSet* klass_rem_set() { return &_klass_rem_set; } |
|
1 | 125 |
|
31964 | 126 |
CardTableModRefBSForCTRS* ct_bs() { return _ct_bs; } |
1 | 127 |
|
33212 | 128 |
void younger_refs_in_space_iterate(Space* sp, OopsInGenClosure* cl, uint n_threads); |
129 |
||
1 | 130 |
// Override. |
131 |
void prepare_for_younger_refs_iterate(bool parallel); |
|
132 |
||
133 |
// Card table entries are cleared before application; "blk" is |
|
134 |
// responsible for dirtying if the oop is still older-to-younger after |
|
135 |
// closure application. |
|
30870
3050fdcdc60b
8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents:
30764
diff
changeset
|
136 |
void younger_refs_iterate(Generation* g, OopsInGenClosure* blk, uint n_threads); |
1 | 137 |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
179
diff
changeset
|
138 |
void inline_write_ref_field_gc(void* field, oop new_val) { |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
139 |
jbyte* byte = _ct_bs->byte_for(field); |
1 | 140 |
*byte = youngergen_card; |
141 |
} |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
179
diff
changeset
|
142 |
void write_ref_field_gc_work(void* field, oop new_val) { |
1 | 143 |
inline_write_ref_field_gc(field, new_val); |
144 |
} |
|
145 |
||
146 |
// Override. Might want to devirtualize this in the same fashion as |
|
147 |
// above. Ensures that the value of the card for field says that it's |
|
148 |
// a younger card in the current collection. |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
179
diff
changeset
|
149 |
virtual void write_ref_field_gc_par(void* field, oop new_val); |
1 | 150 |
|
151 |
void resize_covered_region(MemRegion new_region); |
|
152 |
||
153 |
bool is_aligned(HeapWord* addr) { |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
154 |
return _ct_bs->is_card_aligned(addr); |
1 | 155 |
} |
156 |
||
157 |
void verify(); |
|
158 |
||
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
159 |
void clear(MemRegion mr) { _ct_bs->clear(mr); } |
19289
213031f03f61
8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents:
19286
diff
changeset
|
160 |
void clear_into_younger(Generation* old_gen); |
1 | 161 |
|
42598
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
33212
diff
changeset
|
162 |
void invalidate(MemRegion mr) { |
45562c0473fb
8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents:
33212
diff
changeset
|
163 |
_ct_bs->invalidate(mr); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
164 |
} |
19289
213031f03f61
8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents:
19286
diff
changeset
|
165 |
void invalidate_or_clear(Generation* old_gen); |
1 | 166 |
|
167 |
static uintx ct_max_alignment_constraint() { |
|
31964 | 168 |
return CardTableModRefBSForCTRS::ct_max_alignment_constraint(); |
1 | 169 |
} |
170 |
||
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
171 |
jbyte* byte_for(void* p) { return _ct_bs->byte_for(p); } |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
172 |
jbyte* byte_after(void* p) { return _ct_bs->byte_after(p); } |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
173 |
HeapWord* addr_for(jbyte* p) { return _ct_bs->addr_for(p); } |
1 | 174 |
|
175 |
bool is_prev_nonclean_card_val(jbyte v) { |
|
176 |
return |
|
177 |
youngergen_card <= v && |
|
178 |
v <= cur_youngergen_and_prev_nonclean_card && |
|
179 |
v != _cur_youngergen_card_val; |
|
180 |
} |
|
181 |
||
182 |
static bool youngergen_may_have_been_dirty(jbyte cv) { |
|
183 |
return cv == CardTableRS::cur_youngergen_and_prev_nonclean_card; |
|
184 |
} |
|
185 |
||
186 |
}; |
|
7397 | 187 |
|
9336
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
188 |
class ClearNoncleanCardWrapper: public MemRegionClosure { |
9624
c3657c3324ee
6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents:
9336
diff
changeset
|
189 |
DirtyCardToOopClosure* _dirty_card_closure; |
9336
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
190 |
CardTableRS* _ct; |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
191 |
bool _is_par; |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
192 |
private: |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
193 |
// Clears the given card, return true if the corresponding card should be |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
194 |
// processed. |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
195 |
inline bool clear_card(jbyte* entry); |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
196 |
// Work methods called by the clear_card() |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
197 |
inline bool clear_card_serial(jbyte* entry); |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
198 |
inline bool clear_card_parallel(jbyte* entry); |
12118
36458db4ccf5
7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents:
9624
diff
changeset
|
199 |
// check alignment of pointer |
36458db4ccf5
7068625: Testing 8 bytes of card table entries at a time speeds up card-scanning
brutisso
parents:
9624
diff
changeset
|
200 |
bool is_word_aligned(jbyte* entry); |
9336
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
201 |
|
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
202 |
public: |
30870
3050fdcdc60b
8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents:
30764
diff
changeset
|
203 |
ClearNoncleanCardWrapper(DirtyCardToOopClosure* dirty_card_closure, CardTableRS* ct, bool is_par); |
9336
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
204 |
void do_MemRegion(MemRegion mr); |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
205 |
}; |
413920193f83
7037276: Unnecessary double traversal of dirty card windows
ysr
parents:
7397
diff
changeset
|
206 |
|
30764 | 207 |
#endif // SHARE_VM_GC_SHARED_CARDTABLERS_HPP |