]> git.lizzy.rs Git - rust.git/commit
auto merge of #14293 : alexcrichton/rust/weak-lang-items, r=brson
authorbors <bors@rust-lang.org>
Wed, 21 May 2014 04:36:25 +0000 (21:36 -0700)
committerbors <bors@rust-lang.org>
Wed, 21 May 2014 04:36:25 +0000 (21:36 -0700)
commitfeb9f302ca52b8105ad6641a3bf2646cd26d1434
treec863974ef4b9591c3745dff8bca3febedfcf8e28
parentf30382d624d4a523262df05234b1c20b7de4ac0c
parent6efd16629c695e5ab6575ac5a0593b264cdfe04b
auto merge of #14293 : alexcrichton/rust/weak-lang-items, r=brson

This commit is part of the ongoing libstd facade efforts (cc #13851). The
compiler now recognizes some language items as "extern { fn foo(...); }" and
will automatically perform the following actions:

1. The foreign function has a pre-defined name.
2. The crate and downstream crates can only be built as rlibs until a crate
   defines the lang item itself.
3. The actual lang item has a pre-defined name.

This is essentially nicer compiler support for the hokey
core-depends-on-std-failure scheme today, but it is implemented the same way.
The details are a little more hidden under the covers.

In addition to failure, this commit promotes the eh_personality and
rust_stack_exhausted functions to official lang items. The compiler can generate
calls to these functions, causing linkage errors if they are left undefined. The
checking for these items is not as precise as it could be. Crates compiling with
`-Z no-landing-pads` will not need the eh_personality lang item, and crates
compiling with no split stacks won't need the stack exhausted lang item. For
ease, however, these items are checked for presence in all final outputs of the
compiler.

It is quite easy to define dummy versions of the functions necessary:

    #[lang = "stack_exhausted"]
    extern fn stack_exhausted() { /* ... */ }

    #[lang = "eh_personality"]
    extern fn eh_personality() { /* ... */ }

cc #11922, rust_stack_exhausted is now a lang item
cc #13851, libcollections is blocked on eh_personality becoming weak