]> git.lizzy.rs Git - rust.git/blob - src/libcore/panicking.rs
Rollup merge of #73169 - Amanieu:asm-warnings, r=petrochenkov
[rust.git] / src / libcore / panicking.rs
1 //! Panic support for libcore
2 //!
3 //! The core library cannot define panicking, but it does *declare* panicking. This
4 //! means that the functions inside of libcore are allowed to panic, but to be
5 //! useful an upstream crate must define panicking for libcore to use. The current
6 //! interface for panicking is:
7 //!
8 //! ```
9 //! fn panic_impl(pi: &core::panic::PanicInfo<'_>) -> !
10 //! # { loop {} }
11 //! ```
12 //!
13 //! This definition allows for panicking with any general message, but it does not
14 //! allow for failing with a `Box<Any>` value. (`PanicInfo` just contains a `&(dyn Any + Send)`,
15 //! for which we fill in a dummy value in `PanicInfo::internal_constructor`.)
16 //! The reason for this is that libcore is not allowed to allocate.
17 //!
18 //! This module contains a few other panicking functions, but these are just the
19 //! necessary lang items for the compiler. All panics are funneled through this
20 //! one function. The actual symbol is declared through the `#[panic_handler]` attribute.
21
22 #![allow(dead_code, missing_docs)]
23 #![unstable(
24     feature = "core_panic",
25     reason = "internal details of the implementation of the `panic!` \
26               and related macros",
27     issue = "none"
28 )]
29
30 use crate::fmt;
31 use crate::panic::{Location, PanicInfo};
32
33 /// The underlying implementation of libcore's `panic!` macro when no formatting is used.
34 #[cold]
35 // never inline unless panic_immediate_abort to avoid code
36 // bloat at the call sites as much as possible
37 #[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
38 #[track_caller]
39 #[lang = "panic"] // needed by codegen for panic on overflow and other `Assert` MIR terminators
40 pub fn panic(expr: &str) -> ! {
41     if cfg!(feature = "panic_immediate_abort") {
42         super::intrinsics::abort()
43     }
44
45     // Use Arguments::new_v1 instead of format_args!("{}", expr) to potentially
46     // reduce size overhead. The format_args! macro uses str's Display trait to
47     // write expr, which calls Formatter::pad, which must accommodate string
48     // truncation and padding (even though none is used here). Using
49     // Arguments::new_v1 may allow the compiler to omit Formatter::pad from the
50     // output binary, saving up to a few kilobytes.
51     panic_fmt(fmt::Arguments::new_v1(&[expr], &[]));
52 }
53
54 #[cold]
55 #[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
56 #[track_caller]
57 #[lang = "panic_bounds_check"] // needed by codegen for panic on OOB array/slice access
58 fn panic_bounds_check(index: usize, len: usize) -> ! {
59     if cfg!(feature = "panic_immediate_abort") {
60         super::intrinsics::abort()
61     }
62
63     panic!("index out of bounds: the len is {} but the index is {}", len, index)
64 }
65
66 /// The underlying implementation of libcore's `panic!` macro when formatting is used.
67 #[cold]
68 #[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
69 #[cfg_attr(feature = "panic_immediate_abort", inline)]
70 #[track_caller]
71 pub fn panic_fmt(fmt: fmt::Arguments<'_>) -> ! {
72     if cfg!(feature = "panic_immediate_abort") {
73         super::intrinsics::abort()
74     }
75
76     // NOTE This function never crosses the FFI boundary; it's a Rust-to-Rust call
77     // that gets resolved to the `#[panic_handler]` function.
78     extern "Rust" {
79         #[lang = "panic_impl"]
80         fn panic_impl(pi: &PanicInfo<'_>) -> !;
81     }
82
83     let pi = PanicInfo::internal_constructor(Some(&fmt), Location::caller());
84
85     // SAFETY: `panic_impl` is defined in safe Rust code and thus is safe to call.
86     unsafe { panic_impl(&pi) }
87 }