-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RFC: Rust Symbol Mangling (v0) #2603
Conversation
For the record, I'll be starting the compiler implementation/integration work ASAP, to get this RFC in rustc nightly, and later on, in other tools (such as GDB, LLDB, etc.). Doing this at the same time as the RFC will give us the ability to collect data at scale, and figure out edge cases and performance tradeoffs we might miss otherwise. |
text/0000-symbol-name-mangling-v2.md
Outdated
|
||
### Methods | ||
|
||
Methods are nested within `impl` or `trait` items. As such it would be possible to construct their symbol names as paths like `my_crate::foo::{{impl}}::some_method` where `{{impl}}` somehow identifies the the `impl` in question. Since `impl`s don't have names, we'd have to use an indexing scheme like the one used for closures (and indeed, this is what the compiler does internally). Adding in generic arguments to, this would lead to symbol names looking like `my_crate::foo::impl'17::<u32, char>::some_method`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the interest of keeping this RFC sufficiently detached from current implementation details, can we use some more general placeholder notation, such as <impl>
, instead of {{impl}}
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's just an example of how not to do it. The {{xyz}}
notation is meant to remind of what some templating engines use, not what the compiler did at some point. But I can change it to <impl>
if you prefer that.
text/0000-symbol-name-mangling-v2.md
Outdated
|
||
- Identifiers and trait impl path roots can have a numeric disambiguator (the `<disambiguator>` production). The syntactic version of the numeric disambiguator maps to a numeric index. If the disambiguator is not present, this index is 0. If it is of the form `s_` then the index is 1. If it is of the form `s<base-62-digit>_` then the index is `<base-62-digit> + 2`. The suggested demangling of a disambiguator is `[<index>]`. However, for better readability, these disambiguators should usually be omitted in the demangling altogether. Disambiguators with index zero can always be omitted. | ||
|
||
The exception here are closures. Since these do not have a name, the disambiguator is the only thing identifying them. The suggested demangling for closures is thus `{closure}[<index>]`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly here, we should avoid braces. What does C++ do for its lambdas?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GCC uses something with braces and indices too:
int square(int num) {
auto foo = [num]() -> int { return num * num; };
return foo();
}
The closure is demangled as square(int)::{lambda()#1}::operator()() const
(see https://godbolt.org/z/TaXWCe)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do debuggers work well with it? If so, how? Can we do some tests to see what works and what doesn't?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume that debuggers treat lambdas as regular operator()
methods. What kind of tests did you have in mind?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm referring to the problems @m4b mentions in #2603 (comment), regarding debuggers not being able to let you refer to symbol names that contain {
(or perhaps only {{
?).
If we change {{closure}}
in the compiler with some other notation, we can see how well GDB and LLDB interact with the symbol names.
Although it's possible debuggers only handle such symbol names when they come from a mangling, which would mean debuggers should just pick a demangling that works for them, right?
text/0000-symbol-name-mangling-v2.md
Outdated
|
||
The exception here are closures. Since these do not have a name, the disambiguator is the only thing identifying them. The suggested demangling for closures is thus `{closure}[<index>]`. | ||
|
||
- In a lossless demangling, identifiers from the value namespace should be marked with a `'` suffix in order to avoid conflicts with identifiers from the type namespace. In a user-facing demangling, where such conflicts are acceptable, the suffix can be omitted. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't that include all the statics and functions? Seems a bit excessive.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does, but I don't think there's a way around it. Otherwise you get conflicts for examples like:
fn foo() {
fn bar() {}
}
mod foo {
fn bar() {}
}
Note though that this is only for "lossless" demanglings. For most user-facing demanglings, like in debuggers or backtraces, the suffix can just be omitted. I suggest that demanglers support lossless
or verbose
option that is usually set to false
.
text/0000-symbol-name-mangling-v2.md
Outdated
struct Foo<T>(T); | ||
|
||
impl<T> Clone for Foo<T> { | ||
fn clone<U>(_: U) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clone::clone
can't take type parameters.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I'll come up with a better example.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Borrow<T>
could work well
EDIT: Wait, no, missed you wanted the type param on the method.
text/0000-symbol-name-mangling-v2.md
Outdated
} | ||
``` | ||
- unmangled: `mycrate::Foo::bar::QUUX` | ||
- mangled: `_RNMN11mycrate_xxx3FooE3barV4QUUXVE` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't these mention type parameters?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure enough. You want to be able to distinguish between these 2 cases (this code compiles today):
struct Foo<U,V>(U,V);
impl<U: Fn()> Foo<U, u32> {
fn foo() {}
}
impl<U: Fn()> Foo<u32, U> {
fn foo() {}
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, we'll have to take care of that then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had a little chat with @nikomatsakis about this yesterday and the outcome was that:
- we always should encode type parameters in paths like this one and
- we should also always encode parameter bounds in some form because there is no way to find out if they are needed for disambiguation without looking at other impls -- which we want to avoid. The bounds could be encoded in a numeric disambiguator though.
The consequences this has on symbol syntax should be small. We just have to find the best spot for adding parameter bounds.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should also always encode parameter bounds
I still think that's not ideal, and I'd prefer having a disambiguated path to the impl
and/or to the type parameters (either of which would be hidden in the non-verbose mode).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you give your reasons why having the path to the impl
is better than encoding the bounds? I assume because it's less complicated?
text/0000-symbol-name-mangling-v2.md
Outdated
struct Foo<T>(T); | ||
|
||
impl<T> Clone for Foo<T> { | ||
default fn clone<U>(_: U) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly here, with the extraneous <U>
.
text/0000-symbol-name-mangling-v2.md
Outdated
|
||
<path-root> := <crate-id> | ||
| M <type> | ||
| X <type> <abs-path> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bringing this comment up again: https://internals.rust-lang.org/t/pre-rfc-a-new-symbol-mangling-scheme/8501/4?u=rpjohnst. Would it make sense to move the trait's self type into its argument list? It reorders things from how they are displayed in error messages, but simplifies the grammar a bit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, we already treat <X as Trait<Y, Z>>
as sugar for Trait
applied with [X, Y, Z]
, there's no real reason to have it separate here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't forget about the suggestion but unfortunately, while implementing it, it turned out that it makes the demangler a lot more complicated -- at least if we want to stick to the <X as Trait>
demangling. If we mangle trait methods as foo::bar::Trait<SelfType, X, Y, Z>::method
, the demangler cannot know that it is dealing with a trait method when it starts demangling the path at foo
. It could only discover that when it gets to Trait
and would then have to rewind and store the already generated output (foo::bar::Trait
) on the heap, demangle the self-type, then copy back the trait path and continue demangling the trait's type arguments. It can only know that Trait
is a trait if we put a special marker on the identifier, so traits would again be special cased. As a consequence, I thought, if we have to special case traits one way are the other, we can as well do it in a way that allows for efficient demangling and doesn't need the extra kind of logic.
The situation would be different if we actually wanted to demangle trait methods to foo::bar::Trait<SelfType, X, Y, Z>::method
. But I don't think we want to do that, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, wait, an on-the-fly demangler needs to have everything in demangled order, right.
Is this only needed for <X as Trait<Y, Z>>
, or are there other "out of order" constructs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As far as I can tell <X as Trait<Y, Z>>
is the only case.
text/0000-symbol-name-mangling-v2.md
Outdated
``` | ||
|
||
|
||
### Items Within Specialized Trait Impls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Theoretically, you could also have stuff like this:
struct Foo<T>(T);
impl<T> Foo<T> where T: FnOnce() -> u32 {
fn foo() {
static ABC: u32 = 0;
}
}
impl<T> Foo<T> where T: FnOnce() -> f32 {
fn foo() {
static ABC: u32 = 0;
}
}
It is not supported by today's coherence, but it might be supported someday in the future.
I suppose that for now it is enough to also let this case use the <Foo<T>>'N
format for either or both impls.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the RFC proposes to use a numeric disambiguator for keeping the two impls apart -- until specialization is finalized, at which point the disambiguator would be replaced with something more human-readable, which probably amounts to an encoding of the where
clauses.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That code does not depend on specialization, as there is no overlap.
@m4b Let's discuss closures a bit. I want to get them fixed. The RFC proposes to demangle them as |
@bstrie Yes, I'm aware of these problems. I personally prefer to the indexing approach (I find C++'s |
I’m an end-user interested in cross-language interop, and I have some experience with implementation of the Itanium C++ ABI. I would like to provide a few notes on this RFC.
Thanks for listening. |
This can't handle all possible ABI-impacting details, only shallow ones, and on top of that, So to me, it seems like this would just increase symbol name size, without many (any?) benefits. |
text/0000-symbol-name-mangling-v2.md
Outdated
|
||
- A mangled symbol should be *decodable* to some degree. That is, it is desirable to be able to tell which exact concrete instance of e.g. a polymorphic function a given symbol identifies. This is true for external tools, backtraces, or just people only having the binary representation of some piece of code available to them. With the current scheme, this kind of information gets lost in the magical hash-suffix. | ||
|
||
- It should be possible to predict the symbol name for a given source-level construct. For example, given the definition `fn foo<T>() { ... }`, the scheme should allow to construct, by hand, the symbol names for e.g. `foo<u32>` or `foo<extern fn(i32, &mut SomeStruct<(char, &str)>, ...) -> !>()`. Since the current scheme generates its hash from the values of various compiler internal data structures, not even an alternative compiler implementation could predicate the symbol name, even for simple cases. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling pedantry: I think this should be predict
What justifies the additional complexity of the "does not itself add any new information" rule for node equivalence? Is this a microoptimization or does it make things easier to implement? |
text/0000-symbol-name-mangling-v2.md
Outdated
"j" | // RustInstrinsic | ||
"p" | // PlatformInstrinsic | ||
"u" // Unadjusted | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This all seems a bit arbitrary. Given that in principle there could be an unbounded number of ABIs, it seems like we should splurge on using a real string here rather than a single character. I'm also going to guess that these will be relatively rare, so space isn't a consideration?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd also favor encoding the ABI "string" (ideally as an identifier, replacing -
with _
, etc.)
This makes me wonder if Rust should've used extern(C) fn
syntax instead of extern "C" fn
, but it's too late now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I responded in #2603 (comment).
text/0000-symbol-name-mangling-v2.md
Outdated
"u" // Unadjusted | ||
) | ||
|
||
<disambiguator> = "s" [<base-62-digit>] "_" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this only a single digit? What if more than 62 things need disambiguation? I can imagine such things arising in generated code.
I'd propose {<base-62-digit>}
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Meta-nit: in a post-regex world, I find EBNF somewhat unintuitive: it took me a while to even notice that by {...}
you meant "replace ?
with *
", initially I thought you were talking about "{" ... "}"
.
cc @Centril (who started using "lyg
" syntax instead)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops, that's just a mistake in the grammar. It should be {<base-62-digit>}
indeed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I don't really care which notation is used :P
text/0000-symbol-name-mangling-v2.md
Outdated
|
||
<generic-arguments> = "I" {<type>} "E" | ||
|
||
<substitution> = "S" [<base-62-digit>] "_" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likewise seems safer to make this {...}
(notwithstanding other comments about compression).
text/0000-symbol-name-mangling-v2.md
Outdated
With this post-processing in place the Punycode strings can be treated like regular identifiers and need no further special handling. | ||
|
||
|
||
## Compression |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be very tempted to omit this kind of ad-hoc compression scheme in favour of using a standard algorithm like zstd
(say, zstd with a well-defined domain-specific dictionary). (cc @Cyan4973 - are there any examples of using zstd for per-symbol compression?)
Historically C++ demanglers have been very fragile, and I suspect a big part of that is due to the implementation complexity of the Itanium ABI compression mechanism.
Aside from the implementation issues, because this is so coupled with the definition of the mangling scheme itself, it means that any future evolution of mangling needs to also take compression into account. Using a completely separate compression layer makes this a non-issue. The other nice thing about making compression largely isolated from the rest of the encoding is that it means it can be added in a second pass as an extension once we have some experience with uncompressed mangling - maybe it wouldn't be so bad?
The main problem with using an external library is that any Rust demangler introduces another dependency. This is particularly worth considering when integrating Rust demangler support into other tools like binutils/llvm/perf/valgrind/etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we can come up with a simple compression scheme (i.e. refer back to the byte position where the first occurrence of something was encoded).
This would allow a demangler implementation to have 0 external dependencies, and the specification would also not implicitly depend on another standard.
It might also behave better than zstd
given the limitation of [a-zA-Z0-9_]
(which makes bit streams less appealing), and it has the advantage that any path component name is guaranteed to show up in clear.
However, I would not be opposed to at least having a compiler mangling option which disregards the [a-zA-Z0-9_]
limitation and which does the best compression it can, for use in situations where that might be advantageous (although at that point, you might be better off with symbol names just, say, hashes, and keep everything else in split debuginfo, and/or an ad-hoc mapping from hashes to symbol names).
Oh and should definitely gather data on all compression schemes we can think of (that are not too painful to implement), before we accept the RFC!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've listed the zstd
option as point 5 in Rational and Alternatives. I would be interested in seeing how zstd
performs. But it does come with some real downsides:
- Every demangler would have to support
zstd
. That's another dependency that not everyone might want to pull in. - The specification of the mangling scheme would depend on the specification of
zstd
. I see that there's an IETF RFC for it. That's good. But it's still rather heavyweight. - Mangled symbol would not retain any human-readability at all.
I think one of the next steps would be to collect a body of symbol names for testing different compression schemes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jsgf I do acknowledge, btw, that an AST-independent compression scheme is clearly beneficial when it comes to evolving the grammar.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@michaelwoerister Yes, I think extra dependencies and non-readability reasonable counter-arguments to using zstd.
(waving hands wildly) I'm assuming that we wouldn't bother compressing small symbols, so they would remain directly readable, and large symbols with any compression scheme would be such a soup that even if the compression scheme leaves some parts "in the clear" they're still not directly readable in any practical sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
zstd and similar bit-compression algorithms are not very suitable for compressing short strings at all, and encoding the compressed bit-stream into [a-zA-Z0-9]
(required by toolchains) would lose most of the compression again.
text/0000-symbol-name-mangling-v2.md
Outdated
### Punycode vs UTF-8 | ||
During the pre-RFC phase, it has been suggested that Unicode identifiers should be encoded as UTF-8 instead of Punycode on platforms that allow it. GCC, Clang, and MSVC seem to do this. The author of the RFC has a hard time making up their mind about this issue. Here are some interesting points that might influence the final decision: | ||
|
||
- Using UTF-8 instead of Punycode would make mangled strings containing non-ASCII identifiers a bit more human-readable. For demangled strings, there would be no difference. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is moot if compression (of any kind) is applied as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean because compressed names are unreadable in any case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right.
text/0000-symbol-name-mangling-v2.md
Outdated
|
||
### Methods | ||
|
||
Methods are nested within `impl` or `trait` items. As such it would be possible to construct their symbol names as paths like `my_crate::foo::{{impl}}::some_method` where `{{impl}}` somehow identifies the the `impl` in question. Since `impl`s don't have names, we'd have to use an indexing scheme like the one used for closures (and indeed, this is what the compiler does internally). Adding in generic arguments to, this would lead to symbol names looking like `my_crate::foo::impl'17::<u32, char>::some_method`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given that impl
s can appear anywhere within the crate, would the path be to the impl
itself, or to the type being impl
ed?
Do we need distinguish between different impl
s, or just impl
s with different constraints?
Given these questions, I think the proposal below to ignore impls themselves makes sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type being impl
ed doesn't have to be a path, it can be e.g. [u8]
, so I think the safest thing to do would be to have both a path to the impl
and the full type (and optionally trait) the impl
is for.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR proposes to not include the path of the impl
at all. @eddyb, you would rather demangle symbols to something like my_crate::foo::impl<u32, char>::some_method
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand what Self
and the Trait
are in that example.
What I'm thinking is mangling the equivalent information of e.g. my_crate::foo::impl'17<my_crate::foo::S as my_crate::Trait>::some_method
, demangling back to that only in verbose mode, but only showing <my_crate::foo::S as my_crate::Trait>::some_method
in the "user-friendly" mode.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, yes that's what I thought you meant.
@zackw +1 on most of your points, but I think for 2. to matter it would mean that Rust compilation would have to change a lot. In practice with Rust code, one never sees linker errors for Rust symbols. |
Huzzah! This RFC has been merged! Tracking issue: rust-lang/rust#60705 |
Introduce Rust symbol mangling scheme. This is an implementation of a "feature-complete" Rust mangling scheme, in the vein of rust-lang/rfcs#2603 ~~- but with some differences, see rust-lang/rfcs#2603 (comment) for details~~ (@michaelwoerister integrated my proposed changes into the RFC itself). On nightly, you can now control the mangling scheme with `-Z symbol-mangling-version`, which can be: * `legacy`: the older mangling version, still the default currently * `v0`: the new RFC mangling version, as implemented by this PR To test the new mangling, set `RUSTFLAGS=-Zsymbol-mangling-version=v0` (or change [`rustflags` in `.cargo/config.toml`](https://doc.rust-lang.org/cargo/reference/config.html#configuration-keys)). Please note that only symbols from crates built with that flag will use the new mangling, and that tool support (e.g. debuggers) will be limited initially, and it may take a while for everything to be upstreamed. However, `RUST_BACKTRACE` should work out of the box with either mangling version. <hr/> The demangling implementation PR is rust-lang/rustc-demangle#23 ~~(this PR already uses it via a git dependency, to allow testing)~~. Discussion of the *design* of the mangling scheme should still happen on the RFC, but this PR's specific implementation details can be reviewed in parallel. *Notes for reviewers*: * ~~only the last 6 commits are specific to this branch, if necessary I can open a separate PR for everything else (it was meant to be its own small refactoring, but it got a bit out of hand)~~ ~~based on #58140~~ * the "harness" commit is only there because it does some extra validation (comparing the demangling from `rustc-demangle` to the compiler's pretty-printing, adjusted slightly to produce the same output), that I would like to try on crater * ~~there is the question of whether we should turn on the new mangling now, wait for tools to support it (I'm working on that), and/or have it under a `-Z` flag for now~~ (we're gating this on `-Z symbol-mangling-version=v0`, see above) r? @nikomatsakis / @michaelwoerister cc @rust-lang/compiler
So, related to the ABI discussion above, I have a question. Using this name mangling scheme, should it be possible to link Rust code to other Rust code while going through the existing C ABI, while preserving modules and other niceties? |
@Serentty Nope, and the mangling doesn't matter at all there - if you have a working module system, that means you need extra information (as found in If you want to link plain object files and still retain high-level features... well, that's both not planned but also technically implausible (without coming up with some special cut-down version of those features). |
So the RLIB files serve as Rust headers, essentially? That sounds reasonable. |
Updating the RFC's "v2" to "v0" as per rust-lang/rust#57967 (comment) (should've done it back then). |
Replace #2603's (Rust Symbol Mangling) "v2" with "v0".
Change very first ›Rendered‹-Link to https://github.com/rust-lang/rfcs/blob/master/text/2603-rust-symbol-name-mangling-v0.md |
This is the libiberty (mainly for binutils/gdb) counterpart of rust-lang/rustc-demangle#23. Relevant links for the new Rust mangling scheme (aka "v0"): * Rust RFC: rust-lang/rfcs#2603 * tracking issue: rust-lang/rust#60705 * implementation: rust-lang/rust#57967 This implementation includes full support for UTF-8 identifiers via punycode, so I've included a testcase for that as well. libiberty/ChangeLog: * rust-demangle.c (struct rust_demangler): Add skipping_printing and bound_lifetime_depth fields. (eat): Add (v0-only). (parse_integer_62): Add (v0-only). (parse_opt_integer_62): Add (v0-only). (parse_disambiguator): Add (v0-only). (struct rust_mangled_ident): Add punycode{,_len} fields. (parse_ident): Support v0 identifiers. (print_str): Respect skipping_printing. (print_uint64): Add (v0-only). (print_uint64_hex): Add (v0-only). (print_ident): Respect skipping_printing, Support v0 identifiers. (print_lifetime_from_index): Add (v0-only). (demangle_binder): Add (v0-only). (demangle_path): Add (v0-only). (demangle_generic_arg): Add (v0-only). (demangle_type): Add (v0-only). (demangle_path_maybe_open_generics): Add (v0-only). (demangle_dyn_trait): Add (v0-only). (demangle_const): Add (v0-only). (demangle_const_uint): Add (v0-only). (basic_type): Add (v0-only). (rust_demangle_callback): Support v0 symbols. * testsuite/rust-demangle-expected: Add v0 testcases.
This is the libiberty (mainly for binutils/gdb) counterpart of rust-lang/rustc-demangle#23. Relevant links for the new Rust mangling scheme (aka "v0"): * Rust RFC: rust-lang/rfcs#2603 * tracking issue: rust-lang/rust#60705 * implementation: rust-lang/rust#57967 This implementation includes full support for UTF-8 identifiers via punycode, so I've included a testcase for that as well. libiberty/ChangeLog 2021-01-16 Eduard-Mihai Burtescu <eddyb@lyken.rs> * rust-demangle.c (struct rust_demangler): Add skipping_printing and bound_lifetime_depth fields. (eat): Add (v0-only). (parse_integer_62): Add (v0-only). (parse_opt_integer_62): Add (v0-only). (parse_disambiguator): Add (v0-only). (struct rust_mangled_ident): Add punycode{,_len} fields. (parse_ident): Support v0 identifiers. (print_str): Respect skipping_printing. (print_uint64): Add (v0-only). (print_uint64_hex): Add (v0-only). (print_ident): Respect skipping_printing, Support v0 identifiers. (print_lifetime_from_index): Add (v0-only). (demangle_binder): Add (v0-only). (demangle_path): Add (v0-only). (demangle_generic_arg): Add (v0-only). (demangle_type): Add (v0-only). (demangle_path_maybe_open_generics): Add (v0-only). (demangle_dyn_trait): Add (v0-only). (demangle_const): Add (v0-only). (demangle_const_uint): Add (v0-only). (basic_type): Add (v0-only). (rust_demangle_callback): Support v0 symbols. * testsuite/rust-demangle-expected: Add v0 testcases.
Since 2016-11-16 c++filt [1] recognizes rust legacy demangling and will supports newer one(v0 name mangling) [2] [3], so it would be better choice. [1]: https://sourceware.org/binutils/docs/binutils/c_002b_002bfilt.html [2]: rust-lang/rfcs#2603 [3]: https://sourceware.org/bugzilla/show_bug.cgi?id=27194
Rendered
Tracking issue
Reference Implementation
Pre-RFC
Summary
This RFC proposes a new mangling scheme that describes what the symbol names generated by the Rust compiler. This new scheme has a number of advantages over the existing one which has grown over time without a clear direction. The new scheme is consistent, does not depend on compiler internals, and the information it stores in symbol names can be decoded again which provides an improved experience for users of external tools that work with Rust symbol names. The new scheme is based on the name mangling scheme from the [Itanium C++ ABI][itanium-mangling].
Motivation
Due to its ad-hoc nature, the compiler's current name mangling scheme has a
number of drawbacks:
.
characters which is not generally supported on all platforms. [1][2][3]The proposed scheme solves these problems:
A-Z
,a-z
,0-9
, and_
.This should make it easier for third party tools to work with Rust binaries.