src/share/vm/gc_implementation/g1/concurrentMark.hpp

Print this page
rev 5061 : imported patch nmethod_changes_original

@@ -1255,10 +1255,13 @@
   size_t _hum_next_live_bytes;
 
   // Accumulator for the remembered set size
   size_t _total_remset_bytes;
 
+  // Accumulator for strong code roots memory size
+  size_t _total_strong_code_roots_bytes;
+
   static double perc(size_t val, size_t total) {
     if (total == 0) {
       return 0.0;
     } else {
       return 100.0 * ((double) val / (double) total);