Skip to content

Commit 3d3eb5c

Browse files
author
Harold Seigel
committedMar 3, 2021
8262368: wrong verifier message for bogus return type
Reviewed-by: dholmes, coleenp
1 parent 6d3c858 commit 3d3eb5c

File tree

3 files changed

+127
-1
lines changed

3 files changed

+127
-1
lines changed
 

‎src/hotspot/share/classfile/verifier.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3149,7 +3149,7 @@ void ClassVerifier::verify_return_value(
31493149
if (return_type == VerificationType::bogus_type()) {
31503150
verify_error(ErrorContext::bad_type(bci,
31513151
current_frame->stack_top_ctx(), TypeOrigin::signature(return_type)),
3152-
"Method expects a return value");
3152+
"Method does not expect a return value");
31533153
return;
31543154
}
31553155
bool match = return_type.is_assignable_from(type, this, false, CHECK_VERIFY(this));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/*
2+
* Copyright (c) 2021, 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+
/*
25+
* @test
26+
* @bug 8262368
27+
* @summary Test that VerifyError messages are correct when return bytecodes
28+
* andd method signatures do not match.
29+
* @compile Returns.jasm
30+
* @run main/othervm -Xverify ReturnMsgs
31+
*/
32+
33+
public class ReturnMsgs {
34+
35+
public static void main(String args[]) throws Throwable {
36+
System.out.println("Regression test for bug 8262368");
37+
38+
try {
39+
// Test message for class with a void return type in its method
40+
// descriptor, containing an 'ireturn' bytecode.
41+
Class newClass = Class.forName("VoidReturnSignature");
42+
throw new RuntimeException("Expected VerifyError exception not thrown");
43+
} catch (java.lang.VerifyError e) {
44+
String eMsg = e.getMessage();
45+
if (!eMsg.contains("Method does not expect a return value")) {
46+
throw new RuntimeException("Unexpected exception message: " + eMsg);
47+
}
48+
}
49+
50+
try {
51+
// Test message for class with a non-void return type in its
52+
// method descriptor, containing a 'return' bytecode.
53+
Class newClass = Class.forName("NonVoidReturnSignature");
54+
throw new RuntimeException("Expected VerifyError exception not thrown");
55+
} catch (java.lang.VerifyError e) {
56+
String eMsg = e.getMessage();
57+
if (!eMsg.contains("Method expects a return value")) {
58+
throw new RuntimeException("Unexpected exception message: " + eMsg);
59+
}
60+
}
61+
}
62+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/*
2+
* Copyright (c) 2021, 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+
// This class should fail verification because method voidRetSig has a void
25+
// return signature and an ireturn bytecode.
26+
super public class VoidReturnSignature version 61:0 {
27+
public Method "<init>":"()V" stack 1 locals 1 {
28+
aload_0;
29+
invokespecial Method java/lang/Object."<init>":"()V";
30+
return;
31+
}
32+
33+
static Method voidRetSig:"(I)V" stack 1 locals 1 {
34+
iconst_5;
35+
ireturn;
36+
}
37+
38+
public static Method main:"([Ljava/lang/String;)V" throws java/lang/Throwable stack 0 locals 1 {
39+
return;
40+
}
41+
42+
} // end Class VoidReturnSignature
43+
44+
45+
46+
// This class should fail verification because method nonVoidReturnSig has
47+
// a non-void return signature and a return bytecode.
48+
super public class NonVoidReturnSignature version 61:0 {
49+
public Method "<init>":"()V" stack 1 locals 1 {
50+
aload_0;
51+
invokespecial Method java/lang/Object."<init>":"()V";
52+
return;
53+
}
54+
55+
static Method nonVoidReturnSig:"(I)I" stack 1 locals 1 {
56+
iconst_5;
57+
return;
58+
}
59+
60+
public static Method main:"([Ljava/lang/String;)V" throws java/lang/Throwable stack 0 locals 1 {
61+
return;
62+
}
63+
64+
} // end Class NonVoidReturnSignature

0 commit comments

Comments
 (0)
Please sign in to comment.