2019-01-02 21:23:45 +00:00
|
|
|
fn main() {
|
|
|
|
// Pull in jemalloc when enabled.
|
|
|
|
//
|
|
|
|
// Note that we're pulling in a static copy of jemalloc which means that to
|
|
|
|
// pull it in we need to actually reference its symbols for it to get
|
|
|
|
// linked. The two crates we link to here, std and rustc_driver, are both
|
2021-03-06 03:46:29 +00:00
|
|
|
// dynamic libraries. That means to pull in jemalloc we actually need to
|
2019-01-02 21:23:45 +00:00
|
|
|
// reference allocation symbols one way or another (as this file is the only
|
|
|
|
// object code in the rustc executable).
|
|
|
|
#[cfg(feature = "jemalloc-sys")]
|
|
|
|
{
|
2019-12-22 22:42:04 +00:00
|
|
|
use std::os::raw::{c_int, c_void};
|
2015-11-19 23:20:12 +00:00
|
|
|
|
2019-01-02 21:23:45 +00:00
|
|
|
#[used]
|
2019-12-22 22:42:04 +00:00
|
|
|
static _F1: unsafe extern "C" fn(usize, usize) -> *mut c_void = jemalloc_sys::calloc;
|
2019-01-02 21:23:45 +00:00
|
|
|
#[used]
|
2019-12-22 22:42:04 +00:00
|
|
|
static _F2: unsafe extern "C" fn(*mut *mut c_void, usize, usize) -> c_int =
|
2019-01-02 21:23:45 +00:00
|
|
|
jemalloc_sys::posix_memalign;
|
|
|
|
#[used]
|
2019-12-22 22:42:04 +00:00
|
|
|
static _F3: unsafe extern "C" fn(usize, usize) -> *mut c_void = jemalloc_sys::aligned_alloc;
|
2019-01-02 21:23:45 +00:00
|
|
|
#[used]
|
2019-12-22 22:42:04 +00:00
|
|
|
static _F4: unsafe extern "C" fn(usize) -> *mut c_void = jemalloc_sys::malloc;
|
2019-01-02 21:23:45 +00:00
|
|
|
#[used]
|
2019-12-22 22:42:04 +00:00
|
|
|
static _F5: unsafe extern "C" fn(*mut c_void, usize) -> *mut c_void = jemalloc_sys::realloc;
|
2019-01-02 21:23:45 +00:00
|
|
|
#[used]
|
2019-12-22 22:42:04 +00:00
|
|
|
static _F6: unsafe extern "C" fn(*mut c_void) = jemalloc_sys::free;
|
2021-02-28 19:50:03 +00:00
|
|
|
|
|
|
|
// On OSX, jemalloc doesn't directly override malloc/free, but instead
|
|
|
|
// registers itself with the allocator's zone APIs in a ctor. However,
|
|
|
|
// the linker doesn't seem to consider ctors as "used" when statically
|
|
|
|
// linking, so we need to explicitly depend on the function.
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
{
|
|
|
|
extern "C" {
|
|
|
|
fn _rjem_je_zone_register();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[used]
|
2021-03-05 12:12:02 +00:00
|
|
|
static _F7: unsafe extern "C" fn() = _rjem_je_zone_register;
|
2021-02-28 19:50:03 +00:00
|
|
|
}
|
2019-01-02 21:23:45 +00:00
|
|
|
}
|
2018-12-19 16:27:23 +00:00
|
|
|
|
2018-04-10 22:55:41 +00:00
|
|
|
rustc_driver::set_sigpipe_handler();
|
|
|
|
rustc_driver::main()
|
|
|
|
}
|