|
| 1 | +/* |
| 2 | + * Copyright (c) 2021, Red Hat, Inc. 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 8275638 |
| 27 | + * @summary GraphKit::combine_exception_states fails with "matching stack sizes" assert |
| 28 | + * |
| 29 | + * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:CompileCommand=dontinline,TestLateMHInlineExceptions::m |
| 30 | + * -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline TestLateMHInlineExceptions |
| 31 | + * @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacements -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline |
| 32 | + * TestLateMHInlineExceptions |
| 33 | + * |
| 34 | + */ |
| 35 | + |
| 36 | +import java.lang.invoke.MethodHandle; |
| 37 | +import java.lang.invoke.MethodHandles; |
| 38 | +import java.lang.invoke.MethodType; |
| 39 | + |
| 40 | +public class TestLateMHInlineExceptions { |
| 41 | + public static void main(String[] args) throws Throwable { |
| 42 | + TestLateMHInlineExceptions test = new TestLateMHInlineExceptions(); |
| 43 | + for (int i = 0; i < 20_000; i++) { |
| 44 | + test1(test); |
| 45 | + try { |
| 46 | + test1(null); |
| 47 | + } catch (NullPointerException npe) { |
| 48 | + } |
| 49 | + test2(test); |
| 50 | + test2(null); |
| 51 | + test3(test); |
| 52 | + try { |
| 53 | + test3(null); |
| 54 | + } catch (NullPointerException npe) { |
| 55 | + } |
| 56 | + test4(test); |
| 57 | + test4(null); |
| 58 | + } |
| 59 | + } |
| 60 | + |
| 61 | + void m() { |
| 62 | + } |
| 63 | + |
| 64 | + static final MethodHandle mh; |
| 65 | + |
| 66 | + static { |
| 67 | + MethodHandles.Lookup lookup = MethodHandles.lookup(); |
| 68 | + try { |
| 69 | + mh = lookup.findVirtual(TestLateMHInlineExceptions.class, "m", MethodType.methodType(void.class)); |
| 70 | + } catch (NoSuchMethodException e) { |
| 71 | + e.printStackTrace(); |
| 72 | + throw new RuntimeException("Method handle lookup failed"); |
| 73 | + } catch (IllegalAccessException e) { |
| 74 | + e.printStackTrace(); |
| 75 | + throw new RuntimeException("Method handle lookup failed"); |
| 76 | + } |
| 77 | + } |
| 78 | + |
| 79 | + private static void test1(TestLateMHInlineExceptions test) throws Throwable { |
| 80 | + mh.invokeExact(test); |
| 81 | + } |
| 82 | + |
| 83 | + private static void test2(TestLateMHInlineExceptions test) throws Throwable { |
| 84 | + try { |
| 85 | + mh.invokeExact(test); |
| 86 | + } catch (NullPointerException npe) { |
| 87 | + } |
| 88 | + } |
| 89 | + |
| 90 | + private static void inlined(TestLateMHInlineExceptions test) throws Throwable { |
| 91 | + mh.invokeExact(test); |
| 92 | + } |
| 93 | + |
| 94 | + |
| 95 | + private static void test3(TestLateMHInlineExceptions test) throws Throwable { |
| 96 | + inlined(test); |
| 97 | + } |
| 98 | + |
| 99 | + private static void test4(TestLateMHInlineExceptions test) throws Throwable { |
| 100 | + try { |
| 101 | + inlined(test); |
| 102 | + } catch (NullPointerException npe) { |
| 103 | + } |
| 104 | + } |
| 105 | +} |
1 commit comments
openjdk-notifier[bot] commentedon Dec 17, 2021
Review
Issues