Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 288a4fe

Browse files
author
Thomas Schatzl
committedFeb 2, 2021
8260643: Remove parallel version handling in CardTableRS::younger_refs_in_space_iterate()
Reviewed-by: ayang, sjohanss
1 parent ddd2951 commit 288a4fe

File tree

7 files changed

+31
-100
lines changed

7 files changed

+31
-100
lines changed
 

‎src/hotspot/share/gc/serial/serialHeap.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,5 @@ void SerialHeap::young_process_roots(OopIterateClosure* root_closure,
9898
cld_closure, cld_closure, &mark_code_closure);
9999

100100
rem_set()->at_younger_refs_iterate();
101-
old_gen()->younger_refs_iterate(old_gen_closure, 0);
101+
old_gen()->younger_refs_iterate(old_gen_closure);
102102
}

‎src/hotspot/share/gc/shared/cardGeneration.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -307,13 +307,13 @@ void CardGeneration::space_iterate(SpaceClosure* blk,
307307
blk->do_space(space());
308308
}
309309

310-
void CardGeneration::younger_refs_iterate(OopIterateClosure* blk, uint n_threads) {
310+
void CardGeneration::younger_refs_iterate(OopIterateClosure* blk) {
311311
// Apply "cl->do_oop" to (the address of) (exactly) all the ref fields in
312312
// "sp" that point into younger generations.
313313
// The iteration is only over objects allocated at the start of the
314314
// iterations; objects allocated as a result of applying the closure are
315315
// not included.
316316

317317
HeapWord* gen_boundary = reserved().start();
318-
_rs->younger_refs_in_space_iterate(space(), gen_boundary, blk, n_threads);
318+
_rs->younger_refs_in_space_iterate(space(), gen_boundary, blk);
319319
}

‎src/hotspot/share/gc/shared/cardGeneration.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class CardGeneration: public Generation {
8989

9090
void space_iterate(SpaceClosure* blk, bool usedOnly = false);
9191

92-
void younger_refs_iterate(OopIterateClosure* blk, uint n_threads);
92+
void younger_refs_iterate(OopIterateClosure* blk);
9393

9494
bool is_in(const void* p) const;
9595

‎src/hotspot/share/gc/shared/cardTableRS.cpp

+16-76
Original file line numberDiff line numberDiff line change
@@ -79,51 +79,6 @@ void CardTableRS::at_younger_refs_iterate() {
7979
}
8080

8181
inline bool ClearNoncleanCardWrapper::clear_card(CardValue* entry) {
82-
if (_is_par) {
83-
return clear_card_parallel(entry);
84-
} else {
85-
return clear_card_serial(entry);
86-
}
87-
}
88-
89-
inline bool ClearNoncleanCardWrapper::clear_card_parallel(CardValue* entry) {
90-
while (true) {
91-
// In the parallel case, we may have to do this several times.
92-
CardValue entry_val = *entry;
93-
assert(entry_val != CardTableRS::clean_card_val(),
94-
"We shouldn't be looking at clean cards, and this should "
95-
"be the only place they get cleaned.");
96-
if (CardTableRS::card_is_dirty_wrt_gen_iter(entry_val)
97-
|| _ct->is_prev_youngergen_card_val(entry_val)) {
98-
CardValue res =
99-
Atomic::cmpxchg(entry, entry_val, CardTableRS::clean_card_val());
100-
if (res == entry_val) {
101-
break;
102-
} else {
103-
assert(res == CardTableRS::cur_youngergen_and_prev_nonclean_card,
104-
"The CAS above should only fail if another thread did "
105-
"a GC write barrier.");
106-
}
107-
} else if (entry_val ==
108-
CardTableRS::cur_youngergen_and_prev_nonclean_card) {
109-
// Parallelism shouldn't matter in this case. Only the thread
110-
// assigned to scan the card should change this value.
111-
*entry = _ct->cur_youngergen_card_val();
112-
break;
113-
} else {
114-
assert(entry_val == _ct->cur_youngergen_card_val(),
115-
"Should be the only possibility.");
116-
// In this case, the card was clean before, and become
117-
// cur_youngergen only because of processing of a promoted object.
118-
// We don't have to look at the card.
119-
return false;
120-
}
121-
}
122-
return true;
123-
}
124-
125-
126-
inline bool ClearNoncleanCardWrapper::clear_card_serial(CardValue* entry) {
12782
CardValue entry_val = *entry;
12883
assert(entry_val != CardTableRS::clean_card_val(),
12984
"We shouldn't be looking at clean cards, and this should "
@@ -135,8 +90,8 @@ inline bool ClearNoncleanCardWrapper::clear_card_serial(CardValue* entry) {
13590
}
13691

13792
ClearNoncleanCardWrapper::ClearNoncleanCardWrapper(
138-
DirtyCardToOopClosure* dirty_card_closure, CardTableRS* ct, bool is_par) :
139-
_dirty_card_closure(dirty_card_closure), _ct(ct), _is_par(is_par) {
93+
DirtyCardToOopClosure* dirty_card_closure, CardTableRS* ct) :
94+
_dirty_card_closure(dirty_card_closure), _ct(ct) {
14095
}
14196

14297
bool ClearNoncleanCardWrapper::is_word_aligned(CardTable::CardValue* entry) {
@@ -203,12 +158,11 @@ void ClearNoncleanCardWrapper::do_MemRegion(MemRegion mr) {
203158

204159
void CardTableRS::younger_refs_in_space_iterate(Space* sp,
205160
HeapWord* gen_boundary,
206-
OopIterateClosure* cl,
207-
uint n_threads) {
161+
OopIterateClosure* cl) {
208162
verify_used_region_at_save_marks(sp);
209163

210164
const MemRegion urasm = sp->used_region_at_save_marks();
211-
non_clean_card_iterate_possibly_parallel(sp, gen_boundary, urasm, cl, this, n_threads);
165+
non_clean_card_iterate(sp, gen_boundary, urasm, cl, this);
212166
}
213167

214168
#ifdef ASSERT
@@ -580,35 +534,21 @@ bool CardTableRS::card_may_have_been_dirty(CardValue cv) {
580534
CardTableRS::youngergen_may_have_been_dirty(cv));
581535
}
582536

583-
void CardTableRS::non_clean_card_iterate_possibly_parallel(
584-
Space* sp,
585-
HeapWord* gen_boundary,
586-
MemRegion mr,
587-
OopIterateClosure* cl,
588-
CardTableRS* ct,
589-
uint n_threads)
537+
void CardTableRS::non_clean_card_iterate(Space* sp,
538+
HeapWord* gen_boundary,
539+
MemRegion mr,
540+
OopIterateClosure* cl,
541+
CardTableRS* ct)
590542
{
591-
if (!mr.is_empty()) {
592-
if (n_threads > 0) {
593-
non_clean_card_iterate_parallel_work(sp, mr, cl, ct, n_threads);
594-
} else {
595-
// clear_cl finds contiguous dirty ranges of cards to process and clear.
596-
597-
// This is the single-threaded version used by DefNew.
598-
const bool parallel = false;
599-
600-
DirtyCardToOopClosure* dcto_cl = sp->new_dcto_cl(cl, precision(), gen_boundary, parallel);
601-
ClearNoncleanCardWrapper clear_cl(dcto_cl, ct, parallel);
602-
603-
clear_cl.do_MemRegion(mr);
604-
}
543+
if (mr.is_empty()) {
544+
return;
605545
}
606-
}
546+
// clear_cl finds contiguous dirty ranges of cards to process and clear.
547+
548+
DirtyCardToOopClosure* dcto_cl = sp->new_dcto_cl(cl, precision(), gen_boundary);
549+
ClearNoncleanCardWrapper clear_cl(dcto_cl, ct);
607550

608-
void CardTableRS::non_clean_card_iterate_parallel_work(Space* sp, MemRegion mr,
609-
OopIterateClosure* cl, CardTableRS* ct,
610-
uint n_threads) {
611-
fatal("Parallel gc not supported here.");
551+
clear_cl.do_MemRegion(mr);
612552
}
613553

614554
bool CardTableRS::is_in_young(oop obj) const {

‎src/hotspot/share/gc/shared/cardTableRS.hpp

+7-12
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class CardTableRS: public CardTable {
8888
CardTableRS(MemRegion whole_heap, bool scanned_concurrently);
8989
~CardTableRS();
9090

91-
void younger_refs_in_space_iterate(Space* sp, HeapWord* gen_boundary, OopIterateClosure* cl, uint n_threads);
91+
void younger_refs_in_space_iterate(Space* sp, HeapWord* gen_boundary, OopIterateClosure* cl);
9292

9393
virtual void verify_used_region_at_save_marks(Space* sp) const NOT_DEBUG_RETURN;
9494

@@ -147,15 +147,11 @@ class CardTableRS: public CardTable {
147147
// Iterate over the portion of the card-table which covers the given
148148
// region mr in the given space and apply cl to any dirty sub-regions
149149
// of mr. Clears the dirty cards as they are processed.
150-
void non_clean_card_iterate_possibly_parallel(Space* sp, HeapWord* gen_boundary,
151-
MemRegion mr, OopIterateClosure* cl,
152-
CardTableRS* ct, uint n_threads);
153-
154-
// Work method used to implement non_clean_card_iterate_possibly_parallel()
155-
// above in the parallel case.
156-
virtual void non_clean_card_iterate_parallel_work(Space* sp, MemRegion mr,
157-
OopIterateClosure* cl, CardTableRS* ct,
158-
uint n_threads);
150+
void non_clean_card_iterate(Space* sp,
151+
HeapWord* gen_boundary,
152+
MemRegion mr,
153+
OopIterateClosure* cl,
154+
CardTableRS* ct);
159155

160156
// This is an array, one element per covered region of the card table.
161157
// Each entry is itself an array, with one element per chunk in the
@@ -175,7 +171,6 @@ class CardTableRS: public CardTable {
175171
class ClearNoncleanCardWrapper: public MemRegionClosure {
176172
DirtyCardToOopClosure* _dirty_card_closure;
177173
CardTableRS* _ct;
178-
bool _is_par;
179174

180175
public:
181176

@@ -191,7 +186,7 @@ class ClearNoncleanCardWrapper: public MemRegionClosure {
191186
bool is_word_aligned(CardValue* entry);
192187

193188
public:
194-
ClearNoncleanCardWrapper(DirtyCardToOopClosure* dirty_card_closure, CardTableRS* ct, bool is_par);
189+
ClearNoncleanCardWrapper(DirtyCardToOopClosure* dirty_card_closure, CardTableRS* ct);
195190
void do_MemRegion(MemRegion mr);
196191
};
197192

‎src/hotspot/share/gc/shared/space.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,7 @@ void DirtyCardToOopClosure::do_MemRegion(MemRegion mr) {
163163

164164
DirtyCardToOopClosure* Space::new_dcto_cl(OopIterateClosure* cl,
165165
CardTable::PrecisionStyle precision,
166-
HeapWord* boundary,
167-
bool parallel) {
166+
HeapWord* boundary) {
168167
return new DirtyCardToOopClosure(this, cl, precision, boundary);
169168
}
170169

@@ -243,8 +242,7 @@ ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(FilteringClosure)
243242
DirtyCardToOopClosure*
244243
ContiguousSpace::new_dcto_cl(OopIterateClosure* cl,
245244
CardTable::PrecisionStyle precision,
246-
HeapWord* boundary,
247-
bool parallel) {
245+
HeapWord* boundary) {
248246
return new ContiguousSpaceDCTOC(this, cl, precision, boundary);
249247
}
250248

‎src/hotspot/share/gc/shared/space.hpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ class Space: public CHeapObj<mtGC> {
173173
// operate. ResourceArea allocated.
174174
virtual DirtyCardToOopClosure* new_dcto_cl(OopIterateClosure* cl,
175175
CardTable::PrecisionStyle precision,
176-
HeapWord* boundary,
177-
bool parallel);
176+
HeapWord* boundary);
178177

179178
// If "p" is in the space, returns the address of the start of the
180179
// "block" that contains "p". We say "block" instead of "object" since
@@ -588,8 +587,7 @@ class ContiguousSpace: public CompactibleSpace {
588587
// Override.
589588
DirtyCardToOopClosure* new_dcto_cl(OopIterateClosure* cl,
590589
CardTable::PrecisionStyle precision,
591-
HeapWord* boundary,
592-
bool parallel);
590+
HeapWord* boundary);
593591

594592
// Apply "blk->do_oop" to the addresses of all reference fields in objects
595593
// starting with the _saved_mark_word, which was noted during a generation's

0 commit comments

Comments
 (0)
This repository has been archived.