aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/backend/rust-compile-implitem.h
diff options
context:
space:
mode:
authorPhilip Herron <philip.herron@embecosm.com>2021-05-07 16:53:17 +0100
committerPhilip Herron <philip.herron@embecosm.com>2021-05-11 18:09:57 +0100
commit58e108c7c6d0fa3c9ebc7eeb681851924e22ddd5 (patch)
tree95c03868e9d05a84000e29187e2e5ccba431cd35 /gcc/rust/backend/rust-compile-implitem.h
parentc04343dbab902e5b8a5f047266645a5e7d40a5ed (diff)
downloadgcc-58e108c7c6d0fa3c9ebc7eeb681851924e22ddd5.zip
gcc-58e108c7c6d0fa3c9ebc7eeb681851924e22ddd5.tar.gz
gcc-58e108c7c6d0fa3c9ebc7eeb681851924e22ddd5.tar.bz2
Implement basic rustc legacy symbol mangling
Rust supports two different symbol mangling methods legacy and V0. V0 is the goal but its not yet stable. This implements the legacy method but with a dummy hash value since it requires a sip128 implementation to generate the apropriate hash which can be done in a sperate change. This change allows us to actually assemble generic functions and avoid bad symbol duplications. Addresses #305
Diffstat (limited to 'gcc/rust/backend/rust-compile-implitem.h')
-rw-r--r--gcc/rust/backend/rust-compile-implitem.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/gcc/rust/backend/rust-compile-implitem.h b/gcc/rust/backend/rust-compile-implitem.h
index cee3a3b..f2caa2e 100644
--- a/gcc/rust/backend/rust-compile-implitem.h
+++ b/gcc/rust/backend/rust-compile-implitem.h
@@ -112,15 +112,17 @@ public:
::Btype *compiled_fn_type = TyTyResolveCompile::compile (ctx, fntype);
unsigned int flags = 0;
- std::string fn_identifier
- = self->get_name () + "_" + function.get_function_name ();
// if its the main fn or pub visibility mark its as DECL_PUBLIC
// please see https://github.com/Rust-GCC/gccrs/pull/137
if (function.has_visibility ())
flags |= Backend::function_is_visible;
- std::string asm_name = fn_identifier;
+ std::string fn_identifier
+ = self->get_name () + "_" + function.get_function_name ();
+ std::string asm_name
+ = ctx->mangle_impl_item (self, function.get_function_name ());
+
Bfunction *fndecl
= ctx->get_backend ()->function (compiled_fn_type, fn_identifier,
asm_name, flags, function.get_locus ());
@@ -291,15 +293,17 @@ public:
::Btype *compiled_fn_type = TyTyResolveCompile::compile (ctx, fntype);
unsigned int flags = 0;
- std::string fn_identifier
- = self->get_name () + "_" + method.get_method_name ();
// if its the main fn or pub visibility mark its as DECL_PUBLIC
// please see https://github.com/Rust-GCC/gccrs/pull/137
if (method.has_visibility ())
flags |= Backend::function_is_visible;
- std::string asm_name = fn_identifier;
+ std::string fn_identifier
+ = self->get_name () + "_" + method.get_method_name ();
+ std::string asm_name
+ = ctx->mangle_impl_item (self, method.get_method_name ());
+
Bfunction *fndecl
= ctx->get_backend ()->function (compiled_fn_type, fn_identifier,
asm_name, flags, method.get_locus ());