2015-10-18 16:32:50 -05:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-10-21 11:59:24 -05:00
|
|
|
// rsbegin.o and rsend.o are the so called "compiler runtime startup objects".
|
|
|
|
// They contain code needed to correctly initialize the compiler runtime.
|
|
|
|
//
|
|
|
|
// When an executable or dylib image is linked, all user code and libraries are
|
|
|
|
// "sandwiched" between these two object files, so code or data from rsbegin.o
|
|
|
|
// become first in the respective sections of the image, whereas code and data
|
|
|
|
// from rsend.o become the last ones. This effect can be used to place symbols
|
|
|
|
// at the beginning or at the end of a section, as well as to insert any required
|
|
|
|
// headers or footers.
|
|
|
|
//
|
|
|
|
// Note that the actual module entry point is located in the C runtime startup
|
|
|
|
// object (usually called `crtX.o), which then invokes initialization callbacks
|
|
|
|
// of other runtime components (registered via yet another special image section).
|
|
|
|
|
2016-09-13 00:40:14 -05:00
|
|
|
#![feature(no_core, lang_items)]
|
2015-10-18 16:32:50 -05:00
|
|
|
#![crate_type="rlib"]
|
2016-09-13 00:40:14 -05:00
|
|
|
#![no_core]
|
2015-10-18 16:32:50 -05:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2016-09-13 00:40:14 -05:00
|
|
|
#[lang = "sized"]
|
|
|
|
trait Sized {}
|
|
|
|
#[lang = "sync"]
|
|
|
|
trait Sync {}
|
|
|
|
#[lang = "copy"]
|
|
|
|
trait Copy {}
|
|
|
|
impl<T> Sync for T {}
|
|
|
|
|
2015-10-18 16:32:50 -05:00
|
|
|
#[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))]
|
2016-05-29 10:34:21 -05:00
|
|
|
pub mod eh_frames {
|
2015-10-18 16:32:50 -05:00
|
|
|
#[no_mangle]
|
|
|
|
#[link_section = ".eh_frame"]
|
2015-10-21 11:59:24 -05:00
|
|
|
// Marks beginning of the stack frame unwind info section
|
2015-10-18 16:32:50 -05:00
|
|
|
pub static __EH_FRAME_BEGIN__: [u8; 0] = [];
|
|
|
|
|
|
|
|
// Scratch space for unwinder's internal book-keeping.
|
|
|
|
// This is defined as `struct object` in $GCC/libgcc/unwind-dw2-fde.h.
|
|
|
|
static mut obj: [isize; 6] = [0; 6];
|
|
|
|
|
2015-10-21 11:59:24 -05:00
|
|
|
// Unwind info registration/deregistration routines.
|
|
|
|
// See the docs of `unwind` module in libstd.
|
2016-05-29 10:34:21 -05:00
|
|
|
extern "C" {
|
2015-10-18 16:32:50 -05:00
|
|
|
fn rust_eh_register_frames(eh_frame_begin: *const u8, object: *mut u8);
|
|
|
|
fn rust_eh_unregister_frames(eh_frame_begin: *const u8, object: *mut u8);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn init() {
|
2015-10-21 11:59:24 -05:00
|
|
|
// register unwind info on module startup
|
2015-10-18 16:32:50 -05:00
|
|
|
rust_eh_register_frames(&__EH_FRAME_BEGIN__ as *const u8,
|
|
|
|
&mut obj as *mut _ as *mut u8);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn uninit() {
|
2015-10-21 11:59:24 -05:00
|
|
|
// unregister on shutdown
|
2015-10-18 16:32:50 -05:00
|
|
|
rust_eh_unregister_frames(&__EH_FRAME_BEGIN__ as *const u8,
|
|
|
|
&mut obj as *mut _ as *mut u8);
|
|
|
|
}
|
|
|
|
|
2015-10-21 11:59:24 -05:00
|
|
|
// MSVC-specific init/uninit routine registration
|
2016-05-29 10:34:21 -05:00
|
|
|
pub mod ms_init {
|
2015-10-18 16:32:50 -05:00
|
|
|
// .CRT$X?? sections are roughly analogous to ELF's .init_array and .fini_array,
|
|
|
|
// except that they exploit the fact that linker will sort them alphabitically,
|
|
|
|
// so e.g. sections with names between .CRT$XIA and .CRT$XIZ are guaranteed to be
|
|
|
|
// placed between those two, without requiring any ordering of objects on the linker
|
|
|
|
// command line.
|
|
|
|
// Note that ordering of same-named sections from different objects is not guaranteed.
|
|
|
|
// Since .CRT$XIA contains init array's header symbol, which must always come first,
|
|
|
|
// we place our initialization callback into .CRT$XIB.
|
|
|
|
|
|
|
|
#[link_section = ".CRT$XIB"] // .CRT$XI? : C initialization callbacks
|
|
|
|
pub static P_INIT: unsafe fn() = super::init;
|
|
|
|
|
|
|
|
#[link_section = ".CRT$XTY"] // .CRT$XT? : C termination callbacks
|
|
|
|
pub static P_UNINIT: unsafe fn() = super::uninit;
|
|
|
|
}
|
|
|
|
}
|