1 /*
   2  * Copyright (c) 2016, 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 super class compiler/linkage/I
  25 version 52:0
  26 {
  27 
  28 }
  29 
  30 
  31 super class compiler/linkage/CallSites
  32 version 52:0
  33 {
  34 
  35     // Non-existent methods.
  36 
  37     // I.m1()V vs I.m1(I)V
  38     public static Method testI1:"(Lcompiler/linkage/I;)V"
  39         stack 1 locals 1
  40     {
  41         aload_0;
  42         invokeinterface InterfaceMethod compiler/linkage/I."m1":"()V", 1; // throws NSME
  43         return;
  44     }
  45 
  46     // X.m1()V vs X.m1(I)V
  47     public static Method testX1:"(Lcompiler/linkage/X;)V"
  48         stack 1 locals 1
  49     {
  50         aload_0;
  51         invokevirtual Method compiler/linkage/X."m1":"()V"; // throws NSME
  52         return;
  53     }
  54 
  55     // invokestatic of instance methods.
  56 
  57     public static Method testI2:"()V"
  58         stack 1 locals 0
  59     {
  60         iconst_0;
  61         invokestatic InterfaceMethod compiler/linkage/I."m1":"(I)V"; // throws ICCE
  62         return;
  63     }
  64 
  65     public static Method testX2:"()V"
  66         stack 1 locals 0
  67     {
  68         iconst_0;
  69         invokestatic Method compiler/linkage/X."m1":"(I)V"; // throws ICCE
  70         return;
  71     }
  72 
  73     // Virtual invocation of static methods.
  74 
  75     public static Method testI3:"(Lcompiler/linkage/I;)V"
  76         stack 1 locals 1
  77     {
  78         aload_0;
  79         invokeinterface InterfaceMethod compiler/linkage/I."s1":"()V", 1; // throws ICCE
  80         return;
  81     }
  82 
  83     public static Method testX3:"(Lcompiler/linkage/X;)V"
  84         stack 1 locals 1
  85     {
  86         aload_0;
  87         invokevirtual Method compiler/linkage/X."s1":"()V";  // throws ICCE
  88         return;
  89     }
  90 
  91 } // end Class CallSites