2008-06-05 15:57:56 -07:00
|
|
|
/*
|
2015-05-13 15:16:06 +02:00
|
|
|
* Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
|
2008-06-05 15:57:56 -07:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2008-06-05 15:57:56 -07:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#ifndef SHARE_VM_GC_G1_HEAPREGIONREMSET_HPP
|
|
|
|
#define SHARE_VM_GC_G1_HEAPREGIONREMSET_HPP
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/g1/g1CodeCacheRemSet.hpp"
|
2015-12-21 12:02:08 +01:00
|
|
|
#include "gc/g1/g1FromCardCache.hpp"
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/g1/sparsePRT.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
// Remembered set for a heap region. Represent a set of "cards" that
|
|
|
|
// contain pointers into the owner heap region. Cards are defined somewhat
|
|
|
|
// abstractly, in terms of what the "BlockOffsetTable" in use can parse.
|
|
|
|
|
|
|
|
class G1CollectedHeap;
|
|
|
|
class G1BlockOffsetSharedArray;
|
|
|
|
class HeapRegion;
|
|
|
|
class HeapRegionRemSetIterator;
|
2012-06-25 16:00:55 -07:00
|
|
|
class PerRegionTable;
|
2008-06-05 15:57:56 -07:00
|
|
|
class SparsePRT;
|
2013-08-15 10:52:18 +02:00
|
|
|
class nmethod;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2011-01-25 17:58:19 -05:00
|
|
|
// Essentially a wrapper around SparsePRTCleanupTask. See
|
|
|
|
// sparsePRT.hpp for more details.
|
|
|
|
class HRRSCleanupTask : public SparsePRTCleanupTask {
|
|
|
|
};
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
// The "_coarse_map" is a bitmap with one bit for each region, where set
|
|
|
|
// bits indicate that the corresponding region may contain some pointer
|
|
|
|
// into the owning region.
|
|
|
|
|
|
|
|
// The "_fine_grain_entries" array is an open hash table of PerRegionTables
|
|
|
|
// (PRTs), indicating regions for which we're keeping the RS as a set of
|
|
|
|
// cards. The strategy is to cap the size of the fine-grain table,
|
|
|
|
// deleting an entry and setting the corresponding coarse-grained bit when
|
|
|
|
// we would overflow this cap.
|
|
|
|
|
|
|
|
// We use a mixture of locking and lock-free techniques here. We allow
|
|
|
|
// threads to locate PRTs without locking, but threads attempting to alter
|
|
|
|
// a bucket list obtain a lock. This means that any failing attempt to
|
|
|
|
// find a PRT must be retried with the lock. It might seem dangerous that
|
|
|
|
// a read can find a PRT that is concurrently deleted. This is all right,
|
|
|
|
// because:
|
|
|
|
//
|
|
|
|
// 1) We only actually free PRT's at safe points (though we reuse them at
|
|
|
|
// other times).
|
|
|
|
// 2) We find PRT's in an attempt to add entries. If a PRT is deleted,
|
|
|
|
// it's _coarse_map bit is set, so the that we were attempting to add
|
|
|
|
// is represented. If a deleted PRT is re-used, a thread adding a bit,
|
|
|
|
// thinking the PRT is for a different region, does no harm.
|
|
|
|
|
2009-02-10 18:39:09 +03:00
|
|
|
class OtherRegionsTable VALUE_OBJ_CLASS_SPEC {
|
2008-06-05 15:57:56 -07:00
|
|
|
friend class HeapRegionRemSetIterator;
|
|
|
|
|
|
|
|
G1CollectedHeap* _g1h;
|
2014-03-17 10:12:21 +01:00
|
|
|
Mutex* _m;
|
2008-06-05 15:57:56 -07:00
|
|
|
HeapRegion* _hr;
|
|
|
|
|
|
|
|
// These are protected by "_m".
|
|
|
|
BitMap _coarse_map;
|
|
|
|
size_t _n_coarse_entries;
|
|
|
|
static jint _n_coarsenings;
|
|
|
|
|
2012-06-25 16:00:55 -07:00
|
|
|
PerRegionTable** _fine_grain_regions;
|
|
|
|
size_t _n_fine_entries;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2012-07-17 12:24:05 -07:00
|
|
|
// The fine grain remembered sets are doubly linked together using
|
|
|
|
// their 'next' and 'prev' fields.
|
|
|
|
// This allows fast bulk freeing of all the fine grain remembered
|
|
|
|
// set entries, and fast finding of all of them without iterating
|
|
|
|
// over the _fine_grain_regions table.
|
|
|
|
PerRegionTable * _first_all_fine_prts;
|
|
|
|
PerRegionTable * _last_all_fine_prts;
|
|
|
|
|
2012-06-25 16:00:55 -07:00
|
|
|
// Used to sample a subset of the fine grain PRTs to determine which
|
|
|
|
// PRT to evict and coarsen.
|
2008-06-05 15:57:56 -07:00
|
|
|
size_t _fine_eviction_start;
|
|
|
|
static size_t _fine_eviction_stride;
|
|
|
|
static size_t _fine_eviction_sample_size;
|
|
|
|
|
|
|
|
SparsePRT _sparse_table;
|
|
|
|
|
|
|
|
// These are static after init.
|
|
|
|
static size_t _max_fine_entries;
|
|
|
|
static size_t _mod_max_fine_entries_mask;
|
|
|
|
|
|
|
|
// Requires "prt" to be the first element of the bucket list appropriate
|
|
|
|
// for "hr". If this list contains an entry for "hr", return it,
|
|
|
|
// otherwise return "NULL".
|
2012-06-25 16:00:55 -07:00
|
|
|
PerRegionTable* find_region_table(size_t ind, HeapRegion* hr) const;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2012-06-25 16:00:55 -07:00
|
|
|
// Find, delete, and return a candidate PerRegionTable, if any exists,
|
2008-06-05 15:57:56 -07:00
|
|
|
// adding the deleted region to the coarse bitmap. Requires the caller
|
|
|
|
// to hold _m, and the fine-grain table to be full.
|
2012-06-25 16:00:55 -07:00
|
|
|
PerRegionTable* delete_region_table();
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2012-07-17 12:24:05 -07:00
|
|
|
// link/add the given fine grain remembered set into the "all" list
|
|
|
|
void link_to_all(PerRegionTable * prt);
|
|
|
|
// unlink/remove the given fine grain remembered set into the "all" list
|
|
|
|
void unlink_from_all(PerRegionTable * prt);
|
|
|
|
|
2014-12-09 12:47:19 +01:00
|
|
|
bool contains_reference_locked(OopOrNarrowOopStar from) const;
|
|
|
|
|
|
|
|
// Clear the from_card_cache entries for this region.
|
|
|
|
void clear_fcc();
|
2008-06-05 15:57:56 -07:00
|
|
|
public:
|
2014-12-09 12:47:19 +01:00
|
|
|
// Create a new remembered set for the given heap region. The given mutex should
|
|
|
|
// be used to ensure consistency.
|
2014-03-17 10:12:21 +01:00
|
|
|
OtherRegionsTable(HeapRegion* hr, Mutex* m);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
// For now. Could "expand" some tables in the future, so that this made
|
|
|
|
// sense.
|
2014-09-24 11:00:12 +02:00
|
|
|
void add_reference(OopOrNarrowOopStar from, uint tid);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2014-12-09 12:47:19 +01:00
|
|
|
// Returns whether the remembered set contains the given reference.
|
|
|
|
bool contains_reference(OopOrNarrowOopStar from) const;
|
|
|
|
|
2015-01-07 15:15:37 +01:00
|
|
|
// Returns whether this remembered set (and all sub-sets) have an occupancy
|
|
|
|
// that is less or equal than the given occupancy.
|
|
|
|
bool occupancy_less_or_equal_than(size_t limit) const;
|
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
// Removes any entries shown by the given bitmaps to contain only dead
|
2014-12-09 12:47:19 +01:00
|
|
|
// objects. Not thread safe.
|
|
|
|
// Set bits in the bitmaps indicate that the given region or card is live.
|
2008-06-05 15:57:56 -07:00
|
|
|
void scrub(CardTableModRefBS* ctbs, BitMap* region_bm, BitMap* card_bm);
|
|
|
|
|
2014-12-09 12:47:19 +01:00
|
|
|
// Returns whether this remembered set (and all sub-sets) does not contain any entry.
|
2014-07-23 09:03:32 +02:00
|
|
|
bool is_empty() const;
|
|
|
|
|
2014-12-09 12:47:19 +01:00
|
|
|
// Returns the number of cards contained in this remembered set.
|
2008-06-05 15:57:56 -07:00
|
|
|
size_t occupied() const;
|
|
|
|
size_t occ_fine() const;
|
|
|
|
size_t occ_coarse() const;
|
|
|
|
size_t occ_sparse() const;
|
|
|
|
|
|
|
|
static jint n_coarsenings() { return _n_coarsenings; }
|
|
|
|
|
2014-12-09 12:47:19 +01:00
|
|
|
// Returns size of the actual remembered set containers in bytes.
|
2008-06-05 15:57:56 -07:00
|
|
|
size_t mem_size() const;
|
2014-12-09 12:47:19 +01:00
|
|
|
// Returns the size of static data in bytes.
|
2008-06-05 15:57:56 -07:00
|
|
|
static size_t static_mem_size();
|
2014-12-09 12:47:19 +01:00
|
|
|
// Returns the size of the free list content in bytes.
|
2008-06-05 15:57:56 -07:00
|
|
|
static size_t fl_mem_size();
|
|
|
|
|
2014-12-09 12:47:19 +01:00
|
|
|
// Clear the entire contents of this remembered set.
|
2008-06-05 15:57:56 -07:00
|
|
|
void clear();
|
|
|
|
|
2011-01-25 17:58:19 -05:00
|
|
|
void do_cleanup_work(HRRSCleanupTask* hrrs_cleanup_task);
|
2008-06-05 15:57:56 -07:00
|
|
|
};
|
|
|
|
|
2012-06-28 17:03:16 -04:00
|
|
|
class HeapRegionRemSet : public CHeapObj<mtGC> {
|
2008-06-05 15:57:56 -07:00
|
|
|
friend class VMStructs;
|
|
|
|
friend class HeapRegionRemSetIterator;
|
|
|
|
|
|
|
|
private:
|
|
|
|
G1BlockOffsetSharedArray* _bosa;
|
|
|
|
|
2014-03-17 10:12:21 +01:00
|
|
|
// A set of code blobs (nmethods) whose code contains pointers into
|
2013-08-15 10:52:18 +02:00
|
|
|
// the region that owns this RSet.
|
2014-03-17 10:12:21 +01:00
|
|
|
G1CodeRootSet _code_roots;
|
|
|
|
|
|
|
|
Mutex _m;
|
2013-08-15 10:52:18 +02:00
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
OtherRegionsTable _other_regions;
|
|
|
|
|
|
|
|
enum ParIterState { Unclaimed, Claimed, Complete };
|
2010-02-11 15:52:19 -08:00
|
|
|
volatile ParIterState _iter_state;
|
2014-04-01 15:45:36 +02:00
|
|
|
volatile size_t _iter_claimed;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
public:
|
2014-03-17 10:12:21 +01:00
|
|
|
HeapRegionRemSet(G1BlockOffsetSharedArray* bosa, HeapRegion* hr);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2014-03-17 10:12:47 +01:00
|
|
|
static uint num_par_rem_sets();
|
2010-02-11 15:52:19 -08:00
|
|
|
static void setup_remset_size();
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2014-07-23 09:03:32 +02:00
|
|
|
bool is_empty() const {
|
|
|
|
return (strong_code_roots_list_length() == 0) && _other_regions.is_empty();
|
|
|
|
}
|
|
|
|
|
2015-01-07 15:15:37 +01:00
|
|
|
bool occupancy_less_or_equal_than(size_t occ) const {
|
|
|
|
return (strong_code_roots_list_length() == 0) && _other_regions.occupancy_less_or_equal_than(occ);
|
|
|
|
}
|
|
|
|
|
2014-03-17 10:12:21 +01:00
|
|
|
size_t occupied() {
|
|
|
|
MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag);
|
|
|
|
return occupied_locked();
|
|
|
|
}
|
|
|
|
size_t occupied_locked() {
|
2008-06-05 15:57:56 -07:00
|
|
|
return _other_regions.occupied();
|
|
|
|
}
|
|
|
|
size_t occ_fine() const {
|
|
|
|
return _other_regions.occ_fine();
|
|
|
|
}
|
|
|
|
size_t occ_coarse() const {
|
|
|
|
return _other_regions.occ_coarse();
|
|
|
|
}
|
|
|
|
size_t occ_sparse() const {
|
|
|
|
return _other_regions.occ_sparse();
|
|
|
|
}
|
|
|
|
|
|
|
|
static jint n_coarsenings() { return OtherRegionsTable::n_coarsenings(); }
|
|
|
|
|
2012-06-25 16:00:55 -07:00
|
|
|
// Used in the sequential case.
|
2009-07-14 15:40:39 -07:00
|
|
|
void add_reference(OopOrNarrowOopStar from) {
|
2012-06-25 16:00:55 -07:00
|
|
|
_other_regions.add_reference(from, 0);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
2012-06-25 16:00:55 -07:00
|
|
|
// Used in the parallel case.
|
2014-09-24 11:00:12 +02:00
|
|
|
void add_reference(OopOrNarrowOopStar from, uint tid) {
|
2008-06-05 15:57:56 -07:00
|
|
|
_other_regions.add_reference(from, tid);
|
|
|
|
}
|
|
|
|
|
2014-12-09 12:47:19 +01:00
|
|
|
// Removes any entries in the remembered set shown by the given bitmaps to
|
|
|
|
// contain only dead objects. Not thread safe.
|
|
|
|
// One bits in the bitmaps indicate that the given region or card is live.
|
2008-06-05 15:57:56 -07:00
|
|
|
void scrub(CardTableModRefBS* ctbs, BitMap* region_bm, BitMap* card_bm);
|
|
|
|
|
|
|
|
// The region is being reclaimed; clear its remset, and any mention of
|
|
|
|
// entries for this region in other remsets.
|
|
|
|
void clear();
|
2014-03-17 10:12:21 +01:00
|
|
|
void clear_locked();
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
// Attempt to claim the region. Returns true iff this call caused an
|
|
|
|
// atomic transition from Unclaimed to Claimed.
|
|
|
|
bool claim_iter();
|
|
|
|
// Sets the iteration state to "complete".
|
|
|
|
void set_iter_complete();
|
|
|
|
// Returns "true" iff the region's iteration is complete.
|
|
|
|
bool iter_is_complete();
|
|
|
|
|
2010-02-11 15:52:19 -08:00
|
|
|
// Support for claiming blocks of cards during iteration
|
2014-04-01 15:45:36 +02:00
|
|
|
size_t iter_claimed() const { return _iter_claimed; }
|
2010-02-11 15:52:19 -08:00
|
|
|
// Claim the next block of cards
|
|
|
|
size_t iter_claimed_next(size_t step) {
|
2014-04-01 15:45:36 +02:00
|
|
|
return Atomic::add(step, &_iter_claimed) - step;
|
2010-02-11 15:52:19 -08:00
|
|
|
}
|
2014-04-01 15:45:36 +02:00
|
|
|
|
2011-06-21 15:23:07 -04:00
|
|
|
void reset_for_par_iteration();
|
|
|
|
|
|
|
|
bool verify_ready_for_par_iteration() {
|
|
|
|
return (_iter_state == Unclaimed) && (_iter_claimed == 0);
|
|
|
|
}
|
2010-02-11 15:52:19 -08:00
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
// The actual # of bytes this hr_remset takes up.
|
2013-08-15 10:52:18 +02:00
|
|
|
// Note also includes the strong code root set.
|
2008-06-05 15:57:56 -07:00
|
|
|
size_t mem_size() {
|
2014-03-17 10:12:21 +01:00
|
|
|
MutexLockerEx x(&_m, Mutex::_no_safepoint_check_flag);
|
2008-06-05 15:57:56 -07:00
|
|
|
return _other_regions.mem_size()
|
|
|
|
// This correction is necessary because the above includes the second
|
|
|
|
// part.
|
2014-04-22 11:10:12 +02:00
|
|
|
+ (sizeof(HeapRegionRemSet) - sizeof(OtherRegionsTable))
|
2013-08-15 10:52:18 +02:00
|
|
|
+ strong_code_roots_mem_size();
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the memory occupancy of all static data structures associated
|
|
|
|
// with remembered sets.
|
|
|
|
static size_t static_mem_size() {
|
2014-08-29 13:12:21 +02:00
|
|
|
return OtherRegionsTable::static_mem_size() + G1CodeRootSet::static_mem_size();
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the memory occupancy of all free_list data structures associated
|
|
|
|
// with remembered sets.
|
|
|
|
static size_t fl_mem_size() {
|
2014-08-29 13:12:21 +02:00
|
|
|
return OtherRegionsTable::fl_mem_size();
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
2009-07-14 15:40:39 -07:00
|
|
|
bool contains_reference(OopOrNarrowOopStar from) const {
|
2008-06-05 15:57:56 -07:00
|
|
|
return _other_regions.contains_reference(from);
|
|
|
|
}
|
2013-08-15 10:52:18 +02:00
|
|
|
|
|
|
|
// Routines for managing the list of code roots that point into
|
|
|
|
// the heap region that owns this RSet.
|
|
|
|
void add_strong_code_root(nmethod* nm);
|
2014-08-29 13:12:21 +02:00
|
|
|
void add_strong_code_root_locked(nmethod* nm);
|
2013-08-15 10:52:18 +02:00
|
|
|
void remove_strong_code_root(nmethod* nm);
|
|
|
|
|
|
|
|
// Applies blk->do_code_blob() to each of the entries in
|
|
|
|
// the strong code roots list
|
|
|
|
void strong_code_roots_do(CodeBlobClosure* blk) const;
|
|
|
|
|
2014-08-29 13:12:21 +02:00
|
|
|
void clean_strong_code_roots(HeapRegion* hr);
|
|
|
|
|
2013-08-15 10:52:18 +02:00
|
|
|
// Returns the number of elements in the strong code roots list
|
2014-07-23 09:03:32 +02:00
|
|
|
size_t strong_code_roots_list_length() const {
|
2014-03-17 10:12:21 +01:00
|
|
|
return _code_roots.length();
|
2013-08-15 10:52:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if the strong code roots contains the given
|
|
|
|
// nmethod.
|
|
|
|
bool strong_code_roots_list_contains(nmethod* nm) {
|
2014-03-17 10:12:21 +01:00
|
|
|
return _code_roots.contains(nm);
|
2013-08-15 10:52:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the amount of memory, in bytes, currently
|
|
|
|
// consumed by the strong code roots.
|
|
|
|
size_t strong_code_roots_mem_size();
|
|
|
|
|
2014-03-17 10:12:21 +01:00
|
|
|
void print() PRODUCT_RETURN;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
// Called during a stop-world phase to perform any deferred cleanups.
|
|
|
|
static void cleanup();
|
|
|
|
|
|
|
|
// Declare the heap size (in # of regions) to the HeapRegionRemSet(s).
|
|
|
|
// (Uses it to initialize from_card_cache).
|
2012-04-18 07:21:15 -04:00
|
|
|
static void init_heap(uint max_regions) {
|
2014-12-09 12:47:19 +01:00
|
|
|
FromCardCache::initialize(num_par_rem_sets(), max_regions);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
2014-12-09 12:47:19 +01:00
|
|
|
static void invalidate_from_card_cache(uint start_idx, size_t num_regions) {
|
|
|
|
FromCardCache::invalidate(start_idx, num_regions);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef PRODUCT
|
|
|
|
static void print_from_card_cache() {
|
2014-12-09 12:47:19 +01:00
|
|
|
FromCardCache::print();
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-01-25 17:58:19 -05:00
|
|
|
// These are wrappers for the similarly-named methods on
|
|
|
|
// SparsePRT. Look at sparsePRT.hpp for more details.
|
|
|
|
static void reset_for_cleanup_tasks();
|
|
|
|
void do_cleanup_work(HRRSCleanupTask* hrrs_cleanup_task);
|
|
|
|
static void finish_cleanup_task(HRRSCleanupTask* hrrs_cleanup_task);
|
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
// Run unit tests.
|
|
|
|
#ifndef PRODUCT
|
|
|
|
static void test();
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2013-04-18 10:09:23 -07:00
|
|
|
class HeapRegionRemSetIterator : public StackObj {
|
2014-04-16 10:55:58 +02:00
|
|
|
private:
|
|
|
|
// The region RSet over which we are iterating.
|
2014-03-17 10:12:21 +01:00
|
|
|
HeapRegionRemSet* _hrrs;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
// Local caching of HRRS fields.
|
|
|
|
const BitMap* _coarse_map;
|
|
|
|
|
|
|
|
G1BlockOffsetSharedArray* _bosa;
|
|
|
|
G1CollectedHeap* _g1h;
|
|
|
|
|
2014-04-16 10:55:58 +02:00
|
|
|
// The number of cards yielded since initialization.
|
2008-06-05 15:57:56 -07:00
|
|
|
size_t _n_yielded_fine;
|
|
|
|
size_t _n_yielded_coarse;
|
|
|
|
size_t _n_yielded_sparse;
|
|
|
|
|
2014-04-16 10:55:58 +02:00
|
|
|
// Indicates what granularity of table that we are currently iterating over.
|
2013-04-18 10:09:23 -07:00
|
|
|
// We start iterating over the sparse table, progress to the fine grain
|
|
|
|
// table, and then finish with the coarse table.
|
2008-06-05 15:57:56 -07:00
|
|
|
enum IterState {
|
|
|
|
Sparse,
|
|
|
|
Fine,
|
|
|
|
Coarse
|
|
|
|
};
|
|
|
|
IterState _is;
|
|
|
|
|
2014-04-16 10:55:58 +02:00
|
|
|
// For both Coarse and Fine remembered set iteration this contains the
|
|
|
|
// first card number of the heap region we currently iterate over.
|
2008-06-05 15:57:56 -07:00
|
|
|
size_t _cur_region_card_offset;
|
|
|
|
|
2014-04-16 10:55:58 +02:00
|
|
|
// Current region index for the Coarse remembered set iteration.
|
2011-10-05 08:44:10 -07:00
|
|
|
int _coarse_cur_region_index;
|
|
|
|
size_t _coarse_cur_region_cur_card;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
bool coarse_has_next(size_t& card_index);
|
|
|
|
|
2014-04-16 10:55:58 +02:00
|
|
|
// The PRT we are currently iterating over.
|
2012-06-25 16:00:55 -07:00
|
|
|
PerRegionTable* _fine_cur_prt;
|
2014-04-16 10:55:58 +02:00
|
|
|
// Card offset within the current PRT.
|
|
|
|
size_t _cur_card_in_prt;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2014-04-16 10:55:58 +02:00
|
|
|
// Update internal variables when switching to the given PRT.
|
|
|
|
void switch_to_prt(PerRegionTable* prt);
|
2008-06-05 15:57:56 -07:00
|
|
|
bool fine_has_next();
|
|
|
|
bool fine_has_next(size_t& card_index);
|
|
|
|
|
2014-04-16 10:55:58 +02:00
|
|
|
// The Sparse remembered set iterator.
|
|
|
|
SparsePRTIter _sparse_iter;
|
|
|
|
|
|
|
|
public:
|
2014-03-17 10:12:21 +01:00
|
|
|
HeapRegionRemSetIterator(HeapRegionRemSet* hrrs);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
// If there remains one or more cards to be yielded, returns true and
|
|
|
|
// sets "card_index" to one of those cards (which is then considered
|
|
|
|
// yielded.) Otherwise, returns false (and leaves "card_index"
|
|
|
|
// undefined.)
|
|
|
|
bool has_next(size_t& card_index);
|
|
|
|
|
|
|
|
size_t n_yielded_fine() { return _n_yielded_fine; }
|
|
|
|
size_t n_yielded_coarse() { return _n_yielded_coarse; }
|
|
|
|
size_t n_yielded_sparse() { return _n_yielded_sparse; }
|
|
|
|
size_t n_yielded() {
|
|
|
|
return n_yielded_fine() + n_yielded_coarse() + n_yielded_sparse();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#endif // SHARE_VM_GC_G1_HEAPREGIONREMSET_HPP
|