Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/jdk17u
Path: blob/master/test/hotspot/jtreg/gc/epsilon/TestClasses.java
66644 views
1
/*
2
* Copyright (c) 2019, Red Hat, Inc. 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
package gc.epsilon;
25
26
/**
27
* @test TestClasses
28
* @requires vm.gc.Epsilon
29
* @summary Epsilon is able to allocate a lot of classes, resizing Metaspace
30
*
31
* @modules java.base/jdk.internal.org.objectweb.asm
32
* java.base/jdk.internal.misc
33
*
34
* @run main/othervm -Xmx256m
35
* -XX:MetaspaceSize=1m -XX:MaxMetaspaceSize=64m -Xlog:gc -Xlog:gc+metaspace
36
* -XX:+UnlockExperimentalVMOptions -XX:+UseEpsilonGC
37
* gc.epsilon.TestClasses
38
*/
39
40
import jdk.internal.org.objectweb.asm.ClassWriter;
41
import jdk.internal.org.objectweb.asm.Opcodes;
42
43
import java.util.*;
44
import java.io.*;
45
import java.nio.*;
46
import java.nio.file.*;
47
48
public class TestClasses {
49
50
static final int CLASSES = 1024;
51
static final int FIELDS = 1024;
52
53
static volatile Object sink;
54
55
static class MyClassLoader extends ClassLoader {
56
static final String[] FIELD_NAMES;
57
static {
58
FIELD_NAMES = new String[FIELDS];
59
for (int c = 0; c < FIELDS; c++) {
60
FIELD_NAMES[c] = "f" + c;
61
}
62
}
63
64
public byte[] createClass(String name) {
65
ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES);
66
cw.visit(Opcodes.V1_8, Opcodes.ACC_PUBLIC | Opcodes.ACC_SUPER, name, null, "java/lang/Object", null);
67
for (String fName : FIELD_NAMES) {
68
cw.visitField(Opcodes.ACC_STATIC | Opcodes.ACC_PRIVATE, fName, "J", null, null);
69
}
70
return cw.toByteArray();
71
}
72
73
public Class<?> loadClass(String name) throws ClassNotFoundException {
74
if (!name.startsWith("Dummy")) {
75
return super.loadClass(name);
76
}
77
byte[] cls = createClass(name);
78
return defineClass(name, cls, 0, cls.length, null);
79
}
80
}
81
82
public static void main(String[] args) throws Exception {
83
ClassLoader cl = new MyClassLoader();
84
for (int c = 0; c < CLASSES; c++) {
85
Class<?> clazz = Class.forName("Dummy" + c, true, cl);
86
if (clazz.getClassLoader() != cl) {
87
throw new IllegalStateException("Should have loaded by target loader");
88
}
89
sink = c;
90
}
91
}
92
}
93
94