< prev index next >

test/compiler/jsr292/NonInlinedCall/InvokeTest.java

Print this page




   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 8072008
  27  * @library /testlibrary /test/lib / ../patches
  28  * @modules java.base/jdk.internal.misc
  29  *          java.base/jdk.internal.vm.annotation
  30  *
  31  * @build java.base/java.lang.invoke.MethodHandleHelper
  32  *        sun.hotspot.WhiteBox
  33  *        compiler.jsr292.NonInlinedCall.InvokeTest
  34  * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions
  35  *                                 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  36  *                                 -Xbatch -XX:-TieredCompilation -XX:CICompilerCount=1
  37  *                                 compiler.jsr292.NonInlinedCall.InvokeTest
  38  */
  39 
  40 package compiler.jsr292.NonInlinedCall;
  41 
  42 import jdk.internal.vm.annotation.DontInline;
  43 import sun.hotspot.WhiteBox;
  44 
  45 import java.lang.invoke.MethodHandle;
  46 import java.lang.invoke.MethodHandleHelper;
  47 import java.lang.invoke.MethodHandleHelper.NonInlinedReinvoker;
  48 import java.lang.invoke.MethodHandles;
  49 import java.lang.invoke.MethodType;
  50 
  51 import static jdk.test.lib.Asserts.assertEquals;
  52 
  53 public class InvokeTest {




   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 8072008
  27  * @library /test/lib / ../patches
  28  * @modules java.base/jdk.internal.misc
  29  *          java.base/jdk.internal.vm.annotation
  30  *
  31  * @build java.base/java.lang.invoke.MethodHandleHelper
  32  *        sun.hotspot.WhiteBox

  33  * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions
  34  *                                 -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  35  *                                 -Xbatch -XX:-TieredCompilation -XX:CICompilerCount=1
  36  *                                 compiler.jsr292.NonInlinedCall.InvokeTest
  37  */
  38 
  39 package compiler.jsr292.NonInlinedCall;
  40 
  41 import jdk.internal.vm.annotation.DontInline;
  42 import sun.hotspot.WhiteBox;
  43 
  44 import java.lang.invoke.MethodHandle;
  45 import java.lang.invoke.MethodHandleHelper;
  46 import java.lang.invoke.MethodHandleHelper.NonInlinedReinvoker;
  47 import java.lang.invoke.MethodHandles;
  48 import java.lang.invoke.MethodType;
  49 
  50 import static jdk.test.lib.Asserts.assertEquals;
  51 
  52 public class InvokeTest {


< prev index next >