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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
/*
* Copyright (c) 2017, 2024, 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
* @summary Test nested dynamic constant declarations that are recursive
* @compile CondyNestedTest_Code.jcod
* @run testng CondyNestedTest
* @run testng/othervm -XX:+UnlockDiagnosticVMOptions -XX:UseBootstrapCallInfo=3 CondyNestedTest
*/
import org.testng.Assert;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import java.lang.invoke.MethodHandles;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class CondyNestedTest {
static final Class[] THROWABLES = {InvocationTargetException.class, StackOverflowError.class};
private static final MethodHandles.Lookup L = MethodHandles.lookup();
Class<?> c;
// static final MethodHandles.Lookup L = MethodHandles.lookup();
//
// /**
// * Generate class file bytes for a class named CondyNestedTest_Code
// * whose bytes are converted to a jcod file:
// *
// * java -jar asmtools.jar jdec CondyNestedTest_Code.class >
// * CondyNestedTest_Code.jcod
// *
// * which was then edited so that dynamic constant declarations are
// * recursive both for an ldc or invokedynamic (specifically declaring a
// * BSM+attributes whose static argument is a dynamic constant
// * that refers to the same BSM+attributes).
// */
// public static byte[] generator() throws Exception {
// String genClassName = L.lookupClass().getSimpleName() + "_Code";
// ClassDesc genClassDesc = ClassDesc.of(genClassName);
// String bsmDescriptor = MethodType.methodType(Object.class, MethodHandles.Lookup.class, String.class, Object.class,
// Object.class).toMethodDescriptorString();
// String bsmIndyDescriptor = MethodType.methodType(CallSite.class, MethodHandles.Lookup.class, String.class,
// Object.class, Object.class).toMethodDescriptorString();
// DirectMethodHandleDesc bsmMhDesc = MethodHandleDesc.of(
// DirectMethodHandleDesc.Kind.STATIC,
// genClassDesc,
// "bsm",
// bsmDescriptor
// );
// DirectMethodHandleDesc bsmIndyMhDesc = MethodHandleDesc.of(
// DirectMethodHandleDesc.Kind.STATIC,
// genClassDesc,
// "bsmIndy",
// bsmIndyDescriptor
// );
// byte[] byteArray = ClassFile.of().build(ClassDesc.of(genClassName), classBuilder -> classBuilder
// .withVersion(55, 0)
// .withSuperclass(ConstantDescs.CD_Object)
// .withMethod(ConstantDescs.INIT_NAME, ConstantDescs.MTD_void, ClassFile.ACC_PUBLIC, methodBuilder -> methodBuilder
// .withCode(codeBuilder -> codeBuilder
// .aload(0)
// .invokespecial(ConstantDescs.CD_Object, ConstantDescs.INIT_NAME, ConstantDescs.MTD_void)
// .return_()
// )
// )
// .withMethod("main", MethodTypeDesc.of(ConstantDescs.CD_void, ConstantDescs.CD_String.arrayType()),
// ClassFile.ACC_PUBLIC + ClassFile.ACC_STATIC, methodBuilder -> methodBuilder
// .withCode(codeBuilder -> {
// codeBuilder
// .aload(0)
// .iconst_0()
// .aaload()
// .invokevirtual(ConstantDescs.CD_String, "intern",
// MethodTypeDesc.of(ConstantDescs.CD_String))
// .astore(1);
// Label case1 = codeBuilder.newLabel();
// codeBuilder
// .aload(1)
// .ldc("condy_bsm_condy_bsm")
// .if_acmpne(case1)
// .invokestatic(genClassDesc, "condy_bsm_condy_bsm",
// MethodTypeDesc.of(ConstantDescs.CD_Object))
// .return_();
// Label case2 = codeBuilder.newLabel();
// codeBuilder
// .labelBinding(case1)
// .aload(1)
// .ldc("indy_bsmIndy_condy_bsm")
// .if_acmpne(case2)
// .invokestatic(genClassDesc, "indy_bsmIndy_condy_bsm",
// MethodTypeDesc.of(ConstantDescs.CD_Object))
// .return_();
// Label case3 = codeBuilder.newLabel();
// codeBuilder
// .labelBinding(case2)
// .aload(1)
// .ldc("indy_bsm_condy_bsm")
// .if_acmpne(case3)
// .invokestatic(genClassDesc, "indy_bsm_condy_bsm",
// MethodTypeDesc.of(ConstantDescs.CD_Object))
// .return_();
// codeBuilder
// .labelBinding(case3)
// .return_();
// }
// )
// )
// // bsm that when used with indy returns a call site whose target is MethodHandles.constant(String.class, name), and
// // when used with condy returns the name
// .withMethod("bsm", MethodTypeDesc.ofDescriptor(bsmDescriptor),
// ClassFile.ACC_PUBLIC + ClassFile.ACC_STATIC, methodBuilder -> methodBuilder
// .withCode(codeBuilder -> {
// codeBuilder
// .aload(2)
// .instanceOf(ConstantDescs.CD_MethodType)
// .iconst_0();
// Label condy = codeBuilder.newLabel();
// codeBuilder
// .if_acmpeq(condy)
// .new_(ClassDesc.ofDescriptor(ConstantCallSite.class.descriptorString()))
// .dup()
// .ldc(ConstantDescs.CD_String)
// .aload(1)
// .invokestatic(ConstantDescs.CD_MethodHandles, "constant",
// MethodTypeDesc.of(ConstantDescs.CD_MethodHandle, ConstantDescs.CD_Class,
// ConstantDescs.CD_Object))
// .invokespecial(ClassDesc.ofDescriptor(ConstantCallSite.class.descriptorString()),
// ConstantDescs.INIT_NAME,
// MethodTypeDesc.of(ConstantDescs.CD_void, ConstantDescs.CD_MethodHandle))
// .areturn();
// codeBuilder
// .labelBinding(condy)
// .aload(1)
// .areturn();
// }
//
// )
// )
// // an indy bsm, that returns a call site whose target is MethodHandles.constant(String.class, methodName)
// .withMethod("bsmIndy", MethodTypeDesc.ofDescriptor(bsmIndyDescriptor),
// ClassFile.ACC_PUBLIC + ClassFile.ACC_PUBLIC, methodBuilder -> methodBuilder
// .withCode(codeBuilder -> codeBuilder
// .new_(ClassDesc.ofDescriptor(ConstantCallSite.class.descriptorString()))
// .dup()
// .ldc(ConstantDescs.CD_String)
// .aload(1)
// .invokestatic(ConstantDescs.CD_MethodHandles, "constant",
// MethodTypeDesc.of(ConstantDescs.CD_MethodHandle, ConstantDescs.CD_Class,
// ConstantDescs.CD_Object))
// .invokespecial(ClassDesc.ofDescriptor(ConstantCallSite.class.descriptorString()),
// ConstantDescs.INIT_NAME,
// MethodTypeDesc.of(ConstantDescs.CD_void, ConstantDescs.CD_MethodHandle))
// .areturn()
// )
// )
// .withMethod("condy_bsm_condy_bsm", MethodTypeDesc.of(ConstantDescs.CD_Object),
// ClassFile.ACC_PUBLIC + ClassFile.ACC_STATIC, methodBuilder -> methodBuilder
// .withCode(codeBuilder -> codeBuilder
// .ldc(DynamicConstantDesc.ofNamed(
// bsmMhDesc,
// "name",
// ConstantDescs.CD_String,
// DynamicConstantDesc.ofNamed(
// bsmMhDesc,
// "name",
// ConstantDescs.CD_String,
// "DUMMY_ARG"
// )
// )
// )
// .areturn()
// )
// )
// .withMethod("indy_bsmIndy_condy_bsm", MethodTypeDesc.of(ConstantDescs.CD_Object),
// ClassFile.ACC_PUBLIC + ClassFile.ACC_STATIC, methodBuilder -> methodBuilder
// .withCode(codeBuilder -> codeBuilder
// .invokedynamic(DynamicCallSiteDesc.of(
// bsmIndyMhDesc,
// "name",
// MethodTypeDesc.of(ConstantDescs.CD_String),
// DynamicConstantDesc.ofNamed(
// bsmMhDesc,
// "name",
// ConstantDescs.CD_String,
// "DUMMY_ARG"
// )
// )
// )
// .areturn()
// )
// )
// .withMethod("indy_bsm_condy_bsm", MethodTypeDesc.of(ConstantDescs.CD_Object),
// ClassFile.ACC_PUBLIC + ClassFile.ACC_STATIC, methodBuilder -> methodBuilder
// .withCode(codeBuilder -> codeBuilder
// .invokedynamic(DynamicCallSiteDesc.of(
// bsmMhDesc,
// "name",
// MethodTypeDesc.of(ConstantDescs.CD_String),
// DynamicConstantDesc.ofNamed(
// bsmMhDesc,
// "name",
// ConstantDescs.CD_String,
// "DUMMY_ARG"
// )
// )
// )
// .areturn()
// )
// )
// );
//
// File f = new File(genClassName + ".class");
// if (f.getParentFile() != null) {
// f.getParentFile().mkdirs();
// }
// new FileOutputStream(f).write(byteArray);
// return byteArray;
// }
static void test(Method m, Class<? extends Throwable>... ts) {
Throwable caught = null;
try {
m.invoke(null);
} catch (Throwable t) {
caught = t;
}
if (caught == null) {
Assert.fail("Throwable expected");
}
String actualMessage = null;
for (int i = 0; i < ts.length; i++) {
actualMessage = caught.getMessage();
Assert.assertNotNull(caught);
Assert.assertTrue(ts[i].isAssignableFrom(caught.getClass()));
caught = caught.getCause();
}
}
@BeforeClass
public void findClass() throws Exception {
c = Class.forName("CondyNestedTest_Code");
}
/**
* Testing an ldc of a dynamic constant, C say, with a BSM whose static
* argument is C.
*/
@Test
public void testCondyBsmCondyBsm() throws Exception {
test("condy_bsm_condy_bsm", THROWABLES);
}
/**
* Testing an invokedynamic with a BSM whose static argument is a constant
* dynamic, C say, with a BSM whose static argument is C.
*/
@Test
public void testIndyBsmIndyCondyBsm() throws Exception {
test("indy_bsmIndy_condy_bsm", THROWABLES);
}
/**
* Testing an invokedynamic with a BSM, B say, whose static argument is
* a dynamic constant, C say, that uses BSM B.
*/
@Test
public void testIndyBsmCondyBsm() throws Exception {
test("indy_bsm_condy_bsm", THROWABLES);
}
void test(String methodName, Class<? extends Throwable>... ts) throws Exception {
Method m = c.getMethod(methodName);
m.setAccessible(true);
test(m, ts);
}
}
|