2008-06-05 15:57:56 -07:00
|
|
|
/*
|
2013-05-09 11:16:39 -07:00
|
|
|
* Copyright (c) 2001, 2013, 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
|
|
|
#include "precompiled.hpp"
|
|
|
|
#include "gc_implementation/g1/concurrentG1Refine.hpp"
|
|
|
|
#include "gc_implementation/g1/concurrentG1RefineThread.hpp"
|
|
|
|
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
|
2013-05-09 11:16:39 -07:00
|
|
|
#include "gc_implementation/g1/g1HotCardCache.hpp"
|
2008-06-05 15:57:56 -07:00
|
|
|
|
2013-05-09 11:16:39 -07:00
|
|
|
ConcurrentG1Refine::ConcurrentG1Refine(G1CollectedHeap* g1h) :
|
|
|
|
_threads(NULL), _n_threads(0),
|
|
|
|
_hot_card_cache(g1h)
|
2008-06-05 15:57:56 -07:00
|
|
|
{
|
2009-12-16 15:12:51 -08:00
|
|
|
// Ergomonically select initial concurrent refinement parameters
|
2010-02-23 23:13:23 -05:00
|
|
|
if (FLAG_IS_DEFAULT(G1ConcRefinementGreenZone)) {
|
|
|
|
FLAG_SET_DEFAULT(G1ConcRefinementGreenZone, MAX2<int>(ParallelGCThreads, 1));
|
2009-12-16 15:12:51 -08:00
|
|
|
}
|
2010-02-23 23:13:23 -05:00
|
|
|
set_green_zone(G1ConcRefinementGreenZone);
|
2009-12-16 15:12:51 -08:00
|
|
|
|
2010-02-23 23:13:23 -05:00
|
|
|
if (FLAG_IS_DEFAULT(G1ConcRefinementYellowZone)) {
|
|
|
|
FLAG_SET_DEFAULT(G1ConcRefinementYellowZone, green_zone() * 3);
|
2009-12-16 15:12:51 -08:00
|
|
|
}
|
2010-02-23 23:13:23 -05:00
|
|
|
set_yellow_zone(MAX2<int>(G1ConcRefinementYellowZone, green_zone()));
|
2009-12-16 15:12:51 -08:00
|
|
|
|
2010-02-23 23:13:23 -05:00
|
|
|
if (FLAG_IS_DEFAULT(G1ConcRefinementRedZone)) {
|
|
|
|
FLAG_SET_DEFAULT(G1ConcRefinementRedZone, yellow_zone() * 2);
|
2009-12-16 15:12:51 -08:00
|
|
|
}
|
2010-02-23 23:13:23 -05:00
|
|
|
set_red_zone(MAX2<int>(G1ConcRefinementRedZone, yellow_zone()));
|
2013-05-09 11:16:39 -07:00
|
|
|
|
2009-12-16 15:12:51 -08:00
|
|
|
_n_worker_threads = thread_num();
|
|
|
|
// We need one extra thread to do the young gen rset size sampling.
|
|
|
|
_n_threads = _n_worker_threads + 1;
|
2013-05-09 11:16:39 -07:00
|
|
|
|
2009-12-16 15:12:51 -08:00
|
|
|
reset_threshold_step();
|
|
|
|
|
2012-06-28 17:03:16 -04:00
|
|
|
_threads = NEW_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _n_threads, mtGC);
|
2013-05-09 11:16:39 -07:00
|
|
|
|
2009-12-16 15:12:51 -08:00
|
|
|
int worker_id_offset = (int)DirtyCardQueueSet::num_par_ids();
|
2013-05-09 11:16:39 -07:00
|
|
|
|
2009-12-16 15:12:51 -08:00
|
|
|
ConcurrentG1RefineThread *next = NULL;
|
|
|
|
for (int i = _n_threads - 1; i >= 0; i--) {
|
|
|
|
ConcurrentG1RefineThread* t = new ConcurrentG1RefineThread(this, next, worker_id_offset, i);
|
|
|
|
assert(t != NULL, "Conc refine should have been created");
|
|
|
|
assert(t->cg1r() == this, "Conc refine thread should refer to this");
|
|
|
|
_threads[i] = t;
|
|
|
|
next = t;
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-16 15:12:51 -08:00
|
|
|
void ConcurrentG1Refine::reset_threshold_step() {
|
2010-02-23 23:13:23 -05:00
|
|
|
if (FLAG_IS_DEFAULT(G1ConcRefinementThresholdStep)) {
|
2009-12-16 15:12:51 -08:00
|
|
|
_thread_threshold_step = (yellow_zone() - green_zone()) / (worker_thread_num() + 1);
|
|
|
|
} else {
|
2010-02-23 23:13:23 -05:00
|
|
|
_thread_threshold_step = G1ConcRefinementThresholdStep;
|
2009-05-18 11:52:46 -07:00
|
|
|
}
|
2009-12-16 15:12:51 -08:00
|
|
|
}
|
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
void ConcurrentG1Refine::init() {
|
2013-05-09 11:16:39 -07:00
|
|
|
_hot_card_cache.initialize();
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
|
2009-05-11 16:30:56 -07:00
|
|
|
void ConcurrentG1Refine::stop() {
|
|
|
|
if (_threads != NULL) {
|
|
|
|
for (int i = 0; i < _n_threads; i++) {
|
|
|
|
_threads[i]->stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-16 15:12:51 -08:00
|
|
|
void ConcurrentG1Refine::reinitialize_threads() {
|
|
|
|
reset_threshold_step();
|
|
|
|
if (_threads != NULL) {
|
|
|
|
for (int i = 0; i < _n_threads; i++) {
|
|
|
|
_threads[i]->initialize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-05 15:57:56 -07:00
|
|
|
ConcurrentG1Refine::~ConcurrentG1Refine() {
|
2009-05-11 16:30:56 -07:00
|
|
|
if (_threads != NULL) {
|
|
|
|
for (int i = 0; i < _n_threads; i++) {
|
|
|
|
delete _threads[i];
|
|
|
|
}
|
2012-06-28 17:03:16 -04:00
|
|
|
FREE_C_HEAP_ARRAY(ConcurrentG1RefineThread*, _threads, mtGC);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-11 16:30:56 -07:00
|
|
|
void ConcurrentG1Refine::threads_do(ThreadClosure *tc) {
|
|
|
|
if (_threads != NULL) {
|
|
|
|
for (int i = 0; i < _n_threads; i++) {
|
|
|
|
tc->do_thread(_threads[i]);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-09 11:16:39 -07:00
|
|
|
int ConcurrentG1Refine::thread_num() {
|
|
|
|
int n_threads = (G1ConcRefinementThreads > 0) ? G1ConcRefinementThreads
|
|
|
|
: ParallelGCThreads;
|
|
|
|
return MAX2<int>(n_threads, 1);
|
2008-06-05 15:57:56 -07:00
|
|
|
}
|
2009-10-02 16:12:07 -04:00
|
|
|
|
|
|
|
void ConcurrentG1Refine::print_worker_threads_on(outputStream* st) const {
|
|
|
|
for (int i = 0; i < _n_threads; ++i) {
|
|
|
|
_threads[i]->print_on(st);
|
|
|
|
st->cr();
|
|
|
|
}
|
|
|
|
}
|