2008-06-05 15:57:56 -07:00
|
|
|
/*
|
2017-02-27 12:41:41 -05:00
|
|
|
* Copyright (c) 2001, 2017, 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_G1REMSET_HPP
|
|
|
|
#define SHARE_VM_GC_G1_G1REMSET_HPP
|
2010-11-23 13:22:55 -08:00
|
|
|
|
2015-12-21 12:02:03 +01:00
|
|
|
#include "gc/g1/dirtyCardQueue.hpp"
|
2016-04-06 13:41:59 +02:00
|
|
|
#include "gc/g1/g1CardLiveData.hpp"
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/g1/g1RemSetSummary.hpp"
|
2015-12-21 12:02:03 +01:00
|
|
|
#include "gc/g1/heapRegion.hpp"
|
|
|
|
#include "memory/allocation.hpp"
|
|
|
|
#include "memory/iterator.hpp"
|
2013-05-28 09:32:06 +02:00
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
// A G1RemSet provides ways of iterating over pointers into a selected
|
|
|
|
// collection set.
|
|
|
|
|
2015-12-21 12:02:03 +01:00
|
|
|
class BitMap;
|
|
|
|
class CardTableModRefBS;
|
2016-01-07 16:25:53 +01:00
|
|
|
class G1BlockOffsetTable;
|
2015-12-21 12:02:03 +01:00
|
|
|
class CodeBlobClosure;
|
|
|
|
class G1CollectedHeap;
|
2016-05-02 12:07:58 -04:00
|
|
|
class G1HotCardCache;
|
2014-12-08 18:57:33 +01:00
|
|
|
class G1ParPushHeapRSClosure;
|
2016-04-18 16:51:14 +02:00
|
|
|
class G1RemSetScanState;
|
2016-03-18 15:20:43 +01:00
|
|
|
class G1Policy;
|
2015-12-21 12:02:03 +01:00
|
|
|
class G1SATBCardTableModRefBS;
|
|
|
|
class HeapRegionClaimer;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
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.
|
2012-06-28 17:03:16 -04:00
|
|
|
class G1RemSet: public CHeapObj<mtGC> {
|
2013-05-28 09:32:06 +02:00
|
|
|
private:
|
2016-04-18 16:51:14 +02:00
|
|
|
G1RemSetScanState* _scan_state;
|
2016-04-06 13:41:59 +02:00
|
|
|
G1CardLiveData _card_live_data;
|
|
|
|
|
2013-05-28 09:32:06 +02:00
|
|
|
G1RemSetSummary _prev_period_summary;
|
2015-11-09 11:26:15 +01:00
|
|
|
|
|
|
|
// A DirtyCardQueueSet that is used to hold cards that contain
|
|
|
|
// references into the current collection set. This is used to
|
|
|
|
// update the remembered sets of the regions in the collection
|
|
|
|
// set in the event of an evacuation failure.
|
|
|
|
DirtyCardQueueSet _into_cset_dirty_card_queue_set;
|
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
protected:
|
|
|
|
G1CollectedHeap* _g1;
|
2013-05-28 09:32:06 +02:00
|
|
|
size_t _conc_refine_cards;
|
2011-12-14 13:34:57 -08:00
|
|
|
uint n_workers();
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
protected:
|
2013-04-18 10:09:23 -07:00
|
|
|
CardTableModRefBS* _ct_bs;
|
2016-03-18 15:20:43 +01:00
|
|
|
G1Policy* _g1p;
|
2016-05-02 12:07:58 -04:00
|
|
|
G1HotCardCache* _hot_card_cache;
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
public:
|
2015-12-22 11:02:04 +01:00
|
|
|
// Gives an approximation on how many threads can be expected to add records to
|
|
|
|
// a remembered set in parallel. This can be used for sizing data structures to
|
|
|
|
// decrease performance losses due to data structure sharing.
|
|
|
|
// Examples for quantities that influence this value are the maximum number of
|
|
|
|
// mutator threads, maximum number of concurrent refinement or GC threads.
|
|
|
|
static uint num_par_rem_sets();
|
|
|
|
|
|
|
|
// Initialize data that depends on the heap size being known.
|
2016-04-06 13:41:59 +02:00
|
|
|
void initialize(size_t capacity, uint max_regions);
|
2015-12-22 11:02:04 +01:00
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
// 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();
|
|
|
|
|
2016-05-02 12:07:58 -04:00
|
|
|
G1RemSet(G1CollectedHeap* g1,
|
|
|
|
CardTableModRefBS* ct_bs,
|
|
|
|
G1HotCardCache* hot_card_cache);
|
2010-10-12 09:36:48 -07:00
|
|
|
~G1RemSet();
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2016-04-18 16:51:14 +02:00
|
|
|
// Invoke "cl->do_oop" on all pointers into the collection set
|
2013-08-15 10:52:18 +02:00
|
|
|
// from objects in regions outside the collection set (having
|
2016-04-18 16:51:14 +02:00
|
|
|
// invoked "cl->set_region" to set the "from" region correctly
|
2013-08-15 10:52:18 +02:00
|
|
|
// beforehand.)
|
|
|
|
//
|
2015-09-04 09:47:35 +02:00
|
|
|
// Apply non_heap_roots on the oops of the unmarked nmethods
|
2013-08-15 10:52:18 +02:00
|
|
|
// on the strong code roots list for each region in the
|
|
|
|
// collection set.
|
|
|
|
//
|
|
|
|
// The "worker_i" param is for the parallel case where the id
|
|
|
|
// 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 ignored.
|
2017-06-14 11:26:44 +02:00
|
|
|
void oops_into_collection_set_do(G1ParPushHeapRSClosure* cl,
|
|
|
|
CodeBlobClosure* heap_region_codeblobs,
|
|
|
|
uint worker_i);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
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
|
|
|
|
2017-06-14 11:26:44 +02:00
|
|
|
void scan_rem_set(G1ParPushHeapRSClosure* oops_in_heap_closure,
|
|
|
|
CodeBlobClosure* heap_region_codeblobs,
|
|
|
|
uint worker_i);
|
2013-08-15 10:52:18 +02:00
|
|
|
|
2016-04-18 16:51:14 +02:00
|
|
|
G1RemSetScanState* scan_state() const { return _scan_state; }
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2016-04-18 16:51:14 +02:00
|
|
|
// Flush remaining refinement buffers into the remembered set,
|
|
|
|
// applying oops_in_heap_closure on the references found.
|
|
|
|
void update_rem_set(DirtyCardQueue* into_cset_dcq, G1ParPushHeapRSClosure* oops_in_heap_closure, uint worker_i);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
|
|
|
// 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.
|
2014-09-24 11:00:12 +02:00
|
|
|
template <class T> void par_write_ref(HeapRegion* from, T* p, uint 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
|
2014-10-21 11:57:22 +02:00
|
|
|
// set entries that correspond to dead heap ranges. "worker_num" is the
|
|
|
|
// parallel thread id of the current thread, and "hrclaimer" is the
|
|
|
|
// HeapRegionClaimer that should be used.
|
2016-04-06 13:41:59 +02:00
|
|
|
void scrub(uint worker_num, HeapRegionClaimer* hrclaimer);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2013-05-09 11:16:39 -07:00
|
|
|
// Refine the card corresponding to "card_ptr".
|
2017-06-02 13:47:54 +02:00
|
|
|
void refine_card_concurrently(jbyte* card_ptr,
|
|
|
|
uint worker_i);
|
|
|
|
|
|
|
|
// Refine the card corresponding to "card_ptr". Returns "true" if the given card contains
|
|
|
|
// oops that have references into the current collection set.
|
|
|
|
bool refine_card_during_gc(jbyte* card_ptr,
|
|
|
|
uint worker_i,
|
|
|
|
G1ParPushHeapRSClosure* oops_in_heap_closure);
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2013-05-28 09:32:06 +02:00
|
|
|
// Print accumulated summary info from the start of the VM.
|
2017-02-27 12:41:41 -05:00
|
|
|
void print_summary_info();
|
2010-10-12 09:36:48 -07:00
|
|
|
|
2013-05-28 09:32:06 +02:00
|
|
|
// Print accumulated summary info from the last time called.
|
2017-02-27 12:41:41 -05:00
|
|
|
void print_periodic_summary_info(const char* header, uint period_count);
|
2013-05-28 09:32:06 +02:00
|
|
|
|
2010-10-12 09:36:48 -07:00
|
|
|
// Prepare remembered set for verification.
|
2017-02-27 12:41:41 -05:00
|
|
|
void prepare_for_verify();
|
2013-05-28 09:32:06 +02:00
|
|
|
|
|
|
|
size_t conc_refine_cards() const {
|
|
|
|
return _conc_refine_cards;
|
|
|
|
}
|
2016-04-06 13:41:59 +02:00
|
|
|
|
|
|
|
void create_card_live_data(WorkGang* workers, G1CMBitMap* mark_bitmap);
|
|
|
|
void finalize_card_live_data(WorkGang* workers, G1CMBitMap* mark_bitmap);
|
|
|
|
|
|
|
|
// Verify that the liveness count data created concurrently matches one created
|
|
|
|
// during this safepoint.
|
|
|
|
void verify_card_live_data(WorkGang* workers, G1CMBitMap* actual_bitmap);
|
|
|
|
|
|
|
|
void clear_card_live_data(WorkGang* workers);
|
|
|
|
|
|
|
|
#ifdef ASSERT
|
|
|
|
void verify_card_live_data_is_clear();
|
|
|
|
#endif
|
2008-06-05 15:57:56 -07:00
|
|
|
};
|
|
|
|
|
2016-04-18 16:51:14 +02:00
|
|
|
class G1ScanRSClosure : public HeapRegionClosure {
|
|
|
|
G1RemSetScanState* _scan_state;
|
|
|
|
|
2017-06-14 11:26:44 +02:00
|
|
|
size_t _cards_scanned;
|
|
|
|
size_t _cards_claimed;
|
|
|
|
size_t _cards_skipped;
|
|
|
|
|
2015-10-19 16:21:35 +02:00
|
|
|
G1CollectedHeap* _g1h;
|
|
|
|
|
2016-04-18 16:51:14 +02:00
|
|
|
G1ParPushHeapRSClosure* _push_heap_cl;
|
2015-10-19 16:21:35 +02:00
|
|
|
CodeBlobClosure* _code_root_cl;
|
|
|
|
|
2016-01-07 16:25:53 +01:00
|
|
|
G1BlockOffsetTable* _bot;
|
2015-10-19 16:21:35 +02:00
|
|
|
G1SATBCardTableModRefBS *_ct_bs;
|
|
|
|
|
|
|
|
double _strong_code_root_scan_time_sec;
|
|
|
|
uint _worker_i;
|
|
|
|
size_t _block_size;
|
|
|
|
|
2017-06-02 13:45:21 +02:00
|
|
|
void scan_card(size_t index, HeapWord* card_start, HeapRegion *r);
|
2016-04-18 16:51:14 +02:00
|
|
|
void scan_strong_code_roots(HeapRegion* r);
|
2015-10-19 16:21:35 +02:00
|
|
|
public:
|
2016-04-18 16:51:14 +02:00
|
|
|
G1ScanRSClosure(G1RemSetScanState* scan_state,
|
|
|
|
G1ParPushHeapRSClosure* push_heap_cl,
|
|
|
|
CodeBlobClosure* code_root_cl,
|
|
|
|
uint worker_i);
|
2015-10-19 16:21:35 +02:00
|
|
|
|
|
|
|
bool doHeapRegion(HeapRegion* r);
|
|
|
|
|
|
|
|
double strong_code_root_scan_time_sec() {
|
|
|
|
return _strong_code_root_scan_time_sec;
|
|
|
|
}
|
2016-04-18 16:51:14 +02:00
|
|
|
|
2017-06-14 11:26:44 +02:00
|
|
|
size_t cards_scanned() const { return _cards_scanned; }
|
|
|
|
size_t cards_claimed() const { return _cards_claimed; }
|
|
|
|
size_t cards_skipped() const { return _cards_skipped; }
|
2015-10-19 16:21:35 +02:00
|
|
|
};
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
class UpdateRSOopClosure: public ExtendedOopClosure {
|
2009-03-10 00:47:05 -07:00
|
|
|
HeapRegion* _from;
|
2010-10-12 09:36:48 -07:00
|
|
|
G1RemSet* _rs;
|
2014-04-03 17:49:31 +04:00
|
|
|
uint _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:
|
2014-04-03 17:49:31 +04:00
|
|
|
UpdateRSOopClosure(G1RemSet* rs, uint 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
|
|
|
};
|
2010-08-02 12:51:43 -07:00
|
|
|
|
2015-05-13 15:16:06 +02:00
|
|
|
#endif // SHARE_VM_GC_G1_G1REMSET_HPP
|