Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.
/ jdk18 Public archive

Commit b9a477b

Browse files
committedDec 17, 2021
8275638: GraphKit::combine_exception_states fails with "matching stack sizes" assert
Reviewed-by: dlong, kvn
1 parent bb7efb3 commit b9a477b

File tree

3 files changed

+117
-0
lines changed

3 files changed

+117
-0
lines changed
 

‎src/hotspot/share/opto/callGenerator.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,11 @@ class LateInlineMHCallGenerator : public LateInlineCallGenerator {
416416
};
417417

418418
bool LateInlineMHCallGenerator::do_late_inline_check(Compile* C, JVMState* jvms) {
419+
// When inlining a virtual call, the null check at the call and the call itself can throw. These 2 paths have different
420+
// expression stacks which causes late inlining to break. The MH invoker is not expected to be called from a method wih
421+
// exception handlers. When there is no exception handler, GraphKit::builtin_throw() pops the stack which solves the issue
422+
// of late inlining with exceptions.
423+
assert(!jvms->method()->has_exception_handlers(), "no exception handler expected");
419424
// Even if inlining is not allowed, a virtual call can be strength-reduced to a direct call.
420425
bool allow_inline = C->inlining_incrementally();
421426
bool input_not_const = true;

‎src/hotspot/share/opto/graphKit.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -613,6 +613,13 @@ void GraphKit::builtin_throw(Deoptimization::DeoptReason reason, Node* arg) {
613613
const TypeOopPtr* val_type = TypeOopPtr::make_from_klass(env()->String_klass());
614614
Node *store = access_store_at(ex_node, adr, adr_typ, null(), val_type, T_OBJECT, IN_HEAP);
615615

616+
if (!method()->has_exception_handlers()) {
617+
// We don't need to preserve the stack if there's no handler as the entire frame is going to be popped anyway.
618+
// This prevents issues with exception handling and late inlining.
619+
set_sp(0);
620+
clean_stack(0);
621+
}
622+
616623
add_exception_state(make_exception_state(ex_node));
617624
return;
618625
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
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

Comments
 (1)

openjdk-notifier[bot] commented on Dec 17, 2021

@openjdk-notifier[bot]
This repository has been archived.