2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2020-05-13 17:01:10 -04:00
|
|
|
* Copyright (c) 2007, 2020, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00: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.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "precompiled.hpp"
|
2017-11-30 13:40:07 +01:00
|
|
|
#include "gc/parallel/psMemoryPool.hpp"
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2015-08-18 21:32:21 +02:00
|
|
|
PSGenerationPool::PSGenerationPool(PSOldGen* old_gen,
|
2007-12-01 00:00:00 +00:00
|
|
|
const char* name,
|
|
|
|
bool support_usage_threshold) :
|
2017-11-30 13:40:07 +01:00
|
|
|
CollectedMemoryPool(name, old_gen->capacity_in_bytes(),
|
2015-08-18 21:32:21 +02:00
|
|
|
old_gen->reserved().byte_size(), support_usage_threshold), _old_gen(old_gen) {
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MemoryUsage PSGenerationPool::get_memory_usage() {
|
|
|
|
size_t maxSize = (available_for_allocation() ? max_size() : 0);
|
|
|
|
size_t used = used_in_bytes();
|
2015-08-18 21:32:21 +02:00
|
|
|
size_t committed = _old_gen->capacity_in_bytes();
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
return MemoryUsage(initial_size(), used, committed, maxSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The max size of EdenMutableSpacePool =
|
|
|
|
// max size of the PSYoungGen - capacity of two survivor spaces
|
|
|
|
//
|
|
|
|
// Max size of PS eden space is changing due to ergonomic.
|
|
|
|
// PSYoungGen, PSOldGen, Eden, Survivor spaces are all resizable.
|
|
|
|
//
|
2015-08-18 21:32:21 +02:00
|
|
|
EdenMutableSpacePool::EdenMutableSpacePool(PSYoungGen* young_gen,
|
2007-12-01 00:00:00 +00:00
|
|
|
MutableSpace* space,
|
|
|
|
const char* name,
|
|
|
|
bool support_usage_threshold) :
|
2017-11-30 13:40:07 +01:00
|
|
|
CollectedMemoryPool(name, space->capacity_in_bytes(),
|
2020-05-13 17:01:10 -04:00
|
|
|
(young_gen->max_gen_size() -
|
|
|
|
young_gen->from_space()->capacity_in_bytes() -
|
|
|
|
young_gen->to_space()->capacity_in_bytes()),
|
|
|
|
support_usage_threshold),
|
2015-08-18 21:32:21 +02:00
|
|
|
_young_gen(young_gen),
|
|
|
|
_space(space) {
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MemoryUsage EdenMutableSpacePool::get_memory_usage() {
|
|
|
|
size_t maxSize = (available_for_allocation() ? max_size() : 0);
|
|
|
|
size_t used = used_in_bytes();
|
|
|
|
size_t committed = _space->capacity_in_bytes();
|
|
|
|
|
|
|
|
return MemoryUsage(initial_size(), used, committed, maxSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The max size of SurvivorMutableSpacePool =
|
|
|
|
// current capacity of the from-space
|
|
|
|
//
|
|
|
|
// PS from and to survivor spaces could have different sizes.
|
|
|
|
//
|
2015-08-18 21:32:21 +02:00
|
|
|
SurvivorMutableSpacePool::SurvivorMutableSpacePool(PSYoungGen* young_gen,
|
2007-12-01 00:00:00 +00:00
|
|
|
const char* name,
|
|
|
|
bool support_usage_threshold) :
|
2017-11-30 13:40:07 +01:00
|
|
|
CollectedMemoryPool(name, young_gen->from_space()->capacity_in_bytes(),
|
2015-08-18 21:32:21 +02:00
|
|
|
young_gen->from_space()->capacity_in_bytes(),
|
|
|
|
support_usage_threshold), _young_gen(young_gen) {
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MemoryUsage SurvivorMutableSpacePool::get_memory_usage() {
|
|
|
|
size_t maxSize = (available_for_allocation() ? max_size() : 0);
|
|
|
|
size_t used = used_in_bytes();
|
|
|
|
size_t committed = committed_in_bytes();
|
|
|
|
return MemoryUsage(initial_size(), used, committed, maxSize);
|
|
|
|
}
|