1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
/*
* Copyright (c) 2017, 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 8186211
* @summary Test basic invocation of multiple ldc's of the same dynamic constant that fail resolution
* @library /lib/testlibrary/bytecode /java/lang/invoke/common
* @build jdk.experimental.bytecode.BasicClassBuilder
* @run testng CondyRepeatFailedResolution
* @run testng/othervm -XX:+UnlockDiagnosticVMOptions -XX:UseBootstrapCallInfo=3 CondyRepeatFailedResolution
*/
import jdk.experimental.bytecode.BasicClassBuilder;
import jdk.experimental.bytecode.Flag;
import jdk.experimental.bytecode.TypedCodeBuilder;
import org.testng.Assert;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.MethodType;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
@Test
public class CondyRepeatFailedResolution {
// Counter used to determine if a given BSM is invoked more than once
static int bsm_called = 0;
// Generated class with methods containing condy ldc
Class<?> gc;
// Bootstrap method used to represent primitive values
// that cannot be represented directly in the constant pool,
// such as byte, and for completeness of testing primitive values
// that can be represented directly, such as double or long that
// take two slots
public static Object intConversion(MethodHandles.Lookup l,
String constantName,
Class<?> constantType,
int value) throws Throwable {
++bsm_called;
// replace constantName with a bogus value to trigger failed resolution
constantName = "Foo";
switch (constantName) {
case "B":
return (byte) value;
case "C":
return (char) value;
case "D":
return (double) value;
case "F":
return (float) value;
case "I":
return value;
case "J":
return (long) value;
case "S":
return (short) value;
case "Z":
return value > 0;
case "nullRef":
return null;
case "string":
return "string";
case "stringArray":
return new String[]{"string", "string"};
default:
throw new BootstrapMethodError("Failure to generate a dynamic constant");
}
}
@BeforeClass
public void generateClass() throws Exception {
String genClassName = CondyRepeatFailedResolution.class.getSimpleName() + "$Code";
String bsmClassName = CondyRepeatFailedResolution.class.getCanonicalName().replace('.', '/');
String bsmMethodName = "intConversion";
String bsmDescriptor = MethodType.methodType(Object.class, MethodHandles.Lookup.class,
String.class, Class.class, int.class).toMethodDescriptorString();
byte[] byteArray = new BasicClassBuilder(genClassName, 55, 0)
.withSuperclass("java/lang/Object")
.withMethod("<init>", "()V", M ->
M.withFlags(Flag.ACC_PUBLIC)
.withCode(TypedCodeBuilder::new, C ->
C.aload_0().invokespecial("java/lang/Object", "<init>", "()V", false).return_()
))
.withMethod("B", "()B", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("B", "B", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Byte.MAX_VALUE))
.ireturn()
))
.withMethod("C", "()C", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("C", "C", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Character.MAX_VALUE))
.ireturn()
))
.withMethod("D", "()D", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("D", "D", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.dreturn()
))
.withMethod("D_AsType", "()D", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("I", "D", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.dreturn()
))
.withMethod("F", "()F", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("F", "F", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.freturn()
))
.withMethod("F_AsType", "()F", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("I", "F", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.freturn()
))
.withMethod("I", "()I", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("I", "I", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.ireturn()
))
.withMethod("J", "()J", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("J", "J", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.lreturn()
))
.withMethod("J_AsType", "()J", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("I", "J", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.lreturn()
))
.withMethod("S", "()S", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("S", "S", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Short.MAX_VALUE))
.ireturn()
))
.withMethod("Z_F", "()Z", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("Z", "Z", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(0))
.ireturn()
))
.withMethod("Z_T", "()Z", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("Z", "Z", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(1))
.ireturn()
))
.withMethod("null", "()Ljava/lang/Object;", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("nullRef", "Ljava/lang/Object;", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.areturn()
))
.withMethod("string", "()Ljava/lang/String;", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("string", "Ljava/lang/String;", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.areturn()
))
.withMethod("stringArray", "()[Ljava/lang/String;", M ->
M.withFlags(Flag.ACC_PUBLIC, Flag.ACC_STATIC)
.withCode(TypedCodeBuilder::new, C ->
C.ldc("stringArray", "[Ljava/lang/String;", bsmClassName, bsmMethodName, bsmDescriptor,
S -> S.add(Integer.MAX_VALUE))
.areturn()
))
.build();
gc = MethodHandles.lookup().defineClass(byteArray);
}
@Test
public void testPrimitives() throws Exception {
testConstants();
}
@Test
public void testRefs() throws Exception {
testConstant("string", "string");
testConstant("stringArray", new String[]{"string", "string"});
}
void testConstants() throws Exception {
// Note: for the _asType methods the BSM returns an int which is
// then converted by an asType transformation
testConstant("B", Byte.MAX_VALUE);
testConstant("C", Character.MAX_VALUE);
testConstant("D", (double) Integer.MAX_VALUE);
testConstant("D_AsType", (double) Integer.MAX_VALUE);
testConstant("F", (float) Integer.MAX_VALUE);
testConstant("F_AsType", (float) Integer.MAX_VALUE);
testConstant("I", Integer.MAX_VALUE);
testConstant("J", (long) Integer.MAX_VALUE);
testConstant("J_AsType", (long) Integer.MAX_VALUE);
testConstant("S", Short.MAX_VALUE);
testConstant("Z_F", false);
testConstant("Z_T", true);
testConstant("null", null);
}
void testConstant(String name, Object expected) throws Exception {
Method m = gc.getDeclaredMethod(name);
bsm_called = 0;
try {
Object r1 = m.invoke(null);
Assert.fail("InvocationTargetException expected to be thrown after first invocation");
} catch (InvocationTargetException e1) {
// bsm_called should have been incremented prior to the exception
Assert.assertEquals(bsm_called, 1);
Assert.assertTrue(e1.getCause() instanceof BootstrapMethodError);
// Try invoking method again to ensure that the bootstrap
// method is not invoked twice and a resolution failure
// results.
try {
Object r2 = m.invoke(null);
Assert.fail("InvocationTargetException expected to be thrown after second invocation");
} catch (InvocationTargetException e2) {
// bsm_called should remain at 1 since the bootstrap
// method should not have been invoked.
Assert.assertEquals(bsm_called, 1);
Assert.assertTrue(e2.getCause() instanceof BootstrapMethodError);
} catch (Throwable t2) {
Assert.fail("InvocationTargetException expected to be thrown");
}
} catch (Throwable t1) {
Assert.fail("InvocationTargetException expected to be thrown");
}
}
}
|