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