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