com.oracle.testlibrary.jsr292.CodeCacheOverflowProcessor Java Examples

The following examples show how to use com.oracle.testlibrary.jsr292.CodeCacheOverflowProcessor. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MethodHandlesTest.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testRunnableProxy() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testRunnableProxy0);
}
 
Example #2
Source File: MethodHandlesTest.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testInterfaceCast() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testInterfaceCast0);
}
 
Example #3
Source File: MethodHandlesTest.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testArrayElementGetter() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testArrayElementGetter0);
}
 
Example #4
Source File: MethodHandlesTest.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testUserClassInSignature() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testUserClassInSignature0);
}
 
Example #5
Source File: MethodHandlesTest.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testUnreflectSpecial() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testUnreflectSpecial0);
}
 
Example #6
Source File: MethodHandlesTest.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testFindStatic() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testFindStatic0);
}
 
Example #7
Source File: MethodHandlesTest.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testBind() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testBind0);
}
 
Example #8
Source File: MethodHandlesTest.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Test  // SLOW
public void testInvokers() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testInvokers0);
}
 
Example #9
Source File: MethodHandlesTest.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testDropArguments() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testDropArguments0);
}
 
Example #10
Source File: MethodHandlesTest.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testCollectArguments() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testCollectArguments0);
}
 
Example #11
Source File: MethodHandlesTest.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testAsInterfaceInstance() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testAsInterfaceInstance0);
}
 
Example #12
Source File: MethodHandlesTest.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testFindVirtualClone() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testFindVirtualClone0);
}
 
Example #13
Source File: MethodHandlesTest.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testUnreflect() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testUnreflect0);
}
 
Example #14
Source File: MethodHandlesTest.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testFindVirtual() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testFindVirtual0);
}
 
Example #15
Source File: MethodHandlesTest.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testUnreflectSetter() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testUnreflectSetter0);
}
 
Example #16
Source File: MethodHandlesTest.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testVarargsCollector() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testVarargsCollector0);
}
 
Example #17
Source File: MethodHandlesTest.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testArrayElementGetter() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testArrayElementGetter0);
}
 
Example #18
Source File: MethodHandlesTest.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testArrayElementGetter() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testArrayElementGetter0);
}
 
Example #19
Source File: MethodHandlesTest.java    From jdk8u_jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testFindGetter() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testFindGetter0);
}
 
Example #20
Source File: MethodHandlesTest.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testTryFinally() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testTryFinally0);
}
 
Example #21
Source File: MethodHandlesTest.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Test // SLOW
public void testSpreadArguments() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testSpreadArguments0);
}
 
Example #22
Source File: MethodHandlesTest.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testFilterReturnValue() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testFilterReturnValue0);
}
 
Example #23
Source File: MethodHandlesTest.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testFindSpecial() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testFindSpecial0);
}
 
Example #24
Source File: MethodHandlesTest.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Test // SLOW
public void testSpreadArguments() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testSpreadArguments0);
    CodeCacheOverflowProcessor.runMHTest(this::testSpreadArguments1);
}
 
Example #25
Source File: MethodHandlesTest.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testUnreflectGetter() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testUnreflectGetter0);
}
 
Example #26
Source File: MethodHandlesTest.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testCollectArguments() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testCollectArguments0);
}
 
Example #27
Source File: MethodHandlesTest.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testUnreflectGetter() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testUnreflectGetter0);
}
 
Example #28
Source File: MethodHandlesTest.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testThrowException() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testThrowException0);
}
 
Example #29
Source File: MethodHandlesTest.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Test // SLOW
public void testAsCollector() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testAsCollector0);
    CodeCacheOverflowProcessor.runMHTest(this::testAsCollector1);
}
 
Example #30
Source File: MethodHandlesTest.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Test
public void testFindStaticGetter() throws Throwable {
    CodeCacheOverflowProcessor.runMHTest(this::testFindStaticGetter0);
}