Skip to content

Commit b33cb0a

Browse files
author
William Kemper
committedApr 12, 2024
8329789: GenShen: Over assertive assert when scanning remembered set
Backport-of: 69281629a4a537b988f5dfd3a93733b3ddccd109
1 parent 7b4d866 commit b33cb0a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/hotspot/share/gc/shenandoah/shenandoahScanRemembered.inline.hpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,11 @@ void ShenandoahScanRemembered<RememberedSet>::process_clusters(size_t first_clus
772772
} else {
773773
// ==== BEGIN CLEAN card range processing ====
774774

775-
assert(ctbm[cur_index] == CardTable::clean_card_val(), "Error");
775+
// If we are using the write table (during update refs, e.g.), a mutator may dirty
776+
// a card at any time. This is fine for the algorithm below because it is only
777+
// counting contiguous runs of clean cards (and only for non-product builds).
778+
assert(use_write_table || ctbm[cur_index] == CardTable::clean_card_val(), "Error");
779+
776780
// walk back over contiguous clean cards
777781
size_t i = 0;
778782
while (--cur_index >= (ssize_t)start_card_index && ctbm[cur_index] == CardTable::clean_card_val()) {

0 commit comments

Comments
 (0)
Please sign in to comment.