提交 a41797b8 编写于 作者: P pliden

8023158: hotspot/test/gc/7168848/HumongousAlloc.java fails 14 full gcs, expect 0 full gcs

Reviewed-by: brutisso, tschatzl
上级 42d36526
...@@ -124,7 +124,7 @@ needs_compact3 = \ ...@@ -124,7 +124,7 @@ needs_compact3 = \
compiler/whitebox/IsMethodCompilableTest.java \ compiler/whitebox/IsMethodCompilableTest.java \
gc/6581734/Test6581734.java \ gc/6581734/Test6581734.java \
gc/7072527/TestFullGCCount.java \ gc/7072527/TestFullGCCount.java \
gc/7168848/HumongousAlloc.java \ gc/g1/TestHumongousAllocInitialMark.java \
gc/arguments/TestG1HeapRegionSize.java \ gc/arguments/TestG1HeapRegionSize.java \
gc/metaspace/TestMetaspaceMemoryPool.java \ gc/metaspace/TestMetaspaceMemoryPool.java \
runtime/InternalApi/ThreadCpuTimesDeadlock.java \ runtime/InternalApi/ThreadCpuTimesDeadlock.java \
......
...@@ -22,51 +22,52 @@ ...@@ -22,51 +22,52 @@
*/ */
/* /*
* @test Humongous.java * @test TestHumongousAllocInitialMark
* @bug 7168848 * @bug 7168848
* @summary G1: humongous object allocations should initiate marking cycles when necessary * @summary G1: humongous object allocations should initiate marking cycles when necessary
* @run main/othervm -Xms100m -Xmx100m -XX:+PrintGC -XX:G1HeapRegionSize=1m -XX:+UseG1GC HumongousAlloc * @library /testlibrary
*
*/ */
import java.lang.management.GarbageCollectorMXBean;
import java.lang.management.ManagementFactory;
import java.util.List;
public class HumongousAlloc { import com.oracle.java.testlibrary.*;
public static byte[] dummy; public class TestHumongousAllocInitialMark {
private static int sleepFreq = 40; private static final int heapSize = 200; // MB
private static int sleepTime = 1000; private static final int heapRegionSize = 1; // MB
private static double size = 0.75; private static final int initiatingHeapOccupancyPercent = 50; // %
private static int iterations = 50;
private static int MB = 1024 * 1024;
public static void allocate(int size, int sleepTime, int sleepFreq) throws InterruptedException { public static void main(String[] args) throws Exception {
System.out.println("Will allocate objects of size: " + size ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
+ " bytes and sleep for " + sleepTime "-XX:+UseG1GC",
+ " ms after every " + sleepFreq + "th allocation."); "-Xms" + heapSize + "m",
int count = 0; "-Xmx" + heapSize + "m",
while (count < iterations) { "-XX:G1HeapRegionSize=" + heapRegionSize + "m",
for (int i = 0; i < sleepFreq; i++) { "-XX:InitiatingHeapOccupancyPercent=" + initiatingHeapOccupancyPercent,
dummy = new byte[size - 16]; "-XX:+PrintGC",
} HumongousObjectAllocator.class.getName());
Thread.sleep(sleepTime);
count++; OutputAnalyzer output = new OutputAnalyzer(pb.start());
} output.shouldContain("GC pause (G1 Humongous Allocation) (young) (initial-mark)");
output.shouldNotContain("Full GC");
output.shouldHaveExitValue(0);
} }
public static void main(String[] args) throws InterruptedException { static class HumongousObjectAllocator {
allocate((int) (size * MB), sleepTime, sleepFreq); private static byte[] dummy;
List<GarbageCollectorMXBean> collectors = ManagementFactory.getGarbageCollectorMXBeans();
for (GarbageCollectorMXBean collector : collectors) { public static void main(String [] args) throws Exception {
if (collector.getName().contains("G1 Old")) { // Make object size 75% of region size
long count = collector.getCollectionCount(); final int humongousObjectSize =
if (count > 0) { (int)(heapRegionSize * 1024 * 1024 * 0.75);
throw new RuntimeException("Failed: FullGCs should not have happened. The number of FullGC run is " + count);
} // Number of objects to allocate to go above IHOP
else { final int humongousObjectAllocations =
System.out.println("Passed."); (int)((heapSize * initiatingHeapOccupancyPercent / 100.0) / heapRegionSize) + 1;
}
// Allocate
for (int i = 1; i <= humongousObjectAllocations; i++) {
System.out.println("Allocating humongous object " + i + "/" + humongousObjectAllocations +
" of size " + humongousObjectSize + " bytes");
dummy = new byte[humongousObjectSize];
} }
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册