]> git.lizzy.rs Git - rust.git/blob - src/libpanic_unwind/lib.rs
Add transpose conversions for Option and Result
[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 #![deny(warnings)]
32
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(unwind_attributes)]
41 #![cfg_attr(target_env = "msvc", feature(raw))]
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 core::intrinsics;
52 use core::mem;
53 use core::raw;
54
55 // Rust runtime's startup objects depend on these symbols, so make them public.
56 #[cfg(all(target_os="windows", target_arch = "x86", target_env="gnu"))]
57 pub use imp::eh_frame_registry::*;
58
59 // *-pc-windows-msvc
60 #[cfg(target_env = "msvc")]
61 #[path = "seh.rs"]
62 mod imp;
63
64 // x86_64-pc-windows-gnu
65 #[cfg(all(windows, target_arch = "x86_64", target_env = "gnu"))]
66 #[path = "seh64_gnu.rs"]
67 mod imp;
68
69 // i686-pc-windows-gnu and all others
70 #[cfg(any(all(unix, not(target_os = "emscripten")),
71           target_os = "redox",
72           all(windows, target_arch = "x86", target_env = "gnu")))]
73 #[path = "gcc.rs"]
74 mod imp;
75
76 // emscripten
77 #[cfg(target_os = "emscripten")]
78 #[path = "emcc.rs"]
79 mod imp;
80
81 #[cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))]
82 #[path = "wasm32.rs"]
83 mod imp;
84
85 mod dwarf;
86 mod windows;
87
88 // Entry point for catching an exception, implemented using the `try` intrinsic
89 // in the compiler.
90 //
91 // The interaction between the `payload` function and the compiler is pretty
92 // hairy and tightly coupled, for more information see the compiler's
93 // implementation of this.
94 #[no_mangle]
95 pub unsafe extern "C" fn __rust_maybe_catch_panic(f: fn(*mut u8),
96                                                   data: *mut u8,
97                                                   data_ptr: *mut usize,
98                                                   vtable_ptr: *mut usize)
99                                                   -> u32 {
100     let mut payload = imp::payload();
101     if intrinsics::try(f, data, &mut payload as *mut _ as *mut _) == 0 {
102         0
103     } else {
104         let obj = mem::transmute::<_, raw::TraitObject>(imp::cleanup(payload));
105         *data_ptr = obj.data as usize;
106         *vtable_ptr = obj.vtable as usize;
107         1
108     }
109 }
110
111 // Entry point for raising an exception, just delegates to the platform-specific
112 // implementation.
113 #[no_mangle]
114 #[unwind]
115 pub unsafe extern "C" fn __rust_start_panic(data: usize, vtable: usize) -> u32 {
116     imp::panic(mem::transmute(raw::TraitObject {
117         data: data as *mut (),
118         vtable: vtable as *mut (),
119     }))
120 }