< 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,148 **** 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())); --- 137,146 ----
*** 255,265 **** #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"); --- 253,262 ----
< prev index next >