hotspot/test/runtime/lambda-features/InvokespecialInterface.java
author coleenp
Fri, 07 Feb 2014 18:30:27 -0500
changeset 22750 a3c879b18f22
parent 22523 88e7f090ba37
child 22798 175a9549fb01
permissions -rw-r--r--
8033528: assert(0 <= i && i < length()) failed: index out of bounds Summary: Restoring bytecodes for invokedynamic had wrong index calculation added testing stress option. Reviewed-by: twisti, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22523
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     1
/*
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     4
 *
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     7
 * published by the Free Software Foundation.
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     8
 *
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    13
 * accompanied this code).
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    14
 *
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    18
 *
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    21
 * questions.
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    22
 *
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    23
 */
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    24
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    25
/*
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    26
 * @test
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    27
 * @bug 8032024
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    28
 * @bug 8025937
22750
a3c879b18f22 8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents: 22523
diff changeset
    29
 * @bug 8033528
22523
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    30
 * @summary [JDK 8] Test invokespecial and invokeinterface with the same JVM_CONSTANT_InterfaceMethodref
22750
a3c879b18f22 8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents: 22523
diff changeset
    31
 * @run main/othervm -XX:+StressRewriter InvokespecialInterface
22523
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    32
 */
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    33
import java.util.function.*;
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    34
import java.util.*;
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    35
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    36
interface I {
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    37
  default void imethod() { System.out.println("I::imethod"); }
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    38
}
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    39
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    40
class C implements I {
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    41
  public void foo() { I.super.imethod(); }  // invokespecial InterfaceMethod
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    42
  public void bar() { I i = this; i.imethod(); } // invokeinterface same
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    43
  public void doSomeInvokedynamic() {
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    44
      String str = "world";
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    45
      Supplier<String> foo = ()->"hello, "+str;
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    46
      String res = foo.get();
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    47
      System.out.println(res);
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    48
  }
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    49
}
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    50
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    51
public class InvokespecialInterface {
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    52
  public static void main(java.lang.String[] unused) {
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    53
     // need to create C and call I::foo()
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    54
     C c = new C();
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    55
     c.foo();
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    56
     c.bar();
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    57
     c.doSomeInvokedynamic();
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    58
  }
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    59
};
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    60
88e7f090ba37 8032024: Test not added for bug 8025937: assert(existing_f1 == NULL || existing_f1 == f1) failed: illegal field,change
coleenp
parents:
diff changeset
    61