Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/java/lang/invoke/7196190/ClassForNameTest.java
47311 views
1
/*
2
* Copyright (c) 2012, 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
/**
26
* @test
27
* @bug 7196190
28
* @summary Improve method of handling MethodHandles
29
*
30
* @run main/othervm ClassForNameTest
31
*/
32
33
import java.lang.invoke.*;
34
import java.lang.reflect.Method;
35
import java.util.Arrays;
36
37
public class ClassForNameTest {
38
final static String NAME = ClassForNameTest.class.getName();
39
40
public static void main(String[] args) throws Throwable {
41
{
42
final MethodType mt = MethodType.methodType(Class.class, String.class);
43
final MethodHandle mh = MethodHandles.lookup()
44
.findStatic(Class.class, "forName", mt);
45
46
Class.forName(NAME);
47
48
mh.invoke(NAME);
49
mh.bindTo(NAME).invoke();
50
mh.invokeWithArguments(Arrays.asList(NAME));
51
mh.invokeWithArguments(NAME);
52
Class cls = (Class) mh.invokeExact(NAME);
53
}
54
55
{
56
final Method fnMethod = Class.class.getMethod("forName", String.class);
57
final MethodType mt = MethodType.methodType(Object.class, Object.class, Object[].class);
58
final MethodHandle mh = MethodHandles.lookup()
59
.findVirtual(Method.class, "invoke", mt)
60
.bindTo(fnMethod);
61
62
fnMethod.invoke(null, NAME);
63
64
mh.bindTo(null).bindTo(new Object[]{NAME}).invoke();
65
mh.invoke(null, new Object[]{NAME});
66
mh.invokeWithArguments(null, new Object[]{NAME});
67
mh.invokeWithArguments(Arrays.asList(null, new Object[]{NAME}));
68
Object obj = mh.invokeExact((Object) null, new Object[]{NAME});
69
}
70
71
{
72
final Method fnMethod = Class.class.getMethod("forName", String.class);
73
final MethodType mt = MethodType.methodType(Object.class, Object.class, Object[].class);
74
75
final MethodHandle mh = MethodHandles.lookup()
76
.bind(fnMethod, "invoke", mt);
77
78
mh.bindTo(null).bindTo(new Object[]{NAME}).invoke();
79
mh.invoke(null, new Object[]{NAME});
80
mh.invokeWithArguments(null, NAME);
81
mh.invokeWithArguments(Arrays.asList(null, NAME));
82
Object obj = mh.invokeExact((Object) null, new Object[]{NAME});
83
}
84
85
{
86
final Method fnMethod = Class.class.getMethod("forName", String.class);
87
final MethodHandle mh = MethodHandles.lookup().unreflect(fnMethod);
88
89
mh.bindTo(NAME).invoke();
90
mh.invoke(NAME);
91
mh.invokeWithArguments(NAME);
92
mh.invokeWithArguments(Arrays.asList(NAME));
93
Class cls = (Class) mh.invokeExact(NAME);
94
}
95
96
System.out.println("TEST PASSED");
97
}
98
}
99
100