]> git.lizzy.rs Git - rust.git/blob - src/libpanic_abort/lib.rs
Add x86_64-fortanix-unknown-sgx target to libstd and dependencies
[rust.git] / src / libpanic_abort / lib.rs
1 // Copyright 2016 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 //! Implementation of Rust panics via process aborts
12 //!
13 //! When compared to the implementation via unwinding, this crate is *much*
14 //! simpler! That being said, it's not quite as versatile, but here goes!
15
16 #![no_std]
17 #![unstable(feature = "panic_abort", issue = "32837")]
18 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
19        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
20        html_root_url = "https://doc.rust-lang.org/nightly/",
21        issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
22 #![panic_runtime]
23 #![allow(unused_features)]
24
25 #![feature(core_intrinsics)]
26 #![feature(libc)]
27 #![feature(nll)]
28 #![feature(panic_runtime)]
29 #![feature(staged_api)]
30 #![feature(rustc_attrs)]
31
32 // Rust's "try" function, but if we're aborting on panics we just call the
33 // function as there's nothing else we need to do here.
34 #[rustc_std_internal_symbol]
35 pub unsafe extern fn __rust_maybe_catch_panic(f: fn(*mut u8),
36                                               data: *mut u8,
37                                               _data_ptr: *mut usize,
38                                               _vtable_ptr: *mut usize) -> u32 {
39     f(data);
40     0
41 }
42
43 // "Leak" the payload and shim to the relevant abort on the platform in
44 // question.
45 //
46 // For Unix we just use `abort` from libc as it'll trigger debuggers, core
47 // dumps, etc, as one might expect. On Windows, however, the best option we have
48 // is the `__fastfail` intrinsics, but that's unfortunately not defined in LLVM,
49 // and the `RaiseFailFastException` function isn't available until Windows 7
50 // which would break compat with XP. For now just use `intrinsics::abort` which
51 // will kill us with an illegal instruction, which will do a good enough job for
52 // now hopefully.
53 #[rustc_std_internal_symbol]
54 pub unsafe extern fn __rust_start_panic(_payload: usize) -> u32 {
55     abort();
56
57     #[cfg(any(unix, target_os = "cloudabi"))]
58     unsafe fn abort() -> ! {
59         extern crate libc;
60         libc::abort();
61     }
62
63     #[cfg(any(target_os = "redox",
64               windows,
65               all(target_arch = "wasm32", not(target_os = "emscripten"))))]
66     unsafe fn abort() -> ! {
67         core::intrinsics::abort();
68     }
69
70     #[cfg(target_env="sgx")]
71     unsafe fn abort() -> ! {
72         extern "C" { pub fn panic_exit() -> !; }
73         panic_exit();
74     }
75 }
76
77 // This... is a bit of an oddity. The tl;dr; is that this is required to link
78 // correctly, the longer explanation is below.
79 //
80 // Right now the binaries of libcore/libstd that we ship are all compiled with
81 // `-C panic=unwind`. This is done to ensure that the binaries are maximally
82 // compatible with as many situations as possible. The compiler, however,
83 // requires a "personality function" for all functions compiled with `-C
84 // panic=unwind`. This personality function is hardcoded to the symbol
85 // `rust_eh_personality` and is defined by the `eh_personality` lang item.
86 //
87 // So... why not just define that lang item here? Good question! The way that
88 // panic runtimes are linked in is actually a little subtle in that they're
89 // "sort of" in the compiler's crate store, but only actually linked if another
90 // isn't actually linked. This ends up meaning that both this crate and the
91 // panic_unwind crate can appear in the compiler's crate store, and if both
92 // define the `eh_personality` lang item then that'll hit an error.
93 //
94 // To handle this the compiler only requires the `eh_personality` is defined if
95 // the panic runtime being linked in is the unwinding runtime, and otherwise
96 // it's not required to be defined (rightfully so). In this case, however, this
97 // library just defines this symbol so there's at least some personality
98 // somewhere.
99 //
100 // Essentially this symbol is just defined to get wired up to libcore/libstd
101 // binaries, but it should never be called as we don't link in an unwinding
102 // runtime at all.
103 pub mod personalities {
104     #[no_mangle]
105     #[cfg(not(any(
106         all(
107             target_arch = "wasm32",
108             not(target_os = "emscripten"),
109         ),
110         all(
111             target_os = "windows",
112             target_env = "gnu",
113             target_arch = "x86_64",
114         ),
115     )))]
116     pub extern fn rust_eh_personality() {}
117
118     // On x86_64-pc-windows-gnu we use our own personality function that needs
119     // to return `ExceptionContinueSearch` as we're passing on all our frames.
120     #[no_mangle]
121     #[cfg(all(target_os = "windows",
122               target_env = "gnu",
123               target_arch = "x86_64"))]
124     pub extern fn rust_eh_personality(_record: usize,
125                                       _frame: usize,
126                                       _context: usize,
127                                       _dispatcher: usize) -> u32 {
128         1 // `ExceptionContinueSearch`
129     }
130
131     // Similar to above, this corresponds to the `eh_unwind_resume` lang item
132     // that's only used on Windows currently.
133     //
134     // Note that we don't execute landing pads, so this is never called, so it's
135     // body is empty.
136     #[no_mangle]
137     #[cfg(all(target_os = "windows", target_env = "gnu"))]
138     pub extern fn rust_eh_unwind_resume() {}
139
140     // These two are called by our startup objects on i686-pc-windows-gnu, but
141     // they don't need to do anything so the bodies are nops.
142     #[no_mangle]
143     #[cfg(all(target_os = "windows", target_env = "gnu", target_arch = "x86"))]
144     pub extern fn rust_eh_register_frames() {}
145     #[no_mangle]
146     #[cfg(all(target_os = "windows", target_env = "gnu", target_arch = "x86"))]
147     pub extern fn rust_eh_unregister_frames() {}
148 }