]> git.lizzy.rs Git - rust.git/blob - src/rtstartup/rsbegin.rs
Rollup merge of #41456 - jessicah:haiku-support, r=alexcrichton
[rust.git] / src / rtstartup / rsbegin.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // rsbegin.o and rsend.o are the so called "compiler runtime startup objects".
12 // They contain code needed to correctly initialize the compiler runtime.
13 //
14 // When an executable or dylib image is linked, all user code and libraries are
15 // "sandwiched" between these two object files, so code or data from rsbegin.o
16 // become first in the respective sections of the image, whereas code and data
17 // from rsend.o become the last ones.  This effect can be used to place symbols
18 // at the beginning or at the end of a section, as well as to insert any required
19 // headers or footers.
20 //
21 // Note that the actual module entry point is located in the C runtime startup
22 // object (usually called `crtX.o), which then invokes initialization callbacks
23 // of other runtime components (registered via yet another special image section).
24
25 #![feature(no_core, lang_items, optin_builtin_traits)]
26 #![crate_type="rlib"]
27 #![no_core]
28 #![allow(non_camel_case_types)]
29
30 #[lang = "sized"]
31 trait Sized {}
32 #[lang = "sync"]
33 trait Sync {}
34 impl Sync for .. {}
35 #[lang = "copy"]
36 trait Copy {}
37 #[cfg_attr(not(stage0), lang = "freeze")]
38 trait Freeze {}
39 impl Freeze for .. {}
40
41 #[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))]
42 pub mod eh_frames {
43     #[no_mangle]
44     #[link_section = ".eh_frame"]
45     // Marks beginning of the stack frame unwind info section
46     pub static __EH_FRAME_BEGIN__: [u8; 0] = [];
47
48     // Scratch space for unwinder's internal book-keeping.
49     // This is defined as `struct object` in $GCC/libgcc/unwind-dw2-fde.h.
50     static mut OBJ: [isize; 6] = [0; 6];
51
52     // Unwind info registration/deregistration routines.
53     // See the docs of `unwind` module in libstd.
54     extern "C" {
55         fn rust_eh_register_frames(eh_frame_begin: *const u8, object: *mut u8);
56         fn rust_eh_unregister_frames(eh_frame_begin: *const u8, object: *mut u8);
57     }
58
59     unsafe fn init() {
60         // register unwind info on module startup
61         rust_eh_register_frames(&__EH_FRAME_BEGIN__ as *const u8,
62                                 &mut OBJ as *mut _ as *mut u8);
63     }
64
65     unsafe fn uninit() {
66         // unregister on shutdown
67         rust_eh_unregister_frames(&__EH_FRAME_BEGIN__ as *const u8,
68                                   &mut OBJ as *mut _ as *mut u8);
69     }
70
71     // MSVC-specific init/uninit routine registration
72     pub mod ms_init {
73         // .CRT$X?? sections are roughly analogous to ELF's .init_array and .fini_array,
74         // except that they exploit the fact that linker will sort them alphabitically,
75         // so e.g. sections with names between .CRT$XIA and .CRT$XIZ are guaranteed to be
76         // placed between those two, without requiring any ordering of objects on the linker
77         // command line.
78         // Note that ordering of same-named sections from different objects is not guaranteed.
79         // Since .CRT$XIA contains init array's header symbol, which must always come first,
80         // we place our initialization callback into .CRT$XIB.
81
82         #[link_section = ".CRT$XIB"] // .CRT$XI? : C initialization callbacks
83         pub static P_INIT: unsafe fn() = super::init;
84
85         #[link_section = ".CRT$XTY"] // .CRT$XT? : C termination callbacks
86         pub static P_UNINIT: unsafe fn() = super::uninit;
87     }
88 }