mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-04 12:08:36 +00:00
135 lines
5.3 KiB
Java
135 lines
5.3 KiB
Java
/*
|
|
* Copyright (c) 2025, 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.
|
|
*/
|
|
|
|
/*
|
|
* @test id=G1
|
|
* @summary Run tests with G1
|
|
* @library /test/lib
|
|
* @build jdk.test.lib.Platform
|
|
* @requires os.family == "linux"
|
|
* @requires vm.gc.G1
|
|
* @run driver TestTransparentHugePagesHeap G1
|
|
*/
|
|
/*
|
|
* @test id=Parallel
|
|
* @summary Run tests with Parallel
|
|
* @library /test/lib
|
|
* @build jdk.test.lib.Platform
|
|
* @requires os.family == "linux"
|
|
* @requires vm.gc.Parallel
|
|
* @run driver TestTransparentHugePagesHeap Parallel
|
|
*/
|
|
/*
|
|
* @test id=Serial
|
|
* @summary Run tests with Serial
|
|
* @library /test/lib
|
|
* @build jdk.test.lib.Platform
|
|
* @requires os.family == "linux"
|
|
* @requires vm.gc.Serial
|
|
* @run driver TestTransparentHugePagesHeap Serial
|
|
*/
|
|
|
|
import java.nio.file.Paths;
|
|
import java.util.regex.Matcher;
|
|
import java.util.regex.Pattern;
|
|
import java.util.Scanner;
|
|
|
|
import jdk.test.lib.os.linux.HugePageConfiguration;
|
|
import jdk.test.lib.process.OutputAnalyzer;
|
|
import jdk.test.lib.process.ProcessTools;
|
|
import jdk.test.lib.Platform;
|
|
import jdk.test.lib.os.linux.Smaps;
|
|
import jdk.test.lib.os.linux.Smaps.Range;
|
|
|
|
import jtreg.SkippedException;
|
|
|
|
// We verify that the heap can be backed by THP by looking at the
|
|
// THPeligible field for the heap section in /proc/self/smaps. This
|
|
// field indicates if a mapping can use THP.
|
|
// THP mode 'always': this field is 1 whenever huge pages can be used
|
|
// THP mode 'madvise': this field is 1 if the mapping has been madvised
|
|
// as MADV_HUGEPAGE. In the JVM that should happen when the flag
|
|
// -XX:+UseTransparentHugePages is specified.
|
|
//
|
|
// Note: we don't verify if the heap is backed by huge pages because we
|
|
// can't know if the underlying system have any available.
|
|
public class TestTransparentHugePagesHeap {
|
|
|
|
public static void main(String args[]) throws Exception {
|
|
// To be able to detect large page use (esp. THP) somewhat reliably, we
|
|
// need at least kernel 3.8 to get the "VmFlags" tag in smaps.
|
|
// (Note: its still good we started the VM at least since this serves as a nice
|
|
// test for all manners of large page options).
|
|
if (Platform.getOsVersionMajor() < 3 ||
|
|
(Platform.getOsVersionMajor() == 3 && Platform.getOsVersionMinor() < 8)) {
|
|
throw new SkippedException("Kernel older than 3.8 - skipping this test.");
|
|
}
|
|
|
|
final HugePageConfiguration hugePageConfiguration = HugePageConfiguration.readFromOS();
|
|
if (!hugePageConfiguration.supportsTHP()) {
|
|
throw new SkippedException("THP is turned off");
|
|
}
|
|
|
|
OutputAnalyzer oa = ProcessTools.executeTestJava("-XX:+Use" + args[0] + "GC", "-Xmx128m", "-Xms128m", "-Xlog:pagesize:thp-%p.log", "-XX:+UseTransparentHugePages", VerifyTHPEnabledForHeap.class.getName());
|
|
oa.shouldHaveExitValue(0);
|
|
}
|
|
|
|
class VerifyTHPEnabledForHeap {
|
|
|
|
public static void main(String args[]) throws Exception {
|
|
// Extract the heap start from pagesize logging
|
|
String heapStart = extractHeapStartFromLog();
|
|
|
|
Smaps smaps = Smaps.parseSelf();
|
|
|
|
Range range = smaps.getRange(heapStart);
|
|
if (range == null) {
|
|
throw new AssertionError("Could not find heap section in smaps file. No memory range found for heap start: " + heapStart);
|
|
}
|
|
|
|
if (!range.isTransparentHuge()) {
|
|
// Failed to verify THP for heap
|
|
throw new RuntimeException("The address range 0x" + range.getStart().toString(16)
|
|
+ "-0x" + range.getEnd().toString(16)
|
|
+ " that contains the heap start" + heapStart
|
|
+ " is not THPeligible");
|
|
}
|
|
}
|
|
|
|
private static String extractHeapStartFromLog() throws Exception {
|
|
// [0.041s][info][pagesize] Heap: min=128M max=128M base=0x0000ffff5c600000 size=128M page_size=2M
|
|
final Pattern heapAddress = Pattern.compile(".* Heap: .*base=0x([0-9A-Fa-f]*).*");
|
|
|
|
Scanner logFile = new Scanner(Paths.get("thp-" + ProcessHandle.current().pid() + ".log"));
|
|
while (logFile.hasNextLine()) {
|
|
Matcher m = heapAddress.matcher(logFile.nextLine());
|
|
if (m.matches()) {
|
|
return m.group(1);
|
|
}
|
|
}
|
|
|
|
throw new RuntimeException("Failed to find heap start");
|
|
}
|
|
}
|
|
}
|