jdk-24/test/hotspot/gtest/gc/shared/test_collectorPolicy.cpp
2024-09-04 07:09:59 +00:00

203 lines
6.5 KiB
C++

/*
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* 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.
*
* 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.
*/
#include "precompiled.hpp"
#include "gc/serial/serialArguments.hpp"
#include "runtime/arguments.hpp"
#include "runtime/flags/flagSetting.hpp"
#include "runtime/globals_extension.hpp"
#include "utilities/align.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/macros.hpp"
#include "unittest.hpp"
class TestGenCollectorPolicy {
public:
class Executor {
public:
virtual void execute() = 0;
};
class UnaryExecutor : public Executor {
protected:
const size_t param;
public:
UnaryExecutor(size_t val) : param(val) { }
};
class BinaryExecutor : public Executor {
protected:
const size_t param1;
const size_t param2;
public:
BinaryExecutor(size_t val1, size_t val2) : param1(val1), param2(val2) { }
};
class TestWrapper {
public:
static void test(Executor* setter1, Executor* setter2, Executor* checker) {
AutoSaveRestore<size_t> FLAG_GUARD(MinHeapSize);
AutoSaveRestore<size_t> FLAG_GUARD(InitialHeapSize);
AutoSaveRestore<size_t> FLAG_GUARD(MaxHeapSize);
AutoSaveRestore<size_t> FLAG_GUARD(MaxNewSize);
AutoSaveRestore<size_t> FLAG_GUARD(MinHeapDeltaBytes);
AutoSaveRestore<size_t> FLAG_GUARD(NewSize);
MinHeapSize = 40 * M;
FLAG_SET_ERGO(InitialHeapSize, 100 * M);
FLAG_SET_ERGO(NewSize, 1 * M);
FLAG_SET_ERGO(MaxNewSize, 50 * M);
ASSERT_NO_FATAL_FAILURE(setter1->execute());
if (setter2 != nullptr) {
ASSERT_NO_FATAL_FAILURE(setter2->execute());
}
ASSERT_NO_FATAL_FAILURE(checker->execute());
}
static void test(Executor* setter, Executor* checker) {
test(setter, nullptr, checker);
}
};
class SetNewSizeErgo : public UnaryExecutor {
public:
SetNewSizeErgo(size_t param) : UnaryExecutor(param) { }
void execute() {
FLAG_SET_ERGO(NewSize, param);
}
};
class CheckYoungMin : public UnaryExecutor {
public:
CheckYoungMin(size_t param) : UnaryExecutor(param) { }
void execute() {
SerialArguments sa;
sa.initialize_heap_sizes();
ASSERT_LE(MinNewSize, param);
}
};
static size_t scale_by_NewRatio_aligned(size_t value, size_t alignment) {
// Accessible via friend declaration
return GenArguments::scale_by_NewRatio_aligned(value, alignment);
}
class CheckScaledYoungInitial : public Executor {
public:
void execute() {
size_t initial_heap_size = InitialHeapSize;
SerialArguments sa;
sa.initialize_heap_sizes();
if (InitialHeapSize > initial_heap_size) {
// InitialHeapSize was adapted by sa.initialize_heap_sizes, e.g. due to alignment
// caused by 64K page size.
initial_heap_size = InitialHeapSize;
}
size_t expected = scale_by_NewRatio_aligned(initial_heap_size, GenAlignment);
ASSERT_EQ(expected, NewSize);
}
};
class SetNewSizeCmd : public UnaryExecutor {
public:
SetNewSizeCmd(size_t param) : UnaryExecutor(param) { }
void execute() {
FLAG_SET_CMDLINE(NewSize, param);
}
};
class CheckYoungInitial : public UnaryExecutor {
public:
CheckYoungInitial(size_t param) : UnaryExecutor(param) { }
void execute() {
SerialArguments sa;
sa.initialize_heap_sizes();
ASSERT_EQ(param, NewSize);
}
};
class SetMaxNewSizeCmd : public BinaryExecutor {
public:
SetMaxNewSizeCmd(size_t param1, size_t param2) : BinaryExecutor(param1, param2) { }
void execute() {
size_t heap_alignment = GCArguments::compute_heap_alignment();
size_t new_size_value = align_up(MaxHeapSize, heap_alignment)
- param1 + param2;
FLAG_SET_CMDLINE(MaxNewSize, new_size_value);
}
};
};
// Testing that the NewSize flag is handled correct is hard because it
// depends on so many other configurable variables. These tests only try to
// verify that there are some basic rules for NewSize honored by the policies.
// Tests require at least 128M of MaxHeap
// otherwise ergonomic is different and generation sizes might be changed.
// If NewSize has been ergonomically set, the collector policy
// should use it for min but calculate the initial young size
// using NewRatio.
TEST_VM(CollectorPolicy, young_scaled_initial_ergo) {
if (MaxHeapSize < 128 * M) {
return;
}
TestGenCollectorPolicy::SetNewSizeErgo setter(20 * M);
TestGenCollectorPolicy::CheckScaledYoungInitial checker;
TestGenCollectorPolicy::TestWrapper::test(&setter, &checker);
}
// Since a flag has been set with FLAG_SET_CMDLINE it
// will be treated as it have been set on the command line for
// the rest of the VM lifetime. This is an irreversible change and
// could impact other tests so we use TEST_OTHER_VM
TEST_OTHER_VM(CollectorPolicy, young_cmd) {
if (MaxHeapSize < 128 * M) {
return;
}
// If NewSize is set on the command line, it should be used
// for both min and initial young size if less than min heap.
TestGenCollectorPolicy::SetNewSizeCmd setter(20 * M);
TestGenCollectorPolicy::CheckYoungMin checker_min(20 * M);
TestGenCollectorPolicy::TestWrapper::test(&setter, &checker_min);
TestGenCollectorPolicy::CheckYoungInitial checker_initial(20 * M);
TestGenCollectorPolicy::TestWrapper::test(&setter, &checker_initial);
// If NewSize is set on command line, but is larger than the min
// heap size, it should only be used for initial young size.
TestGenCollectorPolicy::SetNewSizeCmd setter_large(50 * M);
TestGenCollectorPolicy::CheckYoungInitial checker_large(50 * M);
TestGenCollectorPolicy::TestWrapper::test(&setter_large, &checker_large);
}