2b00ac0d02
Reviewed-by: ihse, mchung, vromero
246 lines
10 KiB
Java
246 lines
10 KiB
Java
/*
|
|
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. 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
|
|
* @bug 8186046 8195694
|
|
* @summary Test dynamic constant bootstraps
|
|
* @library /java/lang/invoke/common
|
|
* @build test.java.lang.invoke.lib.InstructionHelper
|
|
* @enablePreview
|
|
* @run testng ConstantBootstrapsTest
|
|
* @run testng/othervm -XX:+UnlockDiagnosticVMOptions -XX:UseBootstrapCallInfo=3 ConstantBootstrapsTest
|
|
*/
|
|
|
|
import org.testng.annotations.Test;
|
|
import test.java.lang.invoke.lib.InstructionHelper;
|
|
|
|
import java.lang.constant.ConstantDescs;
|
|
import java.lang.constant.DirectMethodHandleDesc;
|
|
import java.lang.constant.MethodHandleDesc;
|
|
import java.lang.invoke.*;
|
|
import java.math.BigInteger;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import static org.testng.Assert.assertEquals;
|
|
import static org.testng.Assert.assertNull;
|
|
|
|
@Test
|
|
public class ConstantBootstrapsTest {
|
|
static final MethodHandles.Lookup L = MethodHandles.lookup();
|
|
|
|
static MethodType lookupMT(Class<?> ret, Class<?>... params) {
|
|
return MethodType.methodType(ret, MethodHandles.Lookup.class, String.class, Class.class).
|
|
appendParameterTypes(params);
|
|
}
|
|
|
|
public void testNullConstant() throws Throwable {
|
|
var handle = InstructionHelper.ldcDynamicConstant(L, "_", Object.class,
|
|
ConstantBootstraps.class, "nullConstant", lookupMT(Object.class));
|
|
assertNull(handle.invoke());
|
|
|
|
handle = InstructionHelper.ldcDynamicConstant(L, "_", MethodType.class,
|
|
ConstantBootstraps.class, "nullConstant", lookupMT(Object.class));
|
|
assertNull(handle.invoke());
|
|
}
|
|
|
|
@Test(expectedExceptions = IllegalArgumentException.class)
|
|
public void testNullConstantPrimitiveClass() {
|
|
ConstantBootstraps.nullConstant(MethodHandles.lookup(), null, int.class);
|
|
}
|
|
|
|
|
|
public void testPrimitiveClass() throws Throwable {
|
|
var pm = Map.of(
|
|
"I", int.class,
|
|
"J", long.class,
|
|
"S", short.class,
|
|
"B", byte.class,
|
|
"C", char.class,
|
|
"F", float.class,
|
|
"D", double.class,
|
|
"Z", boolean.class,
|
|
"V", void.class
|
|
);
|
|
|
|
for (var desc : pm.keySet()) {
|
|
var handle = InstructionHelper.ldcDynamicConstant(L, desc, Class.class,
|
|
ConstantBootstraps.class, "primitiveClass", lookupMT(Class.class));
|
|
assertEquals(handle.invoke(), pm.get(desc));
|
|
}
|
|
}
|
|
|
|
@Test(expectedExceptions = NullPointerException.class)
|
|
public void testPrimitiveClassNullName() {
|
|
ConstantBootstraps.primitiveClass(MethodHandles.lookup(), null, Class.class);
|
|
}
|
|
|
|
@Test(expectedExceptions = NullPointerException.class)
|
|
public void testPrimitiveClassNullType() {
|
|
ConstantBootstraps.primitiveClass(MethodHandles.lookup(), "I", null);
|
|
}
|
|
|
|
@Test(expectedExceptions = IllegalArgumentException.class)
|
|
public void testPrimitiveClassEmptyName() {
|
|
ConstantBootstraps.primitiveClass(MethodHandles.lookup(), "", Class.class);
|
|
}
|
|
|
|
@Test(expectedExceptions = IllegalArgumentException.class)
|
|
public void testPrimitiveClassWrongNameChar() {
|
|
ConstantBootstraps.primitiveClass(MethodHandles.lookup(), "L", Class.class);
|
|
}
|
|
|
|
@Test(expectedExceptions = IllegalArgumentException.class)
|
|
public void testPrimitiveClassWrongNameString() {
|
|
ConstantBootstraps.primitiveClass(MethodHandles.lookup(), "Ljava/lang/Object;", Class.class);
|
|
}
|
|
|
|
|
|
public void testEnumConstant() throws Throwable {
|
|
for (var v : StackWalker.Option.values()) {
|
|
var handle = InstructionHelper.ldcDynamicConstant(L, v.name(), StackWalker.Option.class,
|
|
ConstantBootstraps.class, "enumConstant", lookupMT(Enum.class));
|
|
assertEquals(handle.invoke(), v);
|
|
}
|
|
}
|
|
|
|
@Test(expectedExceptions = IllegalArgumentException.class)
|
|
public void testEnumConstantUnknown() {
|
|
ConstantBootstraps.enumConstant(MethodHandles.lookup(), "DOES_NOT_EXIST", StackWalker.Option.class);
|
|
}
|
|
|
|
|
|
public void testGetStaticDecl() throws Throwable {
|
|
var handle = InstructionHelper.ldcDynamicConstant(L, "TYPE", Class.class,
|
|
ConstantBootstraps.class, "getStaticFinal", lookupMT(Object.class, Class.class),
|
|
InstructionHelper.classDesc(Integer.class));
|
|
assertEquals(handle.invoke(), int.class);
|
|
}
|
|
|
|
public void testGetStaticSelf() throws Throwable {
|
|
var handle = InstructionHelper.ldcDynamicConstant(L, "MAX_VALUE", int.class,
|
|
ConstantBootstraps.class, "getStaticFinal", lookupMT(Object.class));
|
|
assertEquals(handle.invoke(), Integer.MAX_VALUE);
|
|
|
|
|
|
handle = InstructionHelper.ldcDynamicConstant(L, "ZERO", BigInteger.class,
|
|
ConstantBootstraps.class, "getStaticFinal", lookupMT(Object.class));
|
|
assertEquals(handle.invoke(), BigInteger.ZERO);
|
|
}
|
|
|
|
|
|
public void testInvoke() throws Throwable {
|
|
var handle = InstructionHelper.ldcDynamicConstant(
|
|
L, "_", List.class,
|
|
ConstantBootstraps.class, "invoke", lookupMT(Object.class, MethodHandle.class, Object[].class),
|
|
MethodHandleDesc.of(DirectMethodHandleDesc.Kind.INTERFACE_STATIC, ConstantDescs.CD_List, "of",
|
|
MethodType.methodType(List.class, Object[].class).toMethodDescriptorString()),
|
|
1, 2, 3, 4
|
|
);
|
|
assertEquals(handle.invoke(), List.of(1, 2, 3, 4));
|
|
}
|
|
|
|
public void testInvokeAsType() throws Throwable {
|
|
var handle = InstructionHelper.ldcDynamicConstant(
|
|
L, "_", int.class,
|
|
ConstantBootstraps.class, "invoke", lookupMT(Object.class, MethodHandle.class, Object[].class),
|
|
MethodHandleDesc.of(DirectMethodHandleDesc.Kind.STATIC, ConstantDescs.CD_Integer, "valueOf",
|
|
MethodType.methodType(Integer.class, String.class).toMethodDescriptorString()),
|
|
"42"
|
|
);
|
|
assertEquals(handle.invoke(), 42);
|
|
}
|
|
|
|
public void testInvokeAsTypeVariableArity() throws Throwable {
|
|
// The constant type is Collection but the invoke return type is List
|
|
var handle = InstructionHelper.ldcDynamicConstant(
|
|
L, "_", Collection.class,
|
|
ConstantBootstraps.class, "invoke", lookupMT(Object.class, MethodHandle.class, Object[].class),
|
|
MethodHandleDesc.of(DirectMethodHandleDesc.Kind.INTERFACE_STATIC, ConstantDescs.CD_List, "of",
|
|
MethodType.methodType(List.class, Object[].class).toMethodDescriptorString()),
|
|
1, 2, 3, 4
|
|
);
|
|
assertEquals(handle.invoke(), List.of(1, 2, 3, 4));
|
|
}
|
|
|
|
@Test(expectedExceptions = ClassCastException.class)
|
|
public void testInvokeAsTypeClassCast() throws Throwable {
|
|
ConstantBootstraps.invoke(MethodHandles.lookup(), "_", String.class,
|
|
MethodHandles.lookup().findStatic(Integer.class, "valueOf", MethodType.methodType(Integer.class, String.class)),
|
|
"42");
|
|
}
|
|
|
|
@Test(expectedExceptions = WrongMethodTypeException.class)
|
|
public void testInvokeAsTypeWrongReturnType() throws Throwable {
|
|
ConstantBootstraps.invoke(MethodHandles.lookup(), "_", short.class,
|
|
MethodHandles.lookup().findStatic(Integer.class, "parseInt", MethodType.methodType(int.class, String.class)),
|
|
"42");
|
|
}
|
|
|
|
|
|
static class X {
|
|
public String f;
|
|
public static String sf;
|
|
}
|
|
|
|
public void testVarHandleField() throws Throwable {
|
|
var handle = InstructionHelper.ldcDynamicConstant(
|
|
L, "f", VarHandle.class,
|
|
ConstantBootstraps.class, "fieldVarHandle", lookupMT(VarHandle.class, Class.class, Class.class),
|
|
InstructionHelper.classDesc(X.class),
|
|
InstructionHelper.classDesc(String.class)
|
|
);
|
|
|
|
var vhandle = (VarHandle) handle.invoke();
|
|
assertEquals(vhandle.varType(), String.class);
|
|
assertEquals(vhandle.coordinateTypes(), List.of(X.class));
|
|
}
|
|
|
|
public void testVarHandleStaticField() throws Throwable {
|
|
var handle = InstructionHelper.ldcDynamicConstant(
|
|
L, "sf", VarHandle.class,
|
|
ConstantBootstraps.class, "staticFieldVarHandle", lookupMT(VarHandle.class, Class.class, Class.class),
|
|
InstructionHelper.classDesc(X.class),
|
|
InstructionHelper.classDesc(String.class)
|
|
);
|
|
|
|
var vhandle = (VarHandle) handle.invoke();
|
|
assertEquals(vhandle.varType(), String.class);
|
|
assertEquals(vhandle.coordinateTypes(), List.of());
|
|
}
|
|
|
|
public void testVarHandleArray() throws Throwable {
|
|
var handle = InstructionHelper.ldcDynamicConstant(
|
|
L, "_", VarHandle.class,
|
|
ConstantBootstraps.class, "arrayVarHandle", lookupMT(VarHandle.class, Class.class),
|
|
InstructionHelper.classDesc(String[].class)
|
|
);
|
|
|
|
var vhandle = (VarHandle) handle.invoke();
|
|
assertEquals(vhandle.varType(), String.class);
|
|
assertEquals(vhandle.coordinateTypes(), List.of(String[].class, int.class));
|
|
}
|
|
}
|