8232948: javac -h should mangle the overload argument signature

Reviewed-by: jjg
This commit is contained in:
Joel Borggrén-Franck 2021-06-08 10:51:19 +00:00
parent 89da2021ee
commit 2717fcb134
2 changed files with 128 additions and 8 deletions

View File

@ -417,7 +417,7 @@ public class JNIWriter {
result.append(encode(msym.getSimpleName(), EncoderType.JNI));
if (isOverloaded) {
TypeSignature typeSig = new TypeSignature(types);
StringBuilder sig = typeSig.getParameterSignature(msym.type);
StringBuilder sig = typeSig.getParameterSignature(msym.type, true);
result.append("__").append(encode(sig, EncoderType.JNI));
}
return result.toString();
@ -542,23 +542,23 @@ public class JNIWriter {
this.types = types;
}
StringBuilder getParameterSignature(Type mType)
StringBuilder getParameterSignature(Type mType, boolean useFlatname)
throws SignatureException {
StringBuilder result = new StringBuilder();
for (Type pType : mType.getParameterTypes()) {
result.append(getJvmSignature(pType));
result.append(getJvmSignature(pType, useFlatname));
}
return result;
}
StringBuilder getReturnSignature(Type mType)
throws SignatureException {
return getJvmSignature(mType.getReturnType());
return getJvmSignature(mType.getReturnType(), false);
}
StringBuilder getSignature(Type mType) throws SignatureException {
StringBuilder sb = new StringBuilder();
sb.append("(").append(getParameterSignature(mType)).append(")");
sb.append("(").append(getParameterSignature(mType, false)).append(")");
sb.append(getReturnSignature(mType));
return sb;
}
@ -567,6 +567,12 @@ public class JNIWriter {
* Returns jvm internal signature.
*/
static class JvmTypeVisitor extends JNIWriter.SimpleTypeVisitor<Type, StringBuilder> {
private final boolean useFlatname;
JvmTypeVisitor(boolean useFlatname) {
super();
this.useFlatname = useFlatname;
}
@Override
public Type visitClassType(Type.ClassType t, StringBuilder s) {
@ -589,7 +595,8 @@ public class JNIWriter {
return t.accept(this, s);
}
private void setDeclaredType(Type t, StringBuilder s) {
String classname = t.tsym.getQualifiedName().toString();
String classname = useFlatname ? t.tsym.flatName().toString()
: t.tsym.getQualifiedName().toString();
classname = classname.replace('.', '/');
s.append("L").append(classname).append(";");
}
@ -611,10 +618,10 @@ public class JNIWriter {
}
}
StringBuilder getJvmSignature(Type type) {
StringBuilder getJvmSignature(Type type, boolean useFlatname) {
Type t = types.erasure(type);
StringBuilder sig = new StringBuilder();
JvmTypeVisitor jv = new JvmTypeVisitor();
JvmTypeVisitor jv = new JvmTypeVisitor(useFlatname);
jv.visitType(t, sig);
return sig;
}

View File

@ -0,0 +1,113 @@
/*
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8232948
* @summary Make sure inner classes are correctly encoded
* @library /tools/lib
* @modules jdk.compiler/com.sun.tools.javac.api
* @modules jdk.compiler/com.sun.tools.javac.main
* @build toolbox.JavacTask toolbox.TestRunner toolbox.ToolBox
* @run main EncodeInnerClassNameTest
*/
import toolbox.JavacTask;
import toolbox.ToolBox;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.List;
public class EncodeInnerClassNameTest {
private final ToolBox toolBox = new ToolBox();
private final String source = """
package p.q;
public class Outer {
public class Inner {
native Inner aMethod();
native void aMethod(Inner i);
native void aMethod(Inner i, Inner j);
}
}
""";
private final String expected = """
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class p_q_Outer_Inner */
#ifndef _Included_p_q_Outer_Inner
#define _Included_p_q_Outer_Inner
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: p_q_Outer_Inner
* Method: aMethod
* Signature: ()Lp/q/Outer/Inner;
*/
JNIEXPORT jobject JNICALL Java_p_q_Outer_00024Inner_aMethod__
(JNIEnv *, jobject);
/*
* Class: p_q_Outer_Inner
* Method: aMethod
* Signature: (Lp/q/Outer/Inner;)V
*/
JNIEXPORT void JNICALL Java_p_q_Outer_00024Inner_aMethod__Lp_q_Outer_00024Inner_2
(JNIEnv *, jobject, jobject);
/*
* Class: p_q_Outer_Inner
* Method: aMethod
* Signature: (Lp/q/Outer/Inner;Lp/q/Outer/Inner;)V
*/
JNIEXPORT void JNICALL Java_p_q_Outer_00024Inner_aMethod__Lp_q_Outer_00024Inner_2Lp_q_Outer_00024Inner_2
(JNIEnv *, jobject, jobject, jobject);
#ifdef __cplusplus
}
#endif
#endif
""";
public static void main(String... args) throws Exception {
new EncodeInnerClassNameTest().runTest();
}
public void runTest() throws Exception {
JavacTask task = new JavacTask(toolBox);
task.outdir(".")
.sources(source)
.options("-h", ".")
.run()
.writeAll();
List<String> expected = Arrays.asList(this.expected.split("\\R"));
List<String> res = toolBox.readAllLines(Path.of(".", "p_q_Outer_Inner.h"));
toolBox.checkEqual(expected, res);
}
}