Module rustc_trans::back::symbol_names [] [src]

Unstable (rustc_private)

The Rust Linkage Model and Symbol Names

The semantic model of Rust linkage is, broadly, that "there's no global namespace" between crates. Our aim is to preserve the illusion of this model despite the fact that it's not quite possible to implement on modern linkers. We initially didn't use system linkers at all, but have been convinced of their utility.

There are a few issues to handle:

In order to fulfill the above requirements the following scheme is used by the compiler:

The main tool for avoiding naming conflicts is the incorporation of a 64-bit hash value into every exported symbol name. Anything that makes a difference to the symbol being named, but does not show up in the regular path needs to be fed into this hash:

The two measures described above suffice to avoid intra-crate conflicts. In order to also avoid inter-crate conflicts two more measures are taken:

A note on symbol name stability

Previous versions of the compiler resorted to feeding NodeIds into the symbol hash in order to disambiguate between items with the same path. The current version of the name generation algorithm takes great care not to do that, since NodeIds are notoriously unstable: A small change to the code base will offset all NodeIds after the change and thus, much as using the SVH in the hash, invalidate an unbounded number of symbol names. This makes re-using previously compiled code for incremental compilation virtually impossible. Thus, symbol hash generation exclusively relies on DefPaths which are much more robust in the face of changes to the code base.

Functions

def_id_to_string [Unstable]
def_path_to_string [Unstable]
exported_name [Unstable]
exported_name_with_suffix [Unstable]
internal_name_from_type_and_suffix [Unstable]

Only symbols that are invisible outside their compilation unit should use a name generated by this function.

mangle [Unstable]
sanitize [Unstable]