-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8324817: Parallel GC does not pre-touch all heap pages when AlwaysPre…
…Touch enabled and large page disabled Backport-of: 80642dd7af3fcc7c042f11798c5cc899e20b9368
- Loading branch information
Showing
2 changed files
with
83 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
test/hotspot/jtreg/gc/parallel/TestAlwaysPreTouchBehavior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Copyright (c) 2014, 2024, Alibaba Group Holding Limited. 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. | ||
*/ | ||
|
||
package gc.parallel; | ||
|
||
/** | ||
* @test TestAlwaysPreTouchBehavior | ||
* @summary Tests AlwaysPreTouch Bahavior, pages of java heap should be pretouched with AlwaysPreTouch enabled. This test reads RSS of test process, which should be bigger than heap size(1g) with AlwaysPreTouch enabled. | ||
* @requires vm.gc.Parallel | ||
* @requires vm.debug != true | ||
* @requires os.family == "linux" | ||
* @requires os.maxMemory > 2G | ||
* @library /test/lib | ||
* @run main/othervm -Xmx1g -Xms1g -XX:+UseParallelGC -XX:+AlwaysPreTouch gc.parallel.TestAlwaysPreTouchBehavior | ||
*/ | ||
import java.lang.management.ManagementFactory; | ||
import java.lang.management.ThreadInfo; | ||
import java.lang.management.ThreadMXBean; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.nio.file.Paths; | ||
import java.io.IOException; | ||
import java.util.*; | ||
import javax.management.*; | ||
import java.lang.management.*; | ||
import jdk.test.lib.Utils; | ||
import jdk.test.lib.Asserts; | ||
import java.lang.management.*; | ||
import java.util.stream.*; | ||
import java.io.*; | ||
|
||
public class TestAlwaysPreTouchBehavior { | ||
public static long getProcessRssInKb() throws IOException { | ||
String pid = ManagementFactory.getRuntimeMXBean().getName().split("@")[0]; | ||
// Read RSS from /proc/$pid/status. Only available on Linux. | ||
String processStatusFile = "/proc/" + pid + "/status"; | ||
BufferedReader reader = new BufferedReader(new FileReader(processStatusFile)); | ||
String line = null; | ||
while ((line = reader.readLine()) != null) { | ||
if (line.startsWith("VmRSS:")) { | ||
break; | ||
} | ||
} | ||
reader.close(); | ||
return Long.valueOf(line.split("\\s+")[1].trim()); | ||
} | ||
public static void main(String [] args) { | ||
long rss = 0; | ||
Runtime runtime = Runtime.getRuntime(); | ||
long committedMemory = runtime.totalMemory() / 1024; // in kb | ||
try { | ||
rss = getProcessRssInKb(); | ||
} catch (Exception e) { | ||
System.out.println("cannot get RSS, just skip"); | ||
return; // Did not get avaiable RSS, just ignore this test | ||
} | ||
Asserts.assertGreaterThanOrEqual(rss, committedMemory, "RSS of this process(" + rss + "kb) should be bigger than or equal to committed heap mem(" + committedMemory + "kb)"); | ||
} | ||
} | ||
|
ef13a82
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues