Merge
This commit is contained in:
commit
9e3de501f8
@ -169,8 +169,7 @@ static size_t calc_init_red_zone(size_t green, size_t yellow) {
|
||||
return MIN2(yellow + size, max_red_zone);
|
||||
}
|
||||
|
||||
ConcurrentG1Refine* ConcurrentG1Refine::create(CardTableEntryClosure* refine_closure,
|
||||
jint* ecode) {
|
||||
ConcurrentG1Refine* ConcurrentG1Refine::create(jint* ecode) {
|
||||
size_t min_yellow_zone_size = calc_min_yellow_zone_size();
|
||||
size_t green_zone = calc_init_green_zone();
|
||||
size_t yellow_zone = calc_init_yellow_zone(green_zone, min_yellow_zone_size);
|
||||
@ -209,7 +208,6 @@ ConcurrentG1Refine* ConcurrentG1Refine::create(CardTableEntryClosure* refine_clo
|
||||
ConcurrentG1RefineThread* t =
|
||||
new ConcurrentG1RefineThread(cg1r,
|
||||
next,
|
||||
refine_closure,
|
||||
worker_id_offset,
|
||||
i,
|
||||
activation_level(thresholds),
|
||||
|
@ -80,7 +80,7 @@ class ConcurrentG1Refine: public CHeapObj<mtGC> {
|
||||
|
||||
// Returns ConcurrentG1Refine instance if succeeded to create/initialize ConcurrentG1Refine and ConcurrentG1RefineThread.
|
||||
// Otherwise, returns NULL with error code.
|
||||
static ConcurrentG1Refine* create(CardTableEntryClosure* refine_closure, jint* ecode);
|
||||
static ConcurrentG1Refine* create(jint* ecode);
|
||||
|
||||
void stop();
|
||||
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include "gc/g1/concurrentG1Refine.hpp"
|
||||
#include "gc/g1/concurrentG1RefineThread.hpp"
|
||||
#include "gc/g1/g1CollectedHeap.inline.hpp"
|
||||
#include "gc/g1/g1RemSet.hpp"
|
||||
#include "gc/g1/suspendibleThreadSet.hpp"
|
||||
#include "logging/log.hpp"
|
||||
#include "memory/resourceArea.hpp"
|
||||
@ -34,11 +35,9 @@
|
||||
|
||||
ConcurrentG1RefineThread::
|
||||
ConcurrentG1RefineThread(ConcurrentG1Refine* cg1r, ConcurrentG1RefineThread *next,
|
||||
CardTableEntryClosure* refine_closure,
|
||||
uint worker_id_offset, uint worker_id,
|
||||
size_t activate, size_t deactivate) :
|
||||
ConcurrentGCThread(),
|
||||
_refine_closure(refine_closure),
|
||||
_worker_id_offset(worker_id_offset),
|
||||
_worker_id(worker_id),
|
||||
_active(false),
|
||||
@ -145,10 +144,7 @@ void ConcurrentG1RefineThread::run_service() {
|
||||
}
|
||||
|
||||
// Process the next buffer, if there are enough left.
|
||||
if (!dcqs.apply_closure_to_completed_buffer(_refine_closure,
|
||||
_worker_id + _worker_id_offset,
|
||||
_deactivation_threshold,
|
||||
false /* during_pause */)) {
|
||||
if (!dcqs.refine_completed_buffer_concurrently(_worker_id + _worker_id_offset, _deactivation_threshold)) {
|
||||
break; // Deactivate, number of buffers fell below threshold.
|
||||
}
|
||||
++buffers_processed;
|
||||
|
@ -25,6 +25,7 @@
|
||||
#ifndef SHARE_VM_GC_G1_CONCURRENTG1REFINETHREAD_HPP
|
||||
#define SHARE_VM_GC_G1_CONCURRENTG1REFINETHREAD_HPP
|
||||
|
||||
#include "gc/g1/dirtyCardQueue.hpp"
|
||||
#include "gc/shared/concurrentGCThread.hpp"
|
||||
|
||||
// Forward Decl.
|
||||
@ -50,9 +51,6 @@ class ConcurrentG1RefineThread: public ConcurrentGCThread {
|
||||
Monitor* _monitor;
|
||||
ConcurrentG1Refine* _cg1r;
|
||||
|
||||
// The closure applied to completed log buffers.
|
||||
CardTableEntryClosure* _refine_closure;
|
||||
|
||||
// This thread's activation/deactivation thresholds
|
||||
size_t _activation_threshold;
|
||||
size_t _deactivation_threshold;
|
||||
@ -72,7 +70,6 @@ class ConcurrentG1RefineThread: public ConcurrentGCThread {
|
||||
public:
|
||||
// Constructor
|
||||
ConcurrentG1RefineThread(ConcurrentG1Refine* cg1r, ConcurrentG1RefineThread* next,
|
||||
CardTableEntryClosure* refine_closure,
|
||||
uint worker_id_offset, uint worker_id,
|
||||
size_t activate, size_t deactivate);
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include "precompiled.hpp"
|
||||
#include "gc/g1/dirtyCardQueue.hpp"
|
||||
#include "gc/g1/g1CollectedHeap.inline.hpp"
|
||||
#include "gc/g1/g1RemSet.hpp"
|
||||
#include "gc/g1/heapRegionRemSet.hpp"
|
||||
#include "gc/shared/workgroup.hpp"
|
||||
#include "runtime/atomic.hpp"
|
||||
@ -32,6 +33,24 @@
|
||||
#include "runtime/safepoint.hpp"
|
||||
#include "runtime/thread.inline.hpp"
|
||||
|
||||
// Closure used for updating remembered sets and recording references that
|
||||
// point into the collection set while the mutator is running.
|
||||
// Assumed to be only executed concurrently with the mutator. Yields via
|
||||
// SuspendibleThreadSet after every card.
|
||||
class G1RefineCardConcurrentlyClosure: public CardTableEntryClosure {
|
||||
public:
|
||||
bool do_card_ptr(jbyte* card_ptr, uint worker_i) {
|
||||
G1CollectedHeap::heap()->g1_rem_set()->refine_card_concurrently(card_ptr, worker_i);
|
||||
|
||||
if (SuspendibleThreadSet::should_yield()) {
|
||||
// Caller will actually yield.
|
||||
return false;
|
||||
}
|
||||
// Otherwise, we finished successfully; return true.
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
// Represents a set of free small integer ids.
|
||||
class FreeIdSet : public CHeapObj<mtGC> {
|
||||
enum {
|
||||
@ -112,7 +131,6 @@ DirtyCardQueue::~DirtyCardQueue() {
|
||||
|
||||
DirtyCardQueueSet::DirtyCardQueueSet(bool notify_when_complete) :
|
||||
PtrQueueSet(notify_when_complete),
|
||||
_mut_process_closure(NULL),
|
||||
_shared_dirty_card_queue(this, true /* permanent */),
|
||||
_free_ids(NULL),
|
||||
_processed_buffers_mut(0), _processed_buffers_rs_thread(0)
|
||||
@ -125,15 +143,13 @@ uint DirtyCardQueueSet::num_par_ids() {
|
||||
return (uint)os::initial_active_processor_count();
|
||||
}
|
||||
|
||||
void DirtyCardQueueSet::initialize(CardTableEntryClosure* cl,
|
||||
Monitor* cbl_mon,
|
||||
void DirtyCardQueueSet::initialize(Monitor* cbl_mon,
|
||||
Mutex* fl_lock,
|
||||
int process_completed_threshold,
|
||||
int max_completed_queue,
|
||||
Mutex* lock,
|
||||
DirtyCardQueueSet* fl_owner,
|
||||
bool init_free_ids) {
|
||||
_mut_process_closure = cl;
|
||||
PtrQueueSet::initialize(cbl_mon,
|
||||
fl_lock,
|
||||
process_completed_threshold,
|
||||
@ -192,7 +208,8 @@ bool DirtyCardQueueSet::mut_process_buffer(BufferNode* node) {
|
||||
guarantee(_free_ids != NULL, "must be");
|
||||
|
||||
uint worker_i = _free_ids->claim_par_id(); // temporarily claim an id
|
||||
bool result = apply_closure_to_buffer(_mut_process_closure, node, true, worker_i);
|
||||
G1RefineCardConcurrentlyClosure cl;
|
||||
bool result = apply_closure_to_buffer(&cl, node, true, worker_i);
|
||||
_free_ids->release_par_id(worker_i); // release the id
|
||||
|
||||
if (result) {
|
||||
@ -226,6 +243,16 @@ BufferNode* DirtyCardQueueSet::get_completed_buffer(size_t stop_at) {
|
||||
return nd;
|
||||
}
|
||||
|
||||
bool DirtyCardQueueSet::refine_completed_buffer_concurrently(uint worker_i, size_t stop_at) {
|
||||
G1RefineCardConcurrentlyClosure cl;
|
||||
return apply_closure_to_completed_buffer(&cl, worker_i, stop_at, false);
|
||||
}
|
||||
|
||||
bool DirtyCardQueueSet::apply_closure_during_gc(CardTableEntryClosure* cl, uint worker_i) {
|
||||
assert_at_safepoint(false);
|
||||
return apply_closure_to_completed_buffer(cl, worker_i, 0, true);
|
||||
}
|
||||
|
||||
bool DirtyCardQueueSet::apply_closure_to_completed_buffer(CardTableEntryClosure* cl,
|
||||
uint worker_i,
|
||||
size_t stop_at,
|
||||
|
@ -68,9 +68,6 @@ public:
|
||||
|
||||
|
||||
class DirtyCardQueueSet: public PtrQueueSet {
|
||||
// The closure used in mut_process_buffer().
|
||||
CardTableEntryClosure* _mut_process_closure;
|
||||
|
||||
DirtyCardQueue _shared_dirty_card_queue;
|
||||
|
||||
// Apply the closure to the elements of "node" from it's index to
|
||||
@ -85,6 +82,23 @@ class DirtyCardQueueSet: public PtrQueueSet {
|
||||
bool consume,
|
||||
uint worker_i = 0);
|
||||
|
||||
// If there are more than stop_at completed buffers, pop one, apply
|
||||
// the specified closure to its active elements, and return true.
|
||||
// Otherwise return false.
|
||||
//
|
||||
// A completely processed buffer is freed. However, if a closure
|
||||
// invocation returns false, processing is stopped and the partially
|
||||
// processed buffer (with its index updated to exclude the processed
|
||||
// elements, e.g. up to the element for which the closure returned
|
||||
// false) is returned to the completed buffer set.
|
||||
//
|
||||
// If during_pause is true, stop_at must be zero, and the closure
|
||||
// must never return false.
|
||||
bool apply_closure_to_completed_buffer(CardTableEntryClosure* cl,
|
||||
uint worker_i,
|
||||
size_t stop_at,
|
||||
bool during_pause);
|
||||
|
||||
bool mut_process_buffer(BufferNode* node);
|
||||
|
||||
// Protected by the _cbl_mon.
|
||||
@ -103,8 +117,7 @@ class DirtyCardQueueSet: public PtrQueueSet {
|
||||
public:
|
||||
DirtyCardQueueSet(bool notify_when_complete = true);
|
||||
|
||||
void initialize(CardTableEntryClosure* cl,
|
||||
Monitor* cbl_mon,
|
||||
void initialize(Monitor* cbl_mon,
|
||||
Mutex* fl_lock,
|
||||
int process_completed_threshold,
|
||||
int max_completed_queue,
|
||||
@ -118,22 +131,13 @@ public:
|
||||
|
||||
static void handle_zero_index_for_thread(JavaThread* t);
|
||||
|
||||
// If there are more than stop_at completed buffers, pop one, apply
|
||||
// the specified closure to its active elements, and return true.
|
||||
// Otherwise return false.
|
||||
//
|
||||
// A completely processed buffer is freed. However, if a closure
|
||||
// invocation returns false, processing is stopped and the partially
|
||||
// processed buffer (with its index updated to exclude the processed
|
||||
// elements, e.g. up to the element for which the closure returned
|
||||
// false) is returned to the completed buffer set.
|
||||
//
|
||||
// If during_pause is true, stop_at must be zero, and the closure
|
||||
// must never return false.
|
||||
bool apply_closure_to_completed_buffer(CardTableEntryClosure* cl,
|
||||
uint worker_i,
|
||||
size_t stop_at,
|
||||
bool during_pause);
|
||||
// Apply G1RefineCardConcurrentlyClosure to completed buffers until there are stop_at
|
||||
// completed buffers remaining.
|
||||
bool refine_completed_buffer_concurrently(uint worker_i, size_t stop_at);
|
||||
|
||||
// Apply the given closure to all completed buffers. The given closure's do_card_ptr
|
||||
// must never return false. Must only be called during GC.
|
||||
bool apply_closure_during_gc(CardTableEntryClosure* cl, uint worker_i);
|
||||
|
||||
BufferNode* get_completed_buffer(size_t stop_at);
|
||||
|
||||
|
@ -94,28 +94,6 @@ size_t G1CollectedHeap::_humongous_object_threshold_in_words = 0;
|
||||
// apply to TLAB allocation, which is not part of this interface: it
|
||||
// is done by clients of this interface.)
|
||||
|
||||
// Local to this file.
|
||||
|
||||
class RefineCardTableEntryClosure: public CardTableEntryClosure {
|
||||
bool _concurrent;
|
||||
public:
|
||||
RefineCardTableEntryClosure() : _concurrent(true) { }
|
||||
|
||||
bool do_card_ptr(jbyte* card_ptr, uint worker_i) {
|
||||
G1CollectedHeap::heap()->g1_rem_set()->refine_card_concurrently(card_ptr, worker_i);
|
||||
|
||||
if (_concurrent && SuspendibleThreadSet::should_yield()) {
|
||||
// Caller will actually yield.
|
||||
return false;
|
||||
}
|
||||
// Otherwise, we finished successfully; return true.
|
||||
return true;
|
||||
}
|
||||
|
||||
void set_concurrent(bool b) { _concurrent = b; }
|
||||
};
|
||||
|
||||
|
||||
class RedirtyLoggedCardTableEntryClosure : public CardTableEntryClosure {
|
||||
private:
|
||||
size_t _num_dirtied;
|
||||
@ -1701,7 +1679,6 @@ G1CollectedHeap::G1CollectedHeap(G1CollectorPolicy* collector_policy) :
|
||||
_g1_rem_set(NULL),
|
||||
_cg1r(NULL),
|
||||
_g1mm(NULL),
|
||||
_refine_cte_cl(NULL),
|
||||
_preserved_marks_set(true /* in_c_heap */),
|
||||
_secondary_free_list("Secondary Free List", new SecondaryFreeRegionListMtSafeChecker()),
|
||||
_old_set("Old Set", false /* humongous */, new OldRegionSetMtSafeChecker()),
|
||||
@ -1779,6 +1756,12 @@ G1RegionToSpaceMapper* G1CollectedHeap::create_aux_memory_mapper(const char* des
|
||||
return result;
|
||||
}
|
||||
|
||||
jint G1CollectedHeap::initialize_concurrent_refinement() {
|
||||
jint ecode = JNI_OK;
|
||||
_cg1r = ConcurrentG1Refine::create(&ecode);
|
||||
return ecode;
|
||||
}
|
||||
|
||||
jint G1CollectedHeap::initialize() {
|
||||
CollectedHeap::pre_initialize();
|
||||
os::enable_vtime();
|
||||
@ -1803,14 +1786,6 @@ jint G1CollectedHeap::initialize() {
|
||||
Universe::check_alignment(max_byte_size, HeapRegion::GrainBytes, "g1 heap");
|
||||
Universe::check_alignment(max_byte_size, heap_alignment, "g1 heap");
|
||||
|
||||
_refine_cte_cl = new RefineCardTableEntryClosure();
|
||||
|
||||
jint ecode = JNI_OK;
|
||||
_cg1r = ConcurrentG1Refine::create(_refine_cte_cl, &ecode);
|
||||
if (_cg1r == NULL) {
|
||||
return ecode;
|
||||
}
|
||||
|
||||
// Reserve the maximum.
|
||||
|
||||
// When compressed oops are enabled, the preferred heap base
|
||||
@ -1839,9 +1814,6 @@ jint G1CollectedHeap::initialize() {
|
||||
// Create the hot card cache.
|
||||
_hot_card_cache = new G1HotCardCache(this);
|
||||
|
||||
// Also create a G1 rem set.
|
||||
_g1_rem_set = new G1RemSet(this, g1_barrier_set(), _hot_card_cache);
|
||||
|
||||
// Carve out the G1 part of the heap.
|
||||
ReservedSpace g1_rs = heap_rs.first_part(max_byte_size);
|
||||
size_t page_size = UseLargePages ? os::large_page_size() : os::vm_page_size();
|
||||
@ -1893,7 +1865,9 @@ jint G1CollectedHeap::initialize() {
|
||||
const uint max_region_idx = (1U << (sizeof(RegionIdx_t)*BitsPerByte-1)) - 1;
|
||||
guarantee((max_regions() - 1) <= max_region_idx, "too many regions");
|
||||
|
||||
g1_rem_set()->initialize(max_capacity(), max_regions());
|
||||
// Also create a G1 rem set.
|
||||
_g1_rem_set = new G1RemSet(this, g1_barrier_set(), _hot_card_cache);
|
||||
_g1_rem_set->initialize(max_capacity(), max_regions());
|
||||
|
||||
size_t max_cards_per_region = ((size_t)1 << (sizeof(CardIdx_t)*BitsPerByte-1)) - 1;
|
||||
guarantee(HeapRegion::CardsPerRegion > 0, "make sure it's initialized");
|
||||
@ -1936,8 +1910,12 @@ jint G1CollectedHeap::initialize() {
|
||||
G1SATBProcessCompletedThreshold,
|
||||
Shared_SATB_Q_lock);
|
||||
|
||||
JavaThread::dirty_card_queue_set().initialize(_refine_cte_cl,
|
||||
DirtyCardQ_CBL_mon,
|
||||
jint ecode = initialize_concurrent_refinement();
|
||||
if (ecode != JNI_OK) {
|
||||
return ecode;
|
||||
}
|
||||
|
||||
JavaThread::dirty_card_queue_set().initialize(DirtyCardQ_CBL_mon,
|
||||
DirtyCardQ_FL_lock,
|
||||
(int)concurrent_g1_refine()->yellow_zone(),
|
||||
(int)concurrent_g1_refine()->red_zone(),
|
||||
@ -1945,8 +1923,7 @@ jint G1CollectedHeap::initialize() {
|
||||
NULL, // fl_owner
|
||||
true); // init_free_ids
|
||||
|
||||
dirty_card_queue_set().initialize(NULL, // Should never be called by the Java code
|
||||
DirtyCardQ_CBL_mon,
|
||||
dirty_card_queue_set().initialize(DirtyCardQ_CBL_mon,
|
||||
DirtyCardQ_FL_lock,
|
||||
-1, // never trigger processing
|
||||
-1, // no limit on length
|
||||
@ -2123,7 +2100,7 @@ void G1CollectedHeap::iterate_hcc_closure(CardTableEntryClosure* cl, uint worker
|
||||
void G1CollectedHeap::iterate_dirty_card_closure(CardTableEntryClosure* cl, uint worker_i) {
|
||||
DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set();
|
||||
size_t n_completed_buffers = 0;
|
||||
while (dcqs.apply_closure_to_completed_buffer(cl, worker_i, 0, true)) {
|
||||
while (dcqs.apply_closure_during_gc(cl, worker_i)) {
|
||||
n_completed_buffers++;
|
||||
}
|
||||
g1_policy()->phase_times()->record_thread_work_item(G1GCPhaseTimes::UpdateRS, worker_i, n_completed_buffers);
|
||||
@ -5277,10 +5254,6 @@ void G1CollectedHeap::rebuild_region_sets(bool free_list_only) {
|
||||
used_unlocked(), recalculate_used());
|
||||
}
|
||||
|
||||
void G1CollectedHeap::set_refine_cte_cl_concurrency(bool concurrent) {
|
||||
_refine_cte_cl->set_concurrent(concurrent);
|
||||
}
|
||||
|
||||
bool G1CollectedHeap::is_in_closed_subset(const void* p) const {
|
||||
HeapRegion* hr = heap_region_containing(p);
|
||||
return hr->is_in(p);
|
||||
|
@ -109,8 +109,6 @@ public:
|
||||
bool do_object_b(oop p);
|
||||
};
|
||||
|
||||
class RefineCardTableEntryClosure;
|
||||
|
||||
class G1RegionMappingChangedListener : public G1MappingChangedListener {
|
||||
private:
|
||||
void reset_from_card_cache(uint start_idx, size_t num_regions);
|
||||
@ -781,9 +779,6 @@ protected:
|
||||
// concurrently after the collection.
|
||||
DirtyCardQueueSet _dirty_card_queue_set;
|
||||
|
||||
// The closure used to refine a single card.
|
||||
RefineCardTableEntryClosure* _refine_cte_cl;
|
||||
|
||||
// After a collection pause, convert the regions in the collection set into free
|
||||
// regions.
|
||||
void free_collection_set(G1CollectionSet* collection_set, EvacuationInfo& evacuation_info, const size_t* surviving_young_words);
|
||||
@ -940,8 +935,6 @@ protected:
|
||||
|
||||
public:
|
||||
|
||||
void set_refine_cte_cl_concurrency(bool concurrent);
|
||||
|
||||
RefToScanQueue *task_queue(uint i) const;
|
||||
|
||||
uint num_task_queues() const;
|
||||
@ -954,6 +947,9 @@ public:
|
||||
// May not return if something goes wrong.
|
||||
G1CollectedHeap(G1CollectorPolicy* policy);
|
||||
|
||||
private:
|
||||
jint initialize_concurrent_refinement();
|
||||
public:
|
||||
// Initialize the G1CollectedHeap to have the initial and
|
||||
// maximum sizes and remembered and barrier sets
|
||||
// specified by the policy object.
|
||||
|
@ -36,6 +36,7 @@
|
||||
#include "gc/g1/heapRegion.inline.hpp"
|
||||
#include "gc/g1/heapRegionManager.inline.hpp"
|
||||
#include "gc/g1/heapRegionRemSet.hpp"
|
||||
#include "gc/g1/suspendibleThreadSet.hpp"
|
||||
#include "gc/shared/gcTraceTime.inline.hpp"
|
||||
#include "memory/iterator.hpp"
|
||||
#include "memory/resourceArea.hpp"
|
||||
@ -290,13 +291,9 @@ G1RemSet::G1RemSet(G1CollectedHeap* g1,
|
||||
_prev_period_summary(),
|
||||
_into_cset_dirty_card_queue_set(false)
|
||||
{
|
||||
if (log_is_enabled(Trace, gc, remset)) {
|
||||
_prev_period_summary.initialize(this);
|
||||
}
|
||||
// Initialize the card queue set used to hold cards containing
|
||||
// references into the collection set.
|
||||
_into_cset_dirty_card_queue_set.initialize(NULL, // Should never be called by the Java code
|
||||
DirtyCardQ_CBL_mon,
|
||||
_into_cset_dirty_card_queue_set.initialize(DirtyCardQ_CBL_mon,
|
||||
DirtyCardQ_FL_lock,
|
||||
-1, // never trigger processing
|
||||
-1, // no limit on length
|
||||
@ -522,7 +519,6 @@ void G1RemSet::oops_into_collection_set_do(G1ParScanThreadState* pss,
|
||||
}
|
||||
|
||||
void G1RemSet::prepare_for_oops_into_collection_set_do() {
|
||||
_g1->set_refine_cte_cl_concurrency(false);
|
||||
DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set();
|
||||
dcqs.concatenate_logs();
|
||||
|
||||
@ -531,8 +527,6 @@ void G1RemSet::prepare_for_oops_into_collection_set_do() {
|
||||
|
||||
void G1RemSet::cleanup_after_oops_into_collection_set_do() {
|
||||
G1GCPhaseTimes* phase_times = _g1->g1_policy()->phase_times();
|
||||
// Cleanup after copy
|
||||
_g1->set_refine_cte_cl_concurrency(true);
|
||||
|
||||
// Set all cards back to clean.
|
||||
double start = os::elapsedTime();
|
||||
@ -790,12 +784,7 @@ void G1RemSet::print_periodic_summary_info(const char* header, uint period_count
|
||||
if ((G1SummarizeRSetStatsPeriod > 0) && log_is_enabled(Trace, gc, remset) &&
|
||||
(period_count % G1SummarizeRSetStatsPeriod == 0)) {
|
||||
|
||||
if (!_prev_period_summary.initialized()) {
|
||||
_prev_period_summary.initialize(this);
|
||||
}
|
||||
|
||||
G1RemSetSummary current;
|
||||
current.initialize(this);
|
||||
G1RemSetSummary current(this);
|
||||
_prev_period_summary.subtract_from(¤t);
|
||||
|
||||
Log(gc, remset) log;
|
||||
@ -811,8 +800,7 @@ void G1RemSet::print_summary_info() {
|
||||
Log(gc, remset, exit) log;
|
||||
if (log.is_trace()) {
|
||||
log.trace(" Cumulative RS summary");
|
||||
G1RemSetSummary current;
|
||||
current.initialize(this);
|
||||
G1RemSetSummary current(this);
|
||||
ResourceMark rm;
|
||||
current.print_on(log.trace_stream());
|
||||
}
|
||||
|
@ -52,7 +52,7 @@ public:
|
||||
};
|
||||
|
||||
void G1RemSetSummary::update() {
|
||||
_num_conc_refined_cards = remset()->num_conc_refined_cards();
|
||||
_num_conc_refined_cards = _rem_set->num_conc_refined_cards();
|
||||
DirtyCardQueueSet& dcqs = JavaThread::dirty_card_queue_set();
|
||||
_num_processed_buf_mutator = dcqs.processed_buffers_mut();
|
||||
_num_processed_buf_rs_threads = dcqs.processed_buffers_rs_thread();
|
||||
@ -79,27 +79,29 @@ double G1RemSetSummary::rs_thread_vtime(uint thread) const {
|
||||
return _rs_threads_vtimes[thread];
|
||||
}
|
||||
|
||||
void G1RemSetSummary::initialize(G1RemSet* remset) {
|
||||
assert(_rs_threads_vtimes == NULL, "just checking");
|
||||
assert(remset != NULL, "just checking");
|
||||
|
||||
_remset = remset;
|
||||
_num_vtimes = ConcurrentG1Refine::thread_num();
|
||||
_rs_threads_vtimes = NEW_C_HEAP_ARRAY(double, _num_vtimes, mtGC);
|
||||
memset(_rs_threads_vtimes, 0, sizeof(double) * _num_vtimes);
|
||||
|
||||
update();
|
||||
}
|
||||
|
||||
G1RemSetSummary::G1RemSetSummary() :
|
||||
_remset(NULL),
|
||||
_rem_set(NULL),
|
||||
_num_conc_refined_cards(0),
|
||||
_num_processed_buf_mutator(0),
|
||||
_num_processed_buf_rs_threads(0),
|
||||
_num_coarsenings(0),
|
||||
_rs_threads_vtimes(NULL),
|
||||
_num_vtimes(0),
|
||||
_num_vtimes(ConcurrentG1Refine::thread_num()),
|
||||
_rs_threads_vtimes(NEW_C_HEAP_ARRAY(double, _num_vtimes, mtGC)),
|
||||
_sampling_thread_vtime(0.0f) {
|
||||
|
||||
memset(_rs_threads_vtimes, 0, sizeof(double) * _num_vtimes);
|
||||
}
|
||||
|
||||
G1RemSetSummary::G1RemSetSummary(G1RemSet* rem_set) :
|
||||
_rem_set(rem_set),
|
||||
_num_conc_refined_cards(0),
|
||||
_num_processed_buf_mutator(0),
|
||||
_num_processed_buf_rs_threads(0),
|
||||
_num_coarsenings(0),
|
||||
_num_vtimes(ConcurrentG1Refine::thread_num()),
|
||||
_rs_threads_vtimes(NEW_C_HEAP_ARRAY(double, _num_vtimes, mtGC)),
|
||||
_sampling_thread_vtime(0.0f) {
|
||||
update();
|
||||
}
|
||||
|
||||
G1RemSetSummary::~G1RemSetSummary() {
|
||||
@ -110,7 +112,6 @@ G1RemSetSummary::~G1RemSetSummary() {
|
||||
|
||||
void G1RemSetSummary::set(G1RemSetSummary* other) {
|
||||
assert(other != NULL, "just checking");
|
||||
assert(remset() == other->remset(), "just checking");
|
||||
assert(_num_vtimes == other->_num_vtimes, "just checking");
|
||||
|
||||
_num_conc_refined_cards = other->num_conc_refined_cards();
|
||||
@ -127,7 +128,6 @@ void G1RemSetSummary::set(G1RemSetSummary* other) {
|
||||
|
||||
void G1RemSetSummary::subtract_from(G1RemSetSummary* other) {
|
||||
assert(other != NULL, "just checking");
|
||||
assert(remset() == other->remset(), "just checking");
|
||||
assert(_num_vtimes == other->_num_vtimes, "just checking");
|
||||
|
||||
_num_conc_refined_cards = other->num_conc_refined_cards() - _num_conc_refined_cards;
|
||||
|
@ -36,11 +36,7 @@ class G1RemSetSummary VALUE_OBJ_CLASS_SPEC {
|
||||
private:
|
||||
friend class GetRSThreadVTimeClosure;
|
||||
|
||||
G1RemSet* _remset;
|
||||
|
||||
G1RemSet* remset() const {
|
||||
return _remset;
|
||||
}
|
||||
G1RemSet* _rem_set;
|
||||
|
||||
size_t _num_conc_refined_cards;
|
||||
size_t _num_processed_buf_mutator;
|
||||
@ -48,8 +44,8 @@ private:
|
||||
|
||||
size_t _num_coarsenings;
|
||||
|
||||
double* _rs_threads_vtimes;
|
||||
size_t _num_vtimes;
|
||||
double* _rs_threads_vtimes;
|
||||
|
||||
double _sampling_thread_vtime;
|
||||
|
||||
@ -63,6 +59,8 @@ private:
|
||||
|
||||
public:
|
||||
G1RemSetSummary();
|
||||
G1RemSetSummary(G1RemSet* remset);
|
||||
|
||||
~G1RemSetSummary();
|
||||
|
||||
// set the counters in this summary to the values of the others
|
||||
@ -70,10 +68,6 @@ public:
|
||||
// subtract all counters from the other summary, and set them in the current
|
||||
void subtract_from(G1RemSetSummary* other);
|
||||
|
||||
// initialize and get the first sampling
|
||||
void initialize(G1RemSet* remset);
|
||||
bool const initialized() { return _rs_threads_vtimes != NULL; }
|
||||
|
||||
void print_on(outputStream* out);
|
||||
|
||||
double rs_thread_vtime(uint thread) const;
|
||||
|
@ -582,6 +582,8 @@ void ParallelScavengeHeap::print_tracing_info() const {
|
||||
double time = UseParallelOldGC ? PSParallelCompact::accumulated_time()->seconds() : PSMarkSweep::accumulated_time()->seconds();
|
||||
tty->print_cr("[Accumulated GC generation 1 time %3.7f secs]", time);
|
||||
}
|
||||
|
||||
AdaptiveSizePolicyOutput::print();
|
||||
}
|
||||
|
||||
|
||||
|
@ -266,4 +266,33 @@ private:
|
||||
size_t _metadata_used;
|
||||
};
|
||||
|
||||
// Class that can be used to print information about the
|
||||
// adaptive size policy at intervals specified by
|
||||
// AdaptiveSizePolicyOutputInterval. Only print information
|
||||
// if an adaptive size policy is in use.
|
||||
class AdaptiveSizePolicyOutput : AllStatic {
|
||||
static bool enabled() {
|
||||
return UseParallelGC &&
|
||||
UseAdaptiveSizePolicy &&
|
||||
log_is_enabled(Debug, gc, ergo);
|
||||
}
|
||||
public:
|
||||
static void print() {
|
||||
if (enabled()) {
|
||||
ParallelScavengeHeap::heap()->size_policy()->print();
|
||||
}
|
||||
}
|
||||
|
||||
static void print(AdaptiveSizePolicy* size_policy, uint count) {
|
||||
bool do_print =
|
||||
enabled() &&
|
||||
(AdaptiveSizePolicyOutputInterval > 0) &&
|
||||
(count % AdaptiveSizePolicyOutputInterval) == 0;
|
||||
|
||||
if (do_print) {
|
||||
size_policy->print();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#endif // SHARE_VM_GC_PARALLEL_PARALLELSCAVENGEHEAP_HPP
|
||||
|
@ -505,33 +505,4 @@ class AdaptiveSizePolicy : public CHeapObj<mtGC> {
|
||||
void print_tenuring_threshold(uint new_tenuring_threshold) const;
|
||||
};
|
||||
|
||||
// Class that can be used to print information about the
|
||||
// adaptive size policy at intervals specified by
|
||||
// AdaptiveSizePolicyOutputInterval. Only print information
|
||||
// if an adaptive size policy is in use.
|
||||
class AdaptiveSizePolicyOutput : StackObj {
|
||||
static bool enabled() {
|
||||
return UseParallelGC &&
|
||||
UseAdaptiveSizePolicy &&
|
||||
log_is_enabled(Debug, gc, ergo);
|
||||
}
|
||||
public:
|
||||
static void print() {
|
||||
if (enabled()) {
|
||||
Universe::heap()->size_policy()->print();
|
||||
}
|
||||
}
|
||||
|
||||
static void print(AdaptiveSizePolicy* size_policy, uint count) {
|
||||
bool do_print =
|
||||
enabled() &&
|
||||
(AdaptiveSizePolicyOutputInterval > 0) &&
|
||||
(count % AdaptiveSizePolicyOutputInterval) == 0;
|
||||
|
||||
if (do_print) {
|
||||
size_policy->print();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#endif // SHARE_VM_GC_SHARED_ADAPTIVESIZEPOLICY_HPP
|
||||
|
@ -478,9 +478,6 @@ class CollectedHeap : public CHeapObj<mtInternal> {
|
||||
|
||||
void increment_total_full_collections() { _total_full_collections++; }
|
||||
|
||||
// Return the AdaptiveSizePolicy for the heap.
|
||||
virtual AdaptiveSizePolicy* size_policy() = 0;
|
||||
|
||||
// Return the CollectorPolicy for the heap
|
||||
virtual CollectorPolicy* collector_policy() const = 0;
|
||||
|
||||
|
@ -51,7 +51,6 @@ CollectorPolicy::CollectorPolicy() :
|
||||
_initial_heap_byte_size(InitialHeapSize),
|
||||
_max_heap_byte_size(MaxHeapSize),
|
||||
_min_heap_byte_size(Arguments::min_heap_size()),
|
||||
_size_policy(NULL),
|
||||
_should_clear_all_soft_refs(false),
|
||||
_all_soft_refs_clear(false)
|
||||
{}
|
||||
@ -157,12 +156,6 @@ CardTableRS* CollectorPolicy::create_rem_set(MemRegion whole_heap) {
|
||||
}
|
||||
|
||||
void CollectorPolicy::cleared_all_soft_refs() {
|
||||
// If near gc overhear limit, continue to clear SoftRefs. SoftRefs may
|
||||
// have been cleared in the last collection but if the gc overhear
|
||||
// limit continues to be near, SoftRefs should still be cleared.
|
||||
if (size_policy() != NULL) {
|
||||
_should_clear_all_soft_refs = size_policy()->gc_overhead_limit_near();
|
||||
}
|
||||
_all_soft_refs_clear = true;
|
||||
}
|
||||
|
||||
@ -195,7 +188,8 @@ GenCollectorPolicy::GenCollectorPolicy() :
|
||||
_max_old_size(0),
|
||||
_gen_alignment(0),
|
||||
_young_gen_spec(NULL),
|
||||
_old_gen_spec(NULL)
|
||||
_old_gen_spec(NULL),
|
||||
_size_policy(NULL)
|
||||
{}
|
||||
|
||||
size_t GenCollectorPolicy::scale_by_NewRatio_aligned(size_t base_size) {
|
||||
@ -220,6 +214,17 @@ void GenCollectorPolicy::initialize_size_policy(size_t init_eden_size,
|
||||
GCTimeRatio);
|
||||
}
|
||||
|
||||
void GenCollectorPolicy::cleared_all_soft_refs() {
|
||||
// If near gc overhear limit, continue to clear SoftRefs. SoftRefs may
|
||||
// have been cleared in the last collection but if the gc overhear
|
||||
// limit continues to be near, SoftRefs should still be cleared.
|
||||
if (size_policy() != NULL) {
|
||||
_should_clear_all_soft_refs = size_policy()->gc_overhead_limit_near();
|
||||
}
|
||||
|
||||
CollectorPolicy::cleared_all_soft_refs();
|
||||
}
|
||||
|
||||
size_t GenCollectorPolicy::young_gen_size_lower_bound() {
|
||||
// The young generation must be aligned and have room for eden + two survivors
|
||||
return align_up(3 * _space_alignment, _gen_alignment);
|
||||
|
@ -72,9 +72,6 @@ class CollectorPolicy : public CHeapObj<mtGC> {
|
||||
size_t _space_alignment;
|
||||
size_t _heap_alignment;
|
||||
|
||||
// The sizing of the heap is controlled by a sizing policy.
|
||||
AdaptiveSizePolicy* _size_policy;
|
||||
|
||||
// Set to true when policy wants soft refs cleared.
|
||||
// Reset to false by gc after it clears all soft refs.
|
||||
bool _should_clear_all_soft_refs;
|
||||
@ -105,7 +102,6 @@ class CollectorPolicy : public CHeapObj<mtGC> {
|
||||
size_t max_heap_byte_size() { return _max_heap_byte_size; }
|
||||
size_t min_heap_byte_size() { return _min_heap_byte_size; }
|
||||
|
||||
AdaptiveSizePolicy* size_policy() { return _size_policy; }
|
||||
bool should_clear_all_soft_refs() { return _should_clear_all_soft_refs; }
|
||||
void set_should_clear_all_soft_refs(bool v) { _should_clear_all_soft_refs = v; }
|
||||
// Returns the current value of _should_clear_all_soft_refs.
|
||||
@ -116,7 +112,7 @@ class CollectorPolicy : public CHeapObj<mtGC> {
|
||||
|
||||
// Called by the GC after Soft Refs have been cleared to indicate
|
||||
// that the request in _should_clear_all_soft_refs has been fulfilled.
|
||||
void cleared_all_soft_refs();
|
||||
virtual void cleared_all_soft_refs();
|
||||
|
||||
// Identification methods.
|
||||
virtual GenCollectorPolicy* as_generation_policy() { return NULL; }
|
||||
@ -160,7 +156,8 @@ class ClearedAllSoftRefs : public StackObj {
|
||||
class GenCollectorPolicy : public CollectorPolicy {
|
||||
friend class TestGenCollectorPolicy;
|
||||
friend class VMStructs;
|
||||
protected:
|
||||
|
||||
protected:
|
||||
size_t _min_young_size;
|
||||
size_t _initial_young_size;
|
||||
size_t _max_young_size;
|
||||
@ -177,6 +174,9 @@ class GenCollectorPolicy : public CollectorPolicy {
|
||||
|
||||
GCPolicyCounters* _gc_policy_counters;
|
||||
|
||||
// The sizing of the heap is controlled by a sizing policy.
|
||||
AdaptiveSizePolicy* _size_policy;
|
||||
|
||||
// Return true if an allocation should be attempted in the older generation
|
||||
// if it fails in the younger generation. Return false, otherwise.
|
||||
virtual bool should_try_older_generation_allocation(size_t word_size) const;
|
||||
@ -249,9 +249,14 @@ class GenCollectorPolicy : public CollectorPolicy {
|
||||
HeapWord *satisfy_failed_allocation(size_t size, bool is_tlab);
|
||||
|
||||
// Adaptive size policy
|
||||
AdaptiveSizePolicy* size_policy() { return _size_policy; }
|
||||
|
||||
virtual void initialize_size_policy(size_t init_eden_size,
|
||||
size_t init_promo_size,
|
||||
size_t init_survivor_size);
|
||||
|
||||
virtual void cleared_all_soft_refs();
|
||||
|
||||
};
|
||||
|
||||
class MarkSweepPolicy : public GenCollectorPolicy {
|
||||
|
@ -319,7 +319,7 @@ void Arguments::init_version_specific_system_properties() {
|
||||
* Add a deprecation warning for an option (or alias) by adding an entry in the
|
||||
* "special_jvm_flags" table and setting the "deprecated_in" field.
|
||||
* Often an option "deprecated" in one major release will
|
||||
* be made "obsolete" in the next. In this case the entry should also have it's
|
||||
* be made "obsolete" in the next. In this case the entry should also have its
|
||||
* "obsolete_in" field set.
|
||||
*
|
||||
* OBSOLETE: An option that has been removed (and deleted from globals.hpp), but is still accepted
|
||||
@ -380,8 +380,10 @@ static SpecialFlag const special_jvm_flags[] = {
|
||||
{ "UseConcMarkSweepGC", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::undefined() },
|
||||
|
||||
// --- Deprecated alias flags (see also aliased_jvm_flags) - sorted by obsolete_in then expired_in:
|
||||
{ "DefaultMaxRAMFraction", JDK_Version::jdk(8), JDK_Version::undefined(), JDK_Version::undefined() },
|
||||
{ "CreateMinidumpOnCrash", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::undefined() },
|
||||
{ "DefaultMaxRAMFraction", JDK_Version::jdk(8), JDK_Version::undefined(), JDK_Version::undefined() },
|
||||
{ "CreateMinidumpOnCrash", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::undefined() },
|
||||
{ "MustCallLoadClassInternal", JDK_Version::jdk(10), JDK_Version::undefined(), JDK_Version::undefined() },
|
||||
{ "UnsyncloadClass", JDK_Version::jdk(10), JDK_Version::undefined(), JDK_Version::undefined() },
|
||||
|
||||
// -------------- Obsolete Flags - sorted by expired_in --------------
|
||||
{ "ConvertSleepToYield", JDK_Version::jdk(9), JDK_Version::jdk(10), JDK_Version::jdk(11) },
|
||||
|
@ -486,7 +486,6 @@ void before_exit(JavaThread* thread) {
|
||||
ClassLoaderDataGraph::dump_on(log.trace_stream());
|
||||
}
|
||||
}
|
||||
AdaptiveSizePolicyOutput::print();
|
||||
|
||||
if (PrintBytecodeHistogram) {
|
||||
BytecodeHistogram::print();
|
||||
|
@ -40,7 +40,9 @@ public class VMDeprecatedOptions {
|
||||
*/
|
||||
public static final String[][] DEPRECATED_OPTIONS = {
|
||||
// deprecated non-alias flags:
|
||||
{"MaxGCMinorPauseMillis", "1032"},
|
||||
{"MaxGCMinorPauseMillis", "1032"},
|
||||
{"MustCallLoadClassInternal", "false"},
|
||||
{"UnsyncloadClass", "false"},
|
||||
|
||||
// deprecated alias flags (see also aliased_jvm_flags):
|
||||
{"DefaultMaxRAMFraction", "4"},
|
||||
|
Loading…
Reference in New Issue
Block a user