]> git.lizzy.rs Git - rust.git/blob - src/libpanic_unwind/lib.rs
2089a02083c59a4d1855950d6d0e531231a21614
[rust.git] / src / libpanic_unwind / lib.rs
1 //! Implementation of panics via stack unwinding
2 //!
3 //! This crate is an implementation of panics in Rust using "most native" stack
4 //! unwinding mechanism of the platform this is being compiled for. This
5 //! essentially gets categorized into three buckets currently:
6 //!
7 //! 1. MSVC targets use SEH in the `seh.rs` file.
8 //! 2. The 64-bit MinGW target half-uses SEH and half-use gcc-like information
9 //!    in the `seh64_gnu.rs` module.
10 //! 3. All other targets use libunwind/libgcc in the `gcc/mod.rs` module.
11 //!
12 //! More documentation about each implementation can be found in the respective
13 //! module.
14
15 #![no_std]
16 #![unstable(feature = "panic_unwind", issue = "32837")]
17 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
18        issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
19
20 #![feature(core_intrinsics)]
21 #![feature(lang_items)]
22 #![feature(libc)]
23 #![feature(nll)]
24 #![feature(panic_unwind)]
25 #![feature(raw)]
26 #![feature(staged_api)]
27 #![feature(std_internals)]
28 #![feature(unwind_attributes)]
29
30 #![panic_runtime]
31 #![feature(panic_runtime)]
32
33 use alloc::boxed::Box;
34 use core::intrinsics;
35 use core::mem;
36 use core::raw;
37 use core::panic::BoxMeUp;
38
39 cfg_if::cfg_if! {
40     if #[cfg(target_os = "emscripten")] {
41         #[path = "emcc.rs"]
42         mod imp;
43     } else if #[cfg(target_arch = "wasm32")] {
44         #[path = "dummy.rs"]
45         mod imp;
46     } else if #[cfg(target_os = "hermit")] {
47         #[path = "hermit.rs"]
48         mod imp;
49     } else if #[cfg(all(target_env = "msvc", target_arch = "aarch64"))] {
50         #[path = "dummy.rs"]
51         mod imp;
52     } else if #[cfg(target_env = "msvc")] {
53         #[path = "seh.rs"]
54         mod imp;
55     } else if #[cfg(all(windows, target_arch = "x86_64", target_env = "gnu"))] {
56         #[path = "seh64_gnu.rs"]
57         mod imp;
58     } else {
59         // Rust runtime's startup objects depend on these symbols, so make them public.
60         #[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))]
61         pub use imp::eh_frame_registry::*;
62         #[path = "gcc.rs"]
63         mod imp;
64     }
65 }
66
67 mod dwarf;
68 mod windows;
69
70 // Entry point for catching an exception, implemented using the `try` intrinsic
71 // in the compiler.
72 //
73 // The interaction between the `payload` function and the compiler is pretty
74 // hairy and tightly coupled, for more information see the compiler's
75 // implementation of this.
76 #[no_mangle]
77 pub unsafe extern "C" fn __rust_maybe_catch_panic(f: fn(*mut u8),
78                                                   data: *mut u8,
79                                                   data_ptr: *mut usize,
80                                                   vtable_ptr: *mut usize)
81                                                   -> u32 {
82     let mut payload = imp::payload();
83     if intrinsics::r#try(f, data, &mut payload as *mut _ as *mut _) == 0 {
84         0
85     } else {
86         let obj = mem::transmute::<_, raw::TraitObject>(imp::cleanup(payload));
87         *data_ptr = obj.data as usize;
88         *vtable_ptr = obj.vtable as usize;
89         1
90     }
91 }
92
93 // Entry point for raising an exception, just delegates to the platform-specific
94 // implementation.
95 #[no_mangle]
96 #[unwind(allowed)]
97 pub unsafe extern "C" fn __rust_start_panic(payload: usize) -> u32 {
98     let payload = payload as *mut &mut dyn BoxMeUp;
99     imp::panic(Box::from_raw((*payload).box_me_up()))
100 }