1 /*
   2  * Copyright (c) 2018, 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  * @test
  26  * @bug 8186046
  27  * @summary Test for an interface using condy with default overpass methods
  28  * @library /lib/testlibrary/bytecode
  29  * @build jdk.experimental.bytecode.BasicClassBuilder
  30  * @run testng CondyInterfaceWithOverpassMethods
  31  * @run testng/othervm -XX:+UnlockDiagnosticVMOptions -XX:UseBootstrapCallInfo=3 CondyInterfaceWithOverpassMethods
  32  */
  33 
  34 import jdk.experimental.bytecode.BasicClassBuilder;
  35 import jdk.experimental.bytecode.Flag;
  36 import jdk.experimental.bytecode.TypedCodeBuilder;
  37 import org.testng.annotations.BeforeClass;
  38 import org.testng.annotations.Test;
  39 
  40 import java.lang.invoke.MethodHandles;
  41 import java.lang.invoke.MethodType;
  42 
  43 @Test
  44 public class CondyInterfaceWithOverpassMethods {
  45     interface A {
  46         int a();
  47 
  48         default int x() {
  49             return 1;
  50         }
  51     }
  52 
  53 
  54     // Generated class with methods containing condy ldc
  55     Class<?> gc;
  56 
  57     public static Object bsm(MethodHandles.Lookup l, String name, Class<?> type) {
  58         return name;
  59     }
  60 
  61     @BeforeClass
  62     public void generateClass() throws Exception {
  63 //        interface B extends A {
  64 //            // Overpass for method A.a
  65 //
  66 //            default void y() {
  67 //                // ldc to Dynamic
  68 //            }
  69 //        }
  70         Class<?> thisClass = CondyInterfaceWithOverpassMethods.class;
  71 
  72         String genClassName = thisClass.getSimpleName() + "$Code";
  73         String bsmClassName = thisClass.getCanonicalName().replace('.', '/');
  74         String bsmMethodName = "bsm";
  75         String bsmDescriptor = MethodType.methodType(Object.class, MethodHandles.Lookup.class,
  76                                                      String.class, Class.class).toMethodDescriptorString();
  77 
  78         byte[] byteArray = new BasicClassBuilder(genClassName, 55, 0)
  79                 .withFlags(Flag.ACC_INTERFACE, Flag.ACC_ABSTRACT)
  80                 .withSuperclass("java/lang/Object")
  81                 .withSuperinterface(thisClass.getCanonicalName().replace('.', '/') + "$" + A.class.getSimpleName())
  82                 .withMethod("y", "()Ljava/lang/String;", M ->
  83                         M.withFlags(Flag.ACC_PUBLIC)
  84                                 .withCode(TypedCodeBuilder::new, C ->
  85                                         C.ldc("String", "Ljava/lang/String;", bsmClassName, bsmMethodName, bsmDescriptor,
  86                                               S -> {})
  87                                                 .areturn()
  88                                 ))
  89                 .build();
  90 
  91         gc = MethodHandles.lookup().defineClass(byteArray);
  92     }
  93 
  94     @Test
  95     public void testClass() throws Exception {
  96         // Trigger initialization
  97         Class.forName(gc.getName());
  98     }
  99 }