Commit 92aed1cb by Terry Laurenzo Committed by Terry Laurenzo

Fixes java/PR9861

From-SVN: r108374
parent b6105bf2
2005-12-10 Terry Laurenzo <tlaurenzo@gmail.com>
PR java/9861
* mangle.c (write_bare_function_type): Mangle return type for
methods of Java classes
2005-12-08 Thodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> 2005-12-08 Thodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
* call.c (build_conditional_expr): Print types in error messages. * call.c (build_conditional_expr): Print types in error messages.
......
...@@ -1858,16 +1858,38 @@ write_function_type (const tree type) ...@@ -1858,16 +1858,38 @@ write_function_type (const tree type)
is mangled before the parameter types. If non-NULL, DECL is is mangled before the parameter types. If non-NULL, DECL is
FUNCTION_DECL for the function whose type is being emitted. FUNCTION_DECL for the function whose type is being emitted.
<bare-function-type> ::= </signature/ type>+ */ If DECL is a member of a Java type, then a literal 'J'
is output and the return type is mangled as if INCLUDE_RETURN_TYPE
were nonzero.
<bare-function-type> ::= [J]</signature/ type>+ */
static void static void
write_bare_function_type (const tree type, const int include_return_type_p, write_bare_function_type (const tree type, const int include_return_type_p,
const tree decl) const tree decl)
{ {
int java_method_p;
MANGLE_TRACE_TREE ("bare-function-type", type); MANGLE_TRACE_TREE ("bare-function-type", type);
/* Detect Java methods and emit special encoding. */
if (decl != NULL
&& DECL_FUNCTION_MEMBER_P (decl)
&& TYPE_FOR_JAVA (DECL_CONTEXT (decl))
&& !DECL_CONSTRUCTOR_P (decl)
&& !DECL_DESTRUCTOR_P (decl)
&& !DECL_CONV_FN_P (decl))
{
java_method_p = 1;
write_char ('J');
}
else
{
java_method_p = 0;
}
/* Mangle the return type, if requested. */ /* Mangle the return type, if requested. */
if (include_return_type_p) if (include_return_type_p || java_method_p)
write_type (TREE_TYPE (type)); write_type (TREE_TYPE (type));
/* Now mangle the types of the arguments. */ /* Now mangle the types of the arguments. */
......
2005-12-10 Terry Laurenzo <tlaurenzo@gmail.com>
PR java/9861
* mangle.c (mangle_method_decl): Mangle Java methods by prepending 'J'
to bare_function_type and including the return type
* builtins.c (initialize_builtins) : Change builtin mangled name
constants to conform to new mangling scheme
2005-12-08 Andrew Haley <aph@redhat.com> 2005-12-08 Andrew Haley <aph@redhat.com>
PR libgcj/25265 PR libgcj/25265
......
...@@ -194,43 +194,43 @@ initialize_builtins (void) ...@@ -194,43 +194,43 @@ initialize_builtins (void)
float_ftype_float_float, "fmodf", BUILTIN_CONST); float_ftype_float_float, "fmodf", BUILTIN_CONST);
define_builtin (BUILT_IN_ACOS, "__builtin_acos", define_builtin (BUILT_IN_ACOS, "__builtin_acos",
double_ftype_double, "_ZN4java4lang4Math4acosEd", double_ftype_double, "_ZN4java4lang4Math4acosEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_ASIN, "__builtin_asin", define_builtin (BUILT_IN_ASIN, "__builtin_asin",
double_ftype_double, "_ZN4java4lang4Math4asinEd", double_ftype_double, "_ZN4java4lang4Math4asinEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_ATAN, "__builtin_atan", define_builtin (BUILT_IN_ATAN, "__builtin_atan",
double_ftype_double, "_ZN4java4lang4Math4atanEd", double_ftype_double, "_ZN4java4lang4Math4atanEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_ATAN2, "__builtin_atan2", define_builtin (BUILT_IN_ATAN2, "__builtin_atan2",
double_ftype_double_double, "_ZN4java4lang4Math5atan2Edd", double_ftype_double_double, "_ZN4java4lang4Math5atan2EJddd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_CEIL, "__builtin_ceil", define_builtin (BUILT_IN_CEIL, "__builtin_ceil",
double_ftype_double, "_ZN4java4lang4Math4ceilEd", double_ftype_double, "_ZN4java4lang4Math4ceilEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_COS, "__builtin_cos", define_builtin (BUILT_IN_COS, "__builtin_cos",
double_ftype_double, "_ZN4java4lang4Math3cosEd", double_ftype_double, "_ZN4java4lang4Math3cosEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_EXP, "__builtin_exp", define_builtin (BUILT_IN_EXP, "__builtin_exp",
double_ftype_double, "_ZN4java4lang4Math3expEd", double_ftype_double, "_ZN4java4lang4Math3expEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_FLOOR, "__builtin_floor", define_builtin (BUILT_IN_FLOOR, "__builtin_floor",
double_ftype_double, "_ZN4java4lang4Math5floorEd", double_ftype_double, "_ZN4java4lang4Math5floorEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_LOG, "__builtin_log", define_builtin (BUILT_IN_LOG, "__builtin_log",
double_ftype_double, "_ZN4java4lang4Math3logEd", double_ftype_double, "_ZN4java4lang4Math3logEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_POW, "__builtin_pow", define_builtin (BUILT_IN_POW, "__builtin_pow",
double_ftype_double_double, "_ZN4java4lang4Math3powEdd", double_ftype_double_double, "_ZN4java4lang4Math3powEJddd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_SIN, "__builtin_sin", define_builtin (BUILT_IN_SIN, "__builtin_sin",
double_ftype_double, "_ZN4java4lang4Math3sinEd", double_ftype_double, "_ZN4java4lang4Math3sinEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_SQRT, "__builtin_sqrt", define_builtin (BUILT_IN_SQRT, "__builtin_sqrt",
double_ftype_double, "_ZN4java4lang4Math4sqrtEd", double_ftype_double, "_ZN4java4lang4Math4sqrtEJdd",
BUILTIN_CONST); BUILTIN_CONST);
define_builtin (BUILT_IN_TAN, "__builtin_tan", define_builtin (BUILT_IN_TAN, "__builtin_tan",
double_ftype_double, "_ZN4java4lang4Math3tanEd", double_ftype_double, "_ZN4java4lang4Math3tanEJdd",
BUILTIN_CONST); BUILTIN_CONST);
t = tree_cons (NULL_TREE, boolean_type_node, end_params_node); t = tree_cons (NULL_TREE, boolean_type_node, end_params_node);
......
...@@ -188,6 +188,14 @@ mangle_method_decl (tree mdecl) ...@@ -188,6 +188,14 @@ mangle_method_decl (tree mdecl)
if (TREE_CODE (TREE_TYPE (mdecl)) == METHOD_TYPE) if (TREE_CODE (TREE_TYPE (mdecl)) == METHOD_TYPE)
arglist = TREE_CHAIN (arglist); arglist = TREE_CHAIN (arglist);
/* Output literal 'J' and mangle the return type IF not a
constructor. */
if (!ID_INIT_P (method_name))
{
obstack_1grow (mangle_obstack, 'J');
mangle_type(TREE_TYPE(TREE_TYPE(mdecl)));
}
/* No arguments is easy. We shortcut it. */ /* No arguments is easy. We shortcut it. */
if (arglist == end_params_node) if (arglist == end_params_node)
obstack_1grow (mangle_obstack, 'v'); obstack_1grow (mangle_obstack, 'v');
......
2005-12-10 Terry Laurenzo <tlaurenzo@gmail.com>
PR java/9861
* demangle.h : Add DMGL_RET_POSTFIX define to enable alternative
output format for return types
2005-10-31 Mark Kettenis <kettenis@gnu.org> 2005-10-31 Mark Kettenis <kettenis@gnu.org>
* floatformat.h (enum floatformat_byteorders): Add * floatformat.h (enum floatformat_byteorders): Add
......
...@@ -35,6 +35,8 @@ extern "C" { ...@@ -35,6 +35,8 @@ extern "C" {
#define DMGL_JAVA (1 << 2) /* Demangle as Java rather than C++. */ #define DMGL_JAVA (1 << 2) /* Demangle as Java rather than C++. */
#define DMGL_VERBOSE (1 << 3) /* Include implementation details. */ #define DMGL_VERBOSE (1 << 3) /* Include implementation details. */
#define DMGL_TYPES (1 << 4) /* Also try to demangle type encodings. */ #define DMGL_TYPES (1 << 4) /* Also try to demangle type encodings. */
#define DMGL_RET_POSTFIX (1 << 5) /* Print function return types (when
present) after function signature */
#define DMGL_AUTO (1 << 8) #define DMGL_AUTO (1 << 8)
#define DMGL_GNU (1 << 9) #define DMGL_GNU (1 << 9)
......
2005-12-10 Terry Laurenzo <tlaurenzo@gmail.com>
PR java/9861
* cp-demangle.c (d_bare_function_type): Recognize new 'J' qualifer
and include return type when found.
(d_print_comp)[DEMANGLE_COMPONENT_FUNCTION_TYPE]: Add
conditional logic to change printing order of return type.when
the DMGL_RET_POSTFIX option is present.
(java_demangle_v3): Add DMGL_RET_POSTFIX option to d_demangle
call.
* testsuite/test-demangle.c (main): Recognize option --ret-postfix
* testsuite/demangle-expected: Test cases to verify extended encoding.
Updated comment to document --ret-postfix option.
2005-11-06 Richard Guenther <rguenther@suse.de> 2005-11-06 Richard Guenther <rguenther@suse.de>
* splay-tree.c (rotate_left): New function. * splay-tree.c (rotate_left): New function.
......
...@@ -1939,7 +1939,7 @@ d_function_type (struct d_info *di) ...@@ -1939,7 +1939,7 @@ d_function_type (struct d_info *di)
return ret; return ret;
} }
/* <bare-function-type> ::= <type>+ */ /* <bare-function-type> ::= [J]<type>+ */
static struct demangle_component * static struct demangle_component *
d_bare_function_type (struct d_info *di, int has_return_type) d_bare_function_type (struct d_info *di, int has_return_type)
...@@ -1947,13 +1947,22 @@ d_bare_function_type (struct d_info *di, int has_return_type) ...@@ -1947,13 +1947,22 @@ d_bare_function_type (struct d_info *di, int has_return_type)
struct demangle_component *return_type; struct demangle_component *return_type;
struct demangle_component *tl; struct demangle_component *tl;
struct demangle_component **ptl; struct demangle_component **ptl;
char peek;
/* Detect special qualifier indicating that the first argument
is the return type. */
peek = d_peek_char (di);
if (peek == 'J')
{
d_advance (di, 1);
has_return_type = 1;
}
return_type = NULL; return_type = NULL;
tl = NULL; tl = NULL;
ptl = &tl; ptl = &tl;
while (1) while (1)
{ {
char peek;
struct demangle_component *type; struct demangle_component *type;
peek = d_peek_char (di); peek = d_peek_char (di);
...@@ -3025,13 +3034,16 @@ d_print_comp (struct d_print_info *dpi, ...@@ -3025,13 +3034,16 @@ d_print_comp (struct d_print_info *dpi,
case DEMANGLE_COMPONENT_FUNCTION_TYPE: case DEMANGLE_COMPONENT_FUNCTION_TYPE:
{ {
if ((dpi->options & DMGL_RET_POSTFIX) != 0)
d_print_function_type (dpi, dc, dpi->modifiers);
/* Print return type if present */
if (d_left (dc) != NULL) if (d_left (dc) != NULL)
{ {
struct d_print_mod dpm; struct d_print_mod dpm;
/* We must pass this type down as a modifier in order to /* We must pass this type down as a modifier in order to
print it in the right location. */ print it in the right location. */
dpm.next = dpi->modifiers; dpm.next = dpi->modifiers;
dpi->modifiers = &dpm; dpi->modifiers = &dpm;
dpm.mod = dc; dpm.mod = dc;
...@@ -3045,10 +3057,14 @@ d_print_comp (struct d_print_info *dpi, ...@@ -3045,10 +3057,14 @@ d_print_comp (struct d_print_info *dpi,
if (dpm.printed) if (dpm.printed)
return; return;
d_append_char (dpi, ' '); /* In standard prefix notation, there is a space between the
return type and the function signature. */
if ((dpi->options & DMGL_RET_POSTFIX) == 0)
d_append_char (dpi, ' ');
} }
d_print_function_type (dpi, dc, dpi->modifiers); if ((dpi->options & DMGL_RET_POSTFIX) == 0)
d_print_function_type (dpi, dc, dpi->modifiers);
return; return;
} }
...@@ -4003,7 +4019,8 @@ java_demangle_v3 (const char* mangled) ...@@ -4003,7 +4019,8 @@ java_demangle_v3 (const char* mangled)
char *from; char *from;
char *to; char *to;
demangled = d_demangle (mangled, DMGL_JAVA | DMGL_PARAMS, &alc); demangled = d_demangle (mangled, DMGL_JAVA | DMGL_PARAMS | DMGL_RET_POSTFIX,
&alc);
if (demangled == NULL) if (demangled == NULL)
return NULL; return NULL;
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
# --is-v3-ctor Calls is_gnu_v3_mangled_ctor on input; expected # --is-v3-ctor Calls is_gnu_v3_mangled_ctor on input; expected
# output is an integer representing ctor_kind. # output is an integer representing ctor_kind.
# --is-v3-dtor Likewise, but for dtors. # --is-v3-dtor Likewise, but for dtors.
# --ret-postfix Passes the DMGL_RET_POSTFIX option
# #
# For compatibility, just in case it matters, the options line may be # For compatibility, just in case it matters, the options line may be
# empty, to mean --format=auto. If it doesn't start with --, then it # empty, to mean --format=auto. If it doesn't start with --, then it
...@@ -3781,3 +3782,26 @@ _test_array__L_1__B23b___clean.6 ...@@ -3781,3 +3782,26 @@ _test_array__L_1__B23b___clean.6
--format=java --format=java
_ZGAN4java4lang5Class7forNameEPNS0_6StringE _ZGAN4java4lang5Class7forNameEPNS0_6StringE
hidden alias for java.lang.Class.forName(java.lang.String) hidden alias for java.lang.Class.forName(java.lang.String)
#
# Test cases to verify encoding that determines if a return type is present
# Related to PR9861
--format=java
_ZN4java4lang4Math4acosEJdd
java.lang.Math.acos(double)double
#
--format=auto
_ZN4java4lang4Math4acosEJdd
double java::lang::Math::acos(double)
#
--format=auto
_ZN4java4lang4Math4acosEJvd
void java::lang::Math::acos(double)
#
--format=auto --ret-postfix
_ZN4java4lang4Math4acosEJdd
java::lang::Math::acos(double)double
#
--format=gnu-v3 --no-params --ret-postfix
_Z4makeI7FactoryiET_IT0_Ev
make<Factory, int>()Factory<int>
make<Factory, int>
...@@ -114,6 +114,7 @@ exp: %s\n", ...@@ -114,6 +114,7 @@ exp: %s\n",
--is-v3-ctor Calls is_gnu_v3_mangled_ctor on input; expected --is-v3-ctor Calls is_gnu_v3_mangled_ctor on input; expected
output is an integer representing ctor_kind. output is an integer representing ctor_kind.
--is-v3-dtor Likewise, but for dtors. --is-v3-dtor Likewise, but for dtors.
--ret-postfix Passes the DMGL_RET_POSTFIX option
For compatibility, just in case it matters, the options line may be For compatibility, just in case it matters, the options line may be
empty, to mean --format=auto. If it doesn't start with --, then it empty, to mean --format=auto. If it doesn't start with --, then it
...@@ -129,6 +130,7 @@ main(argc, argv) ...@@ -129,6 +130,7 @@ main(argc, argv)
int no_params; int no_params;
int is_v3_ctor; int is_v3_ctor;
int is_v3_dtor; int is_v3_dtor;
int ret_postfix;
struct line format; struct line format;
struct line input; struct line input;
struct line expect; struct line expect;
...@@ -158,6 +160,7 @@ main(argc, argv) ...@@ -158,6 +160,7 @@ main(argc, argv)
tests++; tests++;
no_params = 0; no_params = 0;
ret_postfix = 0;
is_v3_ctor = 0; is_v3_ctor = 0;
is_v3_dtor = 0; is_v3_dtor = 0;
if (format.data[0] == '\0') if (format.data[0] == '\0')
...@@ -212,6 +215,8 @@ main(argc, argv) ...@@ -212,6 +215,8 @@ main(argc, argv)
is_v3_ctor = 1; is_v3_ctor = 1;
else if (strcmp (opt, "--is-v3-dtor") == 0) else if (strcmp (opt, "--is-v3-dtor") == 0)
is_v3_dtor = 1; is_v3_dtor = 1;
else if (strcmp (opt, "--ret-postfix") == 0)
ret_postfix = 1;
else else
{ {
printf ("FAIL at line %d: unrecognized option %s\n", printf ("FAIL at line %d: unrecognized option %s\n",
...@@ -255,7 +260,8 @@ main(argc, argv) ...@@ -255,7 +260,8 @@ main(argc, argv)
cplus_demangle_set_style (style); cplus_demangle_set_style (style);
result = cplus_demangle (input.data, result = cplus_demangle (input.data,
DMGL_PARAMS|DMGL_ANSI|DMGL_TYPES); DMGL_PARAMS|DMGL_ANSI|DMGL_TYPES
|(ret_postfix ? DMGL_RET_POSTFIX : 0));
if (result if (result
? strcmp (result, expect.data) ? strcmp (result, expect.data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment