7143490: G1: Remove HeapRegion::_top_at_conc_mark_count

Removed the HeapRegion::_top_at_conc_mark_count field. It is no longer needed as a result of the changes for 6888336 and 7127706. Refactored the closures that finalize and verify the liveness counting data so that common functionality was placed into a base class.

Reviewed-by: brutisso, tonyp
This commit is contained in:
John Cuthbertson 2012-04-25 10:23:12 -07:00
parent f5558edf7b
commit 377a04fe57
6 changed files with 64 additions and 192 deletions

View file

@ -56,7 +56,6 @@ G1OffsetTableContigSpace::block_start_const(const void* p) const {
}
inline void HeapRegion::note_start_of_marking() {
init_top_at_conc_mark_count();
_next_marked_bytes = 0;
_next_top_at_mark_start = top();
}