2013-10-05 10:14:58 +02:00
|
|
|
/*
|
2021-06-11 05:05:23 +00:00
|
|
|
* Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved.
|
2013-10-05 10:14:58 +02: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.
|
|
|
|
*
|
|
|
|
* 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 TestLargePagesFlags
|
2021-07-29 16:03:31 +00:00
|
|
|
* @summary Tests how large pages are chosen depending on the given large pages flag combinations.
|
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Erik Osterlund <erik.osterlund@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Kim Barrett <kim.barrett@oracle.com>
Co-authored-by: Nils Eliasson <nils.eliasson@oracle.com>
Co-authored-by: Rickard Backman <rickard.backman@oracle.com>
Co-authored-by: Roland Westrelin <rwestrel@redhat.com>
Co-authored-by: Coleen Phillimore <coleen.phillimore@oracle.com>
Co-authored-by: Robbin Ehn <robbin.ehn@oracle.com>
Co-authored-by: Gerard Ziemski <gerard.ziemski@oracle.com>
Co-authored-by: Hugh Wilkinson <hugh.wilkinson@intel.com>
Co-authored-by: Sandhya Viswanathan <sandhya.viswanathan@intel.com>
Co-authored-by: Bill Wheeler <bill.npo.wheeler@intel.com>
Co-authored-by: Vinay K. Awasthi <vinay.k.awasthi@intel.com>
Co-authored-by: Yasumasa Suenaga <yasuenag@gmail.com>
Reviewed-by: pliden, stefank, eosterlund, ehelin, sjohanss, rbackman, coleenp, ihse, jgeorge, lmesnik, rkennke
2018-06-12 17:40:28 +02:00
|
|
|
* @requires vm.gc != "Z"
|
2018-08-02 16:16:02 -07:00
|
|
|
* @requires os.family == "linux"
|
2021-07-28 23:12:03 +00:00
|
|
|
* @requires vm.flagless
|
2016-08-19 10:06:30 -04:00
|
|
|
* @library /test/lib
|
2016-04-09 23:03:39 +01:00
|
|
|
* @modules java.base/jdk.internal.misc
|
2015-03-26 16:36:56 +01:00
|
|
|
* java.management
|
2021-06-11 05:05:23 +00:00
|
|
|
* @run driver TestLargePagesFlags
|
2013-10-05 10:14:58 +02:00
|
|
|
*/
|
|
|
|
|
2016-08-19 10:06:30 -04:00
|
|
|
import jdk.test.lib.process.OutputAnalyzer;
|
2015-05-04 16:30:07 +02:00
|
|
|
import jdk.test.lib.Platform;
|
2016-08-19 10:06:30 -04:00
|
|
|
import jdk.test.lib.process.ProcessTools;
|
2018-08-02 14:40:55 -07:00
|
|
|
|
2013-10-05 10:14:58 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
public class TestLargePagesFlags {
|
|
|
|
|
|
|
|
public static void main(String [] args) throws Exception {
|
|
|
|
testUseTransparentHugePages();
|
|
|
|
testUseHugeTLBFS();
|
|
|
|
testUseSHM();
|
|
|
|
testCombinations();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void testUseTransparentHugePages() throws Exception {
|
|
|
|
if (!canUse(UseTransparentHugePages(true))) {
|
|
|
|
System.out.println("Skipping testUseTransparentHugePages");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -XX:-UseLargePages overrides all other flags.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(false),
|
|
|
|
UseTransparentHugePages(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(false),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
// Explicitly turn on UseTransparentHugePages.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseTransparentHugePages(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(true),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseTransparentHugePages(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(true),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
// Setting a specific large pages flag will turn
|
|
|
|
// off heuristics to choose large pages type.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(false),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
// Don't turn on UseTransparentHugePages
|
|
|
|
// unless the user explicitly asks for them.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true))
|
|
|
|
.expect(
|
|
|
|
UseTransparentHugePages(false));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void testUseHugeTLBFS() throws Exception {
|
|
|
|
if (!canUse(UseHugeTLBFS(true))) {
|
|
|
|
System.out.println("Skipping testUseHugeTLBFS");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -XX:-UseLargePages overrides all other flags.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(false),
|
|
|
|
UseHugeTLBFS(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(false),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
// Explicitly turn on UseHugeTLBFS.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseHugeTLBFS(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseHugeTLBFS(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
// Setting a specific large pages flag will turn
|
|
|
|
// off heuristics to choose large pages type.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseHugeTLBFS(false))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(false),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
// Using UseLargePages will default to UseHugeTLBFS large pages.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(false));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void testUseSHM() throws Exception {
|
|
|
|
if (!canUse(UseSHM(true))) {
|
|
|
|
System.out.println("Skipping testUseSHM");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -XX:-UseLargePages overrides all other flags.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(false),
|
|
|
|
UseSHM(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(false),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
// Explicitly turn on UseSHM.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseSHM(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(true)) ;
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseSHM(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(true)) ;
|
|
|
|
|
|
|
|
// Setting a specific large pages flag will turn
|
|
|
|
// off heuristics to choose large pages type.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseSHM(false))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(false),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
// Setting UseLargePages can allow the system to choose
|
|
|
|
// UseHugeTLBFS instead of UseSHM, but never UseTransparentHugePages.
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void testCombinations() throws Exception {
|
|
|
|
if (!canUse(UseSHM(true)) || !canUse(UseHugeTLBFS(true))) {
|
|
|
|
System.out.println("Skipping testUseHugeTLBFSAndUseSHMCombination");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// UseHugeTLBFS takes precedence over SHM.
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(true));
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(false))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(false),
|
|
|
|
UseTransparentHugePages(false),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
|
|
|
|
if (!canUse(UseTransparentHugePages(true))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// UseTransparentHugePages takes precedence.
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseLargePages(true),
|
|
|
|
UseTransparentHugePages(true),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(true),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
|
|
|
|
new FlagTester()
|
|
|
|
.use(UseTransparentHugePages(true),
|
|
|
|
UseHugeTLBFS(true),
|
|
|
|
UseSHM(true))
|
|
|
|
.expect(
|
|
|
|
UseLargePages(true),
|
|
|
|
UseTransparentHugePages(true),
|
|
|
|
UseHugeTLBFS(false),
|
|
|
|
UseSHM(false));
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class FlagTester {
|
|
|
|
private Flag [] useFlags;
|
|
|
|
|
|
|
|
public FlagTester use(Flag... useFlags) {
|
|
|
|
this.useFlags = useFlags;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void expect(Flag... expectedFlags) throws Exception {
|
|
|
|
if (useFlags == null) {
|
|
|
|
throw new IllegalStateException("Must run use() before expect()");
|
|
|
|
}
|
|
|
|
|
|
|
|
OutputAnalyzer output = executeNewJVM(useFlags);
|
|
|
|
|
|
|
|
for (Flag flag : expectedFlags) {
|
|
|
|
System.out.println("Looking for: " + flag.flagString());
|
|
|
|
String strValue = output.firstMatch(".* " + flag.name() + " .* :?= (\\S+).*", 1);
|
|
|
|
|
|
|
|
if (strValue == null) {
|
|
|
|
throw new RuntimeException("Flag " + flag.name() + " couldn't be found");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!flag.value().equals(strValue)) {
|
|
|
|
throw new RuntimeException("Wrong value for: " + flag.name()
|
|
|
|
+ " expected: " + flag.value()
|
|
|
|
+ " got: " + strValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
output.shouldHaveExitValue(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static OutputAnalyzer executeNewJVM(Flag... flags) throws Exception {
|
|
|
|
ArrayList<String> args = new ArrayList<>();
|
|
|
|
for (Flag flag : flags) {
|
|
|
|
args.add(flag.flagString());
|
|
|
|
}
|
|
|
|
args.add("-XX:+PrintFlagsFinal");
|
|
|
|
args.add("-version");
|
|
|
|
|
2020-04-29 08:52:18 +02:00
|
|
|
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(args);
|
2013-10-05 10:14:58 +02:00
|
|
|
OutputAnalyzer output = new OutputAnalyzer(pb.start());
|
2021-07-21 19:47:03 +00:00
|
|
|
output.shouldHaveExitValue(0);
|
2013-10-05 10:14:58 +02:00
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean canUse(Flag flag) {
|
|
|
|
try {
|
|
|
|
new FlagTester().use(flag).expect(flag);
|
|
|
|
} catch (Exception e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Flag UseLargePages(boolean value) {
|
|
|
|
return new BooleanFlag("UseLargePages", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Flag UseTransparentHugePages(boolean value) {
|
|
|
|
return new BooleanFlag("UseTransparentHugePages", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Flag UseHugeTLBFS(boolean value) {
|
|
|
|
return new BooleanFlag("UseHugeTLBFS", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Flag UseSHM(boolean value) {
|
|
|
|
return new BooleanFlag("UseSHM", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class BooleanFlag implements Flag {
|
|
|
|
private String name;
|
|
|
|
private boolean value;
|
|
|
|
|
|
|
|
BooleanFlag(String name, boolean value) {
|
|
|
|
this.name = name;
|
|
|
|
this.value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String flagString() {
|
|
|
|
return "-XX:" + (value ? "+" : "-") + name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String name() {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String value() {
|
|
|
|
return Boolean.toString(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static interface Flag {
|
|
|
|
public String flagString();
|
|
|
|
public String name();
|
|
|
|
public String value();
|
|
|
|
}
|
|
|
|
}
|