]> git.lizzy.rs Git - rust.git/blob - library/panic_unwind/src/lib.rs
Merge commit 'f4850f7292efa33759b4f7f9b7621268979e9914' into clippyup
[rust.git] / library / panic_unwind / src / 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. Emscripten uses C++ exceptions in the `emcc.rs` file.
9 //! 3. All other targets use libunwind/libgcc in the `gcc.rs` file.
10 //!
11 //! More documentation about each implementation can be found in the respective
12 //! module.
13
14 #![no_std]
15 #![unstable(feature = "panic_unwind", issue = "32837")]
16 #![doc(issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
17 #![feature(core_intrinsics)]
18 #![feature(lang_items)]
19 #![feature(panic_unwind)]
20 #![feature(staged_api)]
21 #![feature(std_internals)]
22 #![feature(abi_thiscall)]
23 #![feature(rustc_attrs)]
24 #![panic_runtime]
25 #![feature(panic_runtime)]
26 #![feature(c_unwind)]
27 // `real_imp` is unused with Miri, so silence warnings.
28 #![cfg_attr(miri, allow(dead_code))]
29
30 use alloc::boxed::Box;
31 use core::any::Any;
32 use core::panic::BoxMeUp;
33
34 cfg_if::cfg_if! {
35     if #[cfg(target_os = "emscripten")] {
36         #[path = "emcc.rs"]
37         mod real_imp;
38     } else if #[cfg(target_os = "hermit")] {
39         #[path = "hermit.rs"]
40         mod real_imp;
41     } else if #[cfg(target_os = "l4re")] {
42         // L4Re is unix family but does not yet support unwinding.
43         #[path = "dummy.rs"]
44         mod real_imp;
45     } else if #[cfg(all(target_env = "msvc", not(target_arch = "arm")))] {
46         // LLVM does not support unwinding on 32 bit ARM msvc (thumbv7a-pc-windows-msvc)
47         #[path = "seh.rs"]
48         mod real_imp;
49     } else if #[cfg(any(
50         all(target_family = "windows", target_env = "gnu"),
51         target_os = "psp",
52         target_os = "solid_asp3",
53         all(target_family = "unix", not(target_os = "espidf")),
54         all(target_vendor = "fortanix", target_env = "sgx"),
55     ))] {
56         #[path = "gcc.rs"]
57         mod real_imp;
58     } else {
59         // Targets that don't support unwinding.
60         // - family=wasm
61         // - os=none ("bare metal" targets)
62         // - os=uefi
63         // - os=espidf
64         // - nvptx64-nvidia-cuda
65         // - arch=avr
66         #[path = "dummy.rs"]
67         mod real_imp;
68     }
69 }
70
71 cfg_if::cfg_if! {
72     if #[cfg(miri)] {
73         // Use the Miri runtime.
74         // We still need to also load the normal runtime above, as rustc expects certain lang
75         // items from there to be defined.
76         #[path = "miri.rs"]
77         mod imp;
78     } else {
79         // Use the real runtime.
80         use real_imp as imp;
81     }
82 }
83
84 extern "C" {
85     /// Handler in libstd called when a panic object is dropped outside of
86     /// `catch_unwind`.
87     fn __rust_drop_panic() -> !;
88
89     /// Handler in libstd called when a foreign exception is caught.
90     fn __rust_foreign_exception() -> !;
91 }
92
93 #[rustc_std_internal_symbol]
94 #[allow(improper_ctypes_definitions)]
95 pub unsafe extern "C" fn __rust_panic_cleanup(payload: *mut u8) -> *mut (dyn Any + Send + 'static) {
96     Box::into_raw(imp::cleanup(payload))
97 }
98
99 // Entry point for raising an exception, just delegates to the platform-specific
100 // implementation.
101 #[rustc_std_internal_symbol]
102 pub unsafe fn __rust_start_panic(payload: *mut &mut dyn BoxMeUp) -> u32 {
103     let payload = Box::from_raw((*payload).take_box());
104
105     imp::panic(payload)
106 }