|
| 1 | +/* |
| 2 | + * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +/* |
| 25 | + * @test G1 Full GC execution when JNICritical is active |
| 26 | + * @summary Check that Full GC calls are not ignored if concurrent with an active GCLocker. |
| 27 | + * @bug 8057586 |
| 28 | + * @requires vm.gc.G1 |
| 29 | + * @modules java.base/jdk.internal.misc |
| 30 | + * @library /test/lib |
| 31 | + * @build jdk.test.whitebox.WhiteBox |
| 32 | + * @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox |
| 33 | + * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xms3g -Xmx3g -Xmn2g -Xlog:gc TestJNICriticalStressTest 30 4 4 G1 |
| 34 | + */ |
| 35 | + |
| 36 | + /* |
| 37 | + * @test Parallel Full GC execution when JNICritical is active |
| 38 | + * @bug 8057586 |
| 39 | + * @requires vm.gc.Parallel |
| 40 | + * @modules java.base/jdk.internal.misc |
| 41 | + * @library /test/lib |
| 42 | + * @build jdk.test.whitebox.WhiteBox |
| 43 | + * @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox |
| 44 | + * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseParallelGC -Xms3g -Xmx3g -Xmn2g -Xlog:gc TestJNICriticalStressTest 30 4 4 Parallel |
| 45 | + */ |
| 46 | + |
| 47 | +/* |
| 48 | + * @test Serial Full GC execution when JNICritical is active |
| 49 | + * @bug 8057586 |
| 50 | + * @requires vm.gc.Serial |
| 51 | + * @modules java.base/jdk.internal.misc |
| 52 | + * @library /test/lib |
| 53 | + * @build jdk.test.whitebox.WhiteBox |
| 54 | + * @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox |
| 55 | + * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+UseSerialGC -Xms3g -Xmx3g -Xmn2g -Xlog:gc TestJNICriticalStressTest 30 4 4 Serial |
| 56 | + */ |
| 57 | + |
| 58 | +import jdk.test.lib.Asserts; |
| 59 | +import jdk.test.whitebox.WhiteBox; |
| 60 | + |
| 61 | +import java.lang.management.GarbageCollectorMXBean; |
| 62 | +import java.lang.management.ManagementFactory; |
| 63 | +import java.util.List; |
| 64 | +import java.util.HashMap; |
| 65 | +import java.util.Map; |
| 66 | +import java.util.zip.Deflater; |
| 67 | + |
| 68 | +/** |
| 69 | + * Test verifies that Full GC calls are not ignored if concurrent with an active GCLocker. |
| 70 | + * |
| 71 | + * The test checks that at least a full gc is executed in the duration of a WhiteBox.fullGC() call; |
| 72 | + * either by the calling thread or a concurrent thread. |
| 73 | + */ |
| 74 | +public class TestJNICriticalStressTest { |
| 75 | + private static final WhiteBox wb = WhiteBox.getWhiteBox(); |
| 76 | + |
| 77 | + static private final int LARGE_MAP_SIZE = 64 * 1024; |
| 78 | + |
| 79 | + static private final int MAP_ARRAY_LENGTH = 4; |
| 80 | + static private final int MAP_SIZE = 1024; |
| 81 | + |
| 82 | + static private final int BYTE_ARRAY_LENGTH = 16 * 1024; |
| 83 | + |
| 84 | + static private final long SYSTEM_GC_PERIOD_MS = 5 * 1000; |
| 85 | + static private long gcCountBefore = 0; |
| 86 | + static private GarbageCollectorMXBean collector = null; |
| 87 | + |
| 88 | + static private void println(String str) { System.out.println(str); } |
| 89 | + static private void exit(int code) { System.exit(code); } |
| 90 | + |
| 91 | + static Map<Integer,String> populateMap(int size) { |
| 92 | + Map<Integer,String> map = new HashMap<Integer,String>(); |
| 93 | + for (int i = 0; i < size; i += 1) { |
| 94 | + Integer keyInt = Integer.valueOf(i); |
| 95 | + String valStr = "value is [" + i + "]"; |
| 96 | + map.put(keyInt,valStr); |
| 97 | + } |
| 98 | + return map; |
| 99 | + } |
| 100 | + |
| 101 | + static private class AllocatingWorker implements Runnable { |
| 102 | + private final Object[] array = new Object[MAP_ARRAY_LENGTH]; |
| 103 | + private int arrayIndex = 0; |
| 104 | + |
| 105 | + private void doStep() { |
| 106 | + Map<Integer,String> map = populateMap(MAP_SIZE); |
| 107 | + array[arrayIndex] = map; |
| 108 | + arrayIndex = (arrayIndex + 1) % MAP_ARRAY_LENGTH; |
| 109 | + } |
| 110 | + |
| 111 | + public void run() { |
| 112 | + while (true) { |
| 113 | + doStep(); |
| 114 | + } |
| 115 | + } |
| 116 | + } |
| 117 | + |
| 118 | + static private class JNICriticalWorker implements Runnable { |
| 119 | + private int count; |
| 120 | + |
| 121 | + private void doStep() { |
| 122 | + byte[] inputArray = new byte[BYTE_ARRAY_LENGTH]; |
| 123 | + for (int i = 0; i < inputArray.length; i += 1) { |
| 124 | + inputArray[i] = (byte) (count + i); |
| 125 | + } |
| 126 | + |
| 127 | + Deflater deflater = new Deflater(); |
| 128 | + deflater.setInput(inputArray); |
| 129 | + deflater.finish(); |
| 130 | + |
| 131 | + byte[] outputArray = new byte[2 * inputArray.length]; |
| 132 | + deflater.deflate(outputArray); |
| 133 | + deflater.end(); |
| 134 | + |
| 135 | + count += 1; |
| 136 | + } |
| 137 | + |
| 138 | + public void run() { |
| 139 | + while (true) { |
| 140 | + doStep(); |
| 141 | + } |
| 142 | + } |
| 143 | + } |
| 144 | + |
| 145 | + static private class SystemGCWorker implements Runnable { |
| 146 | + public void run() { |
| 147 | + long fullGcCounts = 0; |
| 148 | + while (true) { |
| 149 | + try { |
| 150 | + Thread.sleep(SYSTEM_GC_PERIOD_MS); |
| 151 | + } catch (InterruptedException e) { |
| 152 | + e.printStackTrace(); |
| 153 | + return; |
| 154 | + } |
| 155 | + |
| 156 | + long gcCountBefore = collector.getCollectionCount(); |
| 157 | + wb.fullGC(); |
| 158 | + long gcCountAfter = collector.getCollectionCount(); |
| 159 | + |
| 160 | + Asserts.assertLessThan(gcCountBefore, gcCountAfter, "Triggered more Full GCs than expected"); |
| 161 | + } |
| 162 | + } |
| 163 | + } |
| 164 | + |
| 165 | + static public Map<Integer,String> largeMap; |
| 166 | + |
| 167 | + public static void main(String... args) throws Exception { |
| 168 | + if (args.length < 4) { |
| 169 | + println("usage: JNICriticalStressTest <duration sec> <alloc threads> <jni critical threads> <gc name>"); |
| 170 | + exit(-1); |
| 171 | + } |
| 172 | + |
| 173 | + long durationSec = Long.parseLong(args[0]); |
| 174 | + int allocThreadNum = Integer.parseInt(args[1]); |
| 175 | + int jniCriticalThreadNum = Integer.parseInt(args[2]); |
| 176 | + |
| 177 | + StringBuilder OldGCName = new StringBuilder(); |
| 178 | + switch (args[3]) { |
| 179 | + case "G1": |
| 180 | + OldGCName.append("G1 Old Generation"); |
| 181 | + break; |
| 182 | + case "Parallel": |
| 183 | + OldGCName.append("PS MarkSweep"); |
| 184 | + break; |
| 185 | + case "Serial": |
| 186 | + OldGCName.append("MarkSweepCompact"); |
| 187 | + break; |
| 188 | + default: |
| 189 | + throw new RuntimeException("Unsupported GC selected"); |
| 190 | + } |
| 191 | + |
| 192 | + List<GarbageCollectorMXBean> collectors = ManagementFactory.getGarbageCollectorMXBeans(); |
| 193 | + |
| 194 | + for (int i = 0; i < collectors.size(); i++) { |
| 195 | + if (collectors.get(i).getName().contains(OldGCName.toString())) { |
| 196 | + collector = collectors.get(i); |
| 197 | + break; |
| 198 | + } |
| 199 | + } |
| 200 | + |
| 201 | + if (collector == null) { |
| 202 | + throw new RuntimeException(OldGCName.toString() + " not found"); |
| 203 | + } |
| 204 | + |
| 205 | + println("Running for " + durationSec + " secs"); |
| 206 | + |
| 207 | + largeMap = populateMap(LARGE_MAP_SIZE); |
| 208 | + |
| 209 | + // Start threads to allocate memory, this will trigger both GCLocker initiated |
| 210 | + // garbage collections (GCs) and regular GCs. Thus increasing the likelihood of |
| 211 | + // having different types of GCs happening concurrently with the System.gc call. |
| 212 | + println("Starting " + allocThreadNum + " allocating threads"); |
| 213 | + for (int i = 0; i < allocThreadNum; i += 1) { |
| 214 | + new Thread(new AllocatingWorker()).start(); |
| 215 | + } |
| 216 | + |
| 217 | + println("Starting " + jniCriticalThreadNum + " jni critical threads"); |
| 218 | + for (int i = 0; i < jniCriticalThreadNum; i += 1) { |
| 219 | + new Thread(new JNICriticalWorker()).start(); |
| 220 | + } |
| 221 | + |
| 222 | + new Thread(new SystemGCWorker()).start(); |
| 223 | + |
| 224 | + long durationMS = (long) (1000 * durationSec); |
| 225 | + try { |
| 226 | + Thread.sleep(durationMS); |
| 227 | + } catch (InterruptedException e) { |
| 228 | + e.printStackTrace(); |
| 229 | + exit(-1); |
| 230 | + } |
| 231 | + } |
| 232 | +} |
0 commit comments