jdk-24/test/hotspot/jtreg/gc/shenandoah/TestStringDedup.java
2024-07-25 23:59:56 +00:00

174 lines
5.9 KiB
Java

/*
* Copyright (c) 2017, 2021, Red Hat, Inc. 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=passive
* @summary Test Shenandoah string deduplication implementation
* @key randomness
* @requires vm.gc.Shenandoah
* @library /test/lib
* @modules java.base/jdk.internal.misc:open
* @modules java.base/java.lang:open
* java.management
*
* @run main/othervm -Xmx256m -Xlog:gc+stats -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseStringDeduplication
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=passive
* -XX:+ShenandoahDegeneratedGC -DGCCount=1
* TestStringDedup
*
* @run main/othervm -Xmx256m -Xlog:gc+stats -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseStringDeduplication
* -XX:+UseShenandoahGC -XX:ShenandoahGCMode=passive
* -XX:-ShenandoahDegeneratedGC -DGCCount=1
* TestStringDedup
*/
/*
* @test id=default
* @summary Test Shenandoah string deduplication implementation
* @key randomness
* @requires vm.gc.Shenandoah
* @library /test/lib
* @modules java.base/java.lang:open
* java.management
*
* @run main/othervm -Xmx256m -Xlog:gc+stats -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseStringDeduplication
* -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=aggressive -XX:StringDeduplicationAgeThreshold=3
* TestStringDedup
*
* @run main/othervm -Xmx256m -Xlog:gc+stats -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseStringDeduplication
* -XX:+UseShenandoahGC -XX:StringDeduplicationAgeThreshold=3
* TestStringDedup
*
* @run main/othervm -Xmx256m -Xlog:gc+stats -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+UseStringDeduplication
* -XX:+UseShenandoahGC -XX:ShenandoahGCHeuristics=compact -XX:StringDeduplicationAgeThreshold=3
* TestStringDedup
*/
import java.lang.reflect.*;
import java.util.*;
import jdk.test.lib.Utils;
public class TestStringDedup {
private static Field valueField;
private static final int UniqueStrings = 20;
// How many GC cycles are needed to complete deduplication.
private static final int GCCount = Integer.getInteger("GCCount", 3);
static {
try {
valueField = String.class.getDeclaredField("value");
valueField.setAccessible(true);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private static Object getValue(String string) {
try {
return valueField.get(string);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
static class StringAndId {
private String str;
private int id;
public StringAndId(String str, int id) {
this.str = str;
this.id = id;
}
public String str() {
return str;
}
public int id() {
return id;
}
}
private static void generateStrings(ArrayList<StringAndId> strs, int unique_strs) {
Random rn = Utils.getRandomInstance();
for (int u = 0; u < unique_strs; u++) {
int n = rn.nextInt() % 10;
n = Math.max(n, 2);
for (int index = 0; index < n; index++) {
strs.add(new StringAndId("Unique String " + u, u));
}
}
}
private static int verifyDedepString(ArrayList<StringAndId> strs) {
HashMap<Object, StringAndId> seen = new HashMap<>();
int total = 0;
int dedup = 0;
for (StringAndId item : strs) {
total++;
StringAndId existing_item = seen.get(getValue(item.str()));
if (existing_item == null) {
seen.put(getValue(item.str()), item);
} else {
if (item.id() != existing_item.id() ||
!item.str().equals(existing_item.str())) {
System.out.println("StringDedup error:");
System.out.println("String: " + item.str() + " != " + existing_item.str());
throw new RuntimeException("StringDedup Test failed");
} else {
dedup++;
}
}
}
return (total - dedup);
}
public static void main(String[] args) {
ArrayList<StringAndId> astrs = new ArrayList<>();
generateStrings(astrs, UniqueStrings);
for (int count = 0; count < GCCount; count ++) {
System.gc();
}
int unique_count = 0;
for (int waitCount = 0; waitCount < 3; waitCount ++) {
// Let concurrent string dedup thread to run
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
// All deduplicated, done.
unique_count = verifyDedepString(astrs);
if ( unique_count == UniqueStrings) {
return;
}
}
throw new RuntimeException("Expecting " + UniqueStrings + " unique strings, but got " + unique_count);
}
}