2008-06-05 15:57:56 -07:00
|
|
|
/*
|
2010-08-02 12:51:43 -07:00
|
|
|
* Copyright (c) 2001, 2010, 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1REMSET_HPP
|
|
|
|
#define SHARE_VM_GC_IMPLEMENTATION_G1_G1REMSET_HPP
|
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
// A G1RemSet provides ways of iterating over pointers into a selected
|
|
|
|
// collection set.
|
|
|
|
|
|
|
|
class G1CollectedHeap;
|
|
|
|
class CardTableModRefBarrierSet;
|
|
|
|
class ConcurrentG1Refine;
|
|
|
|
|
2010-10-12 09:36:48 -07:00
|
|
|
// A G1RemSet in which each heap region has a rem set that records the
|
|
|
|
// external heap references into it. Uses a mod ref bs to track updates,
|
|
|
|
// so that they can be used to update the individual region remsets.
|
|
|
|
|
2009-02-10 18:39:09 +03:00
|
|
|
class G1RemSet: public CHeapObj {
|
2008-06-05 15:57:56 -07:00
|
|
|
protected:
|
|
|
|
G1CollectedHeap* _g1;
|
|
|
|
unsigned _conc_refine_cards;
|
2011-12-14 13:34:57 -08:00
|
|
|
uint n_workers();
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
enum SomePrivateConstants {
|
|
|
|
UpdateRStoMergeSync = 0,
|
|
|
|
MergeRStoDoDirtySync = 1,
|
|
|
|
DoDirtySync = 2,
|
|
|
|
LastSync = 3,
|
|
|
|
|
|
|
|
SeqTask = 0,
|
|
|
|
NumSeqTasks = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
CardTableModRefBS* _ct_bs;
|
|
|
|
SubTasksDone* _seq_task;
|
|
|
|
G1CollectorPolicy* _g1p;
|
|
|
|
|
|
|
|
ConcurrentG1Refine* _cg1r;
|
|
|
|
|
|
|
|
size_t* _cards_scanned;
|
|
|
|
size_t _total_cards_scanned;
|
|
|
|
|
2010-08-02 12:51:43 -07:00
|
|
|
// Used for caching the closure that is responsible for scanning
|
|
|
|
// references into the collection set.
|
|
|
|
OopsInHeapRegionClosure** _cset_rs_update_cl;
|
2009-07-14 15:40:39 -07:00
|
|
|
|
2009-08-04 16:00:17 -07:00
|
|
|
// The routine that performs the actual work of refining a dirty
|
|
|
|
// card.
|
2010-08-02 12:51:43 -07:00
|
|
|
// If check_for_refs_into_refs is true then a true result is returned
|
|
|
|
// if the card contains oops that have references into the current
|
|
|
|
// collection set.
|
|
|
|
bool concurrentRefineOneCard_impl(jbyte* card_ptr, int worker_i,
|
|
|
|
bool check_for_refs_into_cset);
|
2009-08-04 16:00:17 -07:00
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
public:
|
|
|
|
// This is called to reset dual hash tables after the gc pause
|
|
|
|
// is finished and the initial hash table is no longer being
|
|
|
|
// scanned.
|
|
|
|
void cleanupHRRS();
|
|
|
|
|
2010-10-12 09:36:48 -07:00
|
|
|
G1RemSet(G1CollectedHeap* g1, CardTableModRefBS* ct_bs);
|
|
|
|
~G1RemSet();
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2010-10-12 09:36:48 -07:00
|
|
|
// Invoke "blk->do_oop" on all pointers into the CS in objects in regions
|
|
|
|
// outside the CS (having invoked "blk->set_region" to set the "from"
|
|
|
|
// region correctly beforehand.) The "worker_i" param is for the
|
|
|
|
// parallel case where the number of the worker thread calling this
|
|
|
|
// function can be helpful in partitioning the work to be done. It
|
|
|
|
// should be the same as the "i" passed to the calling thread's
|
|
|
|
// work(i) function. In the sequential case this param will be ingored.
|
2008-06-05 15:57:56 -07:00
|
|
|
void oops_into_collection_set_do(OopsInHeapRegionClosure* blk,
|
|
|
|
int worker_i);
|
|
|
|
|
2010-10-12 09:36:48 -07:00
|
|
|
// Prepare for and cleanup after an oops_into_collection_set_do
|
|
|
|
// call. Must call each of these once before and after (in sequential
|
|
|
|
// code) any threads call oops_into_collection_set_do. (This offers an
|
|
|
|
// opportunity to sequential setup and teardown of structures needed by a
|
|
|
|
// parallel iteration over the CS's RS.)
|
2008-06-05 15:57:56 -07:00
|
|
|
void prepare_for_oops_into_collection_set_do();
|
|
|
|
void cleanup_after_oops_into_collection_set_do();
|
2010-10-12 09:36:48 -07:00
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
void scanRS(OopsInHeapRegionClosure* oc, int worker_i);
|
2010-08-02 12:51:43 -07:00
|
|
|
void updateRS(DirtyCardQueue* into_cset_dcq, int worker_i);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
CardTableModRefBS* ct_bs() { return _ct_bs; }
|
|
|
|
size_t cardsScanned() { return _total_cards_scanned; }
|
|
|
|
|
|
|
|
// Record, if necessary, the fact that *p (where "p" is in region "from",
|
|
|
|
// which is required to be non-NULL) has changed to a new non-NULL value.
|
2010-11-16 14:07:33 -08:00
|
|
|
template <class T> void write_ref(HeapRegion* from, T* p);
|
|
|
|
template <class T> void par_write_ref(HeapRegion* from, T* p, int tid);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2010-10-12 09:36:48 -07:00
|
|
|
// Requires "region_bm" and "card_bm" to be bitmaps with 1 bit per region
|
|
|
|
// or card, respectively, such that a region or card with a corresponding
|
|
|
|
// 0 bit contains no part of any live object. Eliminates any remembered
|
|
|
|
// set entries that correspond to dead heap ranges.
|
2008-06-05 15:57:56 -07:00
|
|
|
void scrub(BitMap* region_bm, BitMap* card_bm);
|
2010-10-12 09:36:48 -07:00
|
|
|
|
|
|
|
// Like the above, but assumes is called in parallel: "worker_num" is the
|
|
|
|
// parallel thread id of the current thread, and "claim_val" is the
|
|
|
|
// value that should be used to claim heap regions.
|
2008-06-05 15:57:56 -07:00
|
|
|
void scrub_par(BitMap* region_bm, BitMap* card_bm,
|
2011-12-14 13:34:57 -08:00
|
|
|
uint worker_num, int claim_val);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2010-10-12 09:36:48 -07:00
|
|
|
// Refine the card corresponding to "card_ptr". If "sts" is non-NULL,
|
|
|
|
// join and leave around parts that must be atomic wrt GC. (NULL means
|
|
|
|
// being done at a safepoint.)
|
|
|
|
// If check_for_refs_into_cset is true, a true result is returned
|
|
|
|
// if the given card contains oops that have references into the
|
|
|
|
// current collection set.
|
2010-08-02 12:51:43 -07:00
|
|
|
virtual bool concurrentRefineOneCard(jbyte* card_ptr, int worker_i,
|
|
|
|
bool check_for_refs_into_cset);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2010-10-12 09:36:48 -07:00
|
|
|
// Print any relevant summary info.
|
2008-06-05 15:57:56 -07:00
|
|
|
virtual void print_summary_info();
|
2010-10-12 09:36:48 -07:00
|
|
|
|
|
|
|
// Prepare remembered set for verification.
|
2008-06-05 15:57:56 -07:00
|
|
|
virtual void prepare_for_verify();
|
|
|
|
};
|
|
|
|
|
|
|
|
class CountNonCleanMemRegionClosure: public MemRegionClosure {
|
|
|
|
G1CollectedHeap* _g1;
|
|
|
|
int _n;
|
|
|
|
HeapWord* _start_first;
|
|
|
|
public:
|
|
|
|
CountNonCleanMemRegionClosure(G1CollectedHeap* g1) :
|
|
|
|
_g1(g1), _n(0), _start_first(NULL)
|
|
|
|
{}
|
|
|
|
void do_MemRegion(MemRegion mr);
|
|
|
|
int n() { return _n; };
|
|
|
|
HeapWord* start_first() { return _start_first; }
|
|
|
|
};
|
2009-03-10 00:47:05 -07:00
|
|
|
|
|
|
|
class UpdateRSOopClosure: public OopClosure {
|
|
|
|
HeapRegion* _from;
|
2010-10-12 09:36:48 -07:00
|
|
|
G1RemSet* _rs;
|
2009-03-10 00:47:05 -07:00
|
|
|
int _worker_i;
|
2009-07-14 15:40:39 -07:00
|
|
|
|
|
|
|
template <class T> void do_oop_work(T* p);
|
|
|
|
|
2009-03-10 00:47:05 -07:00
|
|
|
public:
|
2010-10-12 09:36:48 -07:00
|
|
|
UpdateRSOopClosure(G1RemSet* rs, int worker_i = 0) :
|
2010-11-16 14:07:33 -08:00
|
|
|
_from(NULL), _rs(rs), _worker_i(worker_i)
|
|
|
|
{}
|
2009-03-10 00:47:05 -07:00
|
|
|
|
|
|
|
void set_from(HeapRegion* from) {
|
|
|
|
assert(from != NULL, "from region must be non-NULL");
|
|
|
|
_from = from;
|
|
|
|
}
|
|
|
|
|
2009-07-14 15:40:39 -07:00
|
|
|
virtual void do_oop(narrowOop* p) { do_oop_work(p); }
|
|
|
|
virtual void do_oop(oop* p) { do_oop_work(p); }
|
2009-03-10 00:47:05 -07:00
|
|
|
|
|
|
|
// Override: this closure is idempotent.
|
|
|
|
// bool idempotent() { return true; }
|
|
|
|
bool apply_to_weak_ref_discovered_field() { return true; }
|
|
|
|
};
|
2010-08-02 12:51:43 -07:00
|
|
|
|
|
|
|
class UpdateRSetImmediate: public OopsInHeapRegionClosure {
|
|
|
|
private:
|
|
|
|
G1RemSet* _g1_rem_set;
|
|
|
|
|
|
|
|
template <class T> void do_oop_work(T* p);
|
|
|
|
public:
|
|
|
|
UpdateRSetImmediate(G1RemSet* rs) :
|
|
|
|
_g1_rem_set(rs) {}
|
|
|
|
|
|
|
|
virtual void do_oop(narrowOop* p) { do_oop_work(p); }
|
|
|
|
virtual void do_oop( oop* p) { do_oop_work(p); }
|
|
|
|
};
|
2010-11-16 14:07:33 -08:00
|
|
|
|
|
|
|
class UpdateRSOrPushRefOopClosure: public OopClosure {
|
|
|
|
G1CollectedHeap* _g1;
|
|
|
|
G1RemSet* _g1_rem_set;
|
|
|
|
HeapRegion* _from;
|
|
|
|
OopsInHeapRegionClosure* _push_ref_cl;
|
|
|
|
bool _record_refs_into_cset;
|
|
|
|
int _worker_i;
|
|
|
|
|
|
|
|
template <class T> void do_oop_work(T* p);
|
|
|
|
|
|
|
|
public:
|
|
|
|
UpdateRSOrPushRefOopClosure(G1CollectedHeap* g1h,
|
|
|
|
G1RemSet* rs,
|
|
|
|
OopsInHeapRegionClosure* push_ref_cl,
|
|
|
|
bool record_refs_into_cset,
|
|
|
|
int worker_i = 0) :
|
|
|
|
_g1(g1h),
|
|
|
|
_g1_rem_set(rs),
|
|
|
|
_from(NULL),
|
|
|
|
_record_refs_into_cset(record_refs_into_cset),
|
|
|
|
_push_ref_cl(push_ref_cl),
|
|
|
|
_worker_i(worker_i) { }
|
|
|
|
|
|
|
|
void set_from(HeapRegion* from) {
|
|
|
|
assert(from != NULL, "from region must be non-NULL");
|
|
|
|
_from = from;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool self_forwarded(oop obj) {
|
|
|
|
bool result = (obj->is_forwarded() && (obj->forwardee()== obj));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void do_oop(narrowOop* p) { do_oop_work(p); }
|
|
|
|
virtual void do_oop(oop* p) { do_oop_work(p); }
|
|
|
|
|
|
|
|
bool apply_to_weak_ref_discovered_field() { return true; }
|
|
|
|
};
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
|
|
|
|
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1REMSET_HPP
|