Skip to content

Commit 4a12f5b

Browse files
author
Thomas Schatzl
committedOct 8, 2024
8341643: G1: Merged cards counter skewed by merge cards cache
Reviewed-by: iwalulya, mli
1 parent 6e48618 commit 4a12f5b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎src/hotspot/share/gc/g1/g1RemSet.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -967,6 +967,10 @@ class G1MergeHeapRootsTask : public WorkerTask {
967967
_merged[G1GCPhaseTimes::MergeRSCards] += increment;
968968
}
969969

970+
void dec_remset_cards(size_t decrement) {
971+
_merged[G1GCPhaseTimes::MergeRSCards] -= decrement;
972+
}
973+
970974
size_t merged(uint i) const { return _merged[i]; }
971975
};
972976

@@ -1091,6 +1095,11 @@ class G1MergeHeapRootsTask : public WorkerTask {
10911095

10921096
G1MergeCardSetStats stats() {
10931097
_merge_card_set_cache.flush();
1098+
// Compensation for the dummy cards that were initially pushed into the
1099+
// card cache.
1100+
// We do not need to compensate for the other counters because the dummy
1101+
// card mark will never update another counter because it is initally "dirty".
1102+
_stats.dec_remset_cards(G1MergeCardSetCache::CacheSize);
10941103
return _stats;
10951104
}
10961105
};

0 commit comments

Comments
 (0)
Please sign in to comment.