File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -967,6 +967,10 @@ class G1MergeHeapRootsTask : public WorkerTask {
967
967
_merged[G1GCPhaseTimes::MergeRSCards] += increment;
968
968
}
969
969
970
+ void dec_remset_cards (size_t decrement) {
971
+ _merged[G1GCPhaseTimes::MergeRSCards] -= decrement;
972
+ }
973
+
970
974
size_t merged (uint i) const { return _merged[i]; }
971
975
};
972
976
@@ -1091,6 +1095,11 @@ class G1MergeHeapRootsTask : public WorkerTask {
1091
1095
1092
1096
G1MergeCardSetStats stats () {
1093
1097
_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);
1094
1103
return _stats;
1095
1104
}
1096
1105
};
You can’t perform that action at this time.
0 commit comments