< prev index next >

src/hotspot/share/gc/g1/heapRegion.cpp

Print this page
rev 57067 : imported patch 8233588-cleanup-survrategroup
rev 57069 : imported patch 8231579-incremental-calculation-wrong
rev 57072 : imported patch 8234179-move-heapregion-inc-cset-stats-into-g1collectionset

@@ -137,12 +137,10 @@
   init_top_at_mark_start();
   if (clear_space) clear(SpaceDecorator::Mangle);
 
   _evacuation_failed = false;
   _gc_efficiency = 0.0;
-  _recorded_rs_length = 0;
-  _predicted_non_copy_time_ms = 0.0;
 }
 
 void HeapRegion::clear_cardtable() {
   G1CardTable* ct = G1CollectedHeap::heap()->card_table();
   ct->clear(MemRegion(bottom(), end()));

@@ -255,11 +253,10 @@
 #endif
   _prev_top_at_mark_start(NULL), _next_top_at_mark_start(NULL),
   _prev_marked_bytes(0), _next_marked_bytes(0),
   _young_index_in_cset(-1),
   _surv_rate_group(NULL), _age_index(SurvRateGroup::InvalidAgeIndex), _gc_efficiency(0.0),
-  _recorded_rs_length(0), _predicted_non_copy_time_ms(0),
   _node_index(G1NUMA::UnknownNodeIndex)
 {
   assert(Universe::on_page_boundary(mr.start()) && Universe::on_page_boundary(mr.end()),
          "invalid space boundaries");
 
< prev index next >