diff src/share/vm/gc_implementation/g1/concurrentMark.hpp @ 10290:05a17f270c7e

8014240: G1: Add remembered set size information to output of G1PrintRegionLivenessInfo Summary: Improve the output of G1PrintRegionLivenessInfo by adding a per-region remembered set size information column Reviewed-by: jwilhelm, johnc
author tschatzl
date Thu, 16 May 2013 13:02:33 +0200
parents 7b835924c31c
children 001ec9515f84
line wrap: on
line diff
--- a/src/share/vm/gc_implementation/g1/concurrentMark.hpp	Wed May 15 22:35:36 2013 -0700
+++ b/src/share/vm/gc_implementation/g1/concurrentMark.hpp	Thu May 16 13:02:33 2013 +0200
@@ -1257,6 +1257,9 @@
   size_t _hum_prev_live_bytes;
   size_t _hum_next_live_bytes;
 
+  // Accumulator for the remembered set size
+  size_t _total_remset_bytes;
+
   static double perc(size_t val, size_t total) {
     if (total == 0) {
       return 0.0;