]> git.lizzy.rs Git - rust.git/blob - library/std/src/panicking.rs
Rollup merge of #89876 - AlexApps99:const_ops, r=oli-obk
[rust.git] / library / std / src / panicking.rs
1 //! Implementation of various bits and pieces of the `panic!` macro and
2 //! associated runtime pieces.
3 //!
4 //! Specifically, this module contains the implementation of:
5 //!
6 //! * Panic hooks
7 //! * Executing a panic up to doing the actual implementation
8 //! * Shims around "try"
9
10 #![deny(unsafe_op_in_unsafe_fn)]
11
12 use core::panic::{BoxMeUp, Location, PanicInfo};
13
14 use crate::any::Any;
15 use crate::fmt;
16 use crate::intrinsics;
17 use crate::mem::{self, ManuallyDrop};
18 use crate::process;
19 use crate::sync::atomic::{AtomicBool, Ordering};
20 use crate::sys::stdio::panic_output;
21 use crate::sys_common::backtrace::{self, RustBacktrace};
22 use crate::sys_common::rwlock::StaticRWLock;
23 use crate::sys_common::thread_info;
24 use crate::thread;
25
26 #[cfg(not(test))]
27 use crate::io::set_output_capture;
28 // make sure to use the stderr output configured
29 // by libtest in the real copy of std
30 #[cfg(test)]
31 use realstd::io::set_output_capture;
32
33 // Binary interface to the panic runtime that the standard library depends on.
34 //
35 // The standard library is tagged with `#![needs_panic_runtime]` (introduced in
36 // RFC 1513) to indicate that it requires some other crate tagged with
37 // `#![panic_runtime]` to exist somewhere. Each panic runtime is intended to
38 // implement these symbols (with the same signatures) so we can get matched up
39 // to them.
40 //
41 // One day this may look a little less ad-hoc with the compiler helping out to
42 // hook up these functions, but it is not this day!
43 #[allow(improper_ctypes)]
44 extern "C" {
45     fn __rust_panic_cleanup(payload: *mut u8) -> *mut (dyn Any + Send + 'static);
46 }
47
48 #[allow(improper_ctypes)]
49 extern "C-unwind" {
50     /// `payload` is passed through another layer of raw pointers as `&mut dyn Trait` is not
51     /// FFI-safe. `BoxMeUp` lazily performs allocation only when needed (this avoids allocations
52     /// when using the "abort" panic runtime).
53     fn __rust_start_panic(payload: *mut &mut dyn BoxMeUp) -> u32;
54 }
55
56 /// This function is called by the panic runtime if FFI code catches a Rust
57 /// panic but doesn't rethrow it. We don't support this case since it messes
58 /// with our panic count.
59 #[cfg(not(test))]
60 #[rustc_std_internal_symbol]
61 extern "C" fn __rust_drop_panic() -> ! {
62     rtabort!("Rust panics must be rethrown");
63 }
64
65 /// This function is called by the panic runtime if it catches an exception
66 /// object which does not correspond to a Rust panic.
67 #[cfg(not(test))]
68 #[rustc_std_internal_symbol]
69 extern "C" fn __rust_foreign_exception() -> ! {
70     rtabort!("Rust cannot catch foreign exceptions");
71 }
72
73 #[derive(Copy, Clone)]
74 enum Hook {
75     Default,
76     Custom(*mut (dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send)),
77 }
78
79 static HOOK_LOCK: StaticRWLock = StaticRWLock::new();
80 static mut HOOK: Hook = Hook::Default;
81
82 /// Registers a custom panic hook, replacing any that was previously registered.
83 ///
84 /// The panic hook is invoked when a thread panics, but before the panic runtime
85 /// is invoked. As such, the hook will run with both the aborting and unwinding
86 /// runtimes. The default hook prints a message to standard error and generates
87 /// a backtrace if requested, but this behavior can be customized with the
88 /// `set_hook` and [`take_hook`] functions.
89 ///
90 /// [`take_hook`]: ./fn.take_hook.html
91 ///
92 /// The hook is provided with a `PanicInfo` struct which contains information
93 /// about the origin of the panic, including the payload passed to `panic!` and
94 /// the source code location from which the panic originated.
95 ///
96 /// The panic hook is a global resource.
97 ///
98 /// # Panics
99 ///
100 /// Panics if called from a panicking thread.
101 ///
102 /// # Examples
103 ///
104 /// The following will print "Custom panic hook":
105 ///
106 /// ```should_panic
107 /// use std::panic;
108 ///
109 /// panic::set_hook(Box::new(|_| {
110 ///     println!("Custom panic hook");
111 /// }));
112 ///
113 /// panic!("Normal panic");
114 /// ```
115 #[stable(feature = "panic_hooks", since = "1.10.0")]
116 pub fn set_hook(hook: Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send>) {
117     if thread::panicking() {
118         panic!("cannot modify the panic hook from a panicking thread");
119     }
120
121     unsafe {
122         let guard = HOOK_LOCK.write();
123         let old_hook = HOOK;
124         HOOK = Hook::Custom(Box::into_raw(hook));
125         drop(guard);
126
127         if let Hook::Custom(ptr) = old_hook {
128             #[allow(unused_must_use)]
129             {
130                 Box::from_raw(ptr);
131             }
132         }
133     }
134 }
135
136 /// Unregisters the current panic hook, returning it.
137 ///
138 /// *See also the function [`set_hook`].*
139 ///
140 /// [`set_hook`]: ./fn.set_hook.html
141 ///
142 /// If no custom hook is registered, the default hook will be returned.
143 ///
144 /// # Panics
145 ///
146 /// Panics if called from a panicking thread.
147 ///
148 /// # Examples
149 ///
150 /// The following will print "Normal panic":
151 ///
152 /// ```should_panic
153 /// use std::panic;
154 ///
155 /// panic::set_hook(Box::new(|_| {
156 ///     println!("Custom panic hook");
157 /// }));
158 ///
159 /// let _ = panic::take_hook();
160 ///
161 /// panic!("Normal panic");
162 /// ```
163 #[stable(feature = "panic_hooks", since = "1.10.0")]
164 pub fn take_hook() -> Box<dyn Fn(&PanicInfo<'_>) + 'static + Sync + Send> {
165     if thread::panicking() {
166         panic!("cannot modify the panic hook from a panicking thread");
167     }
168
169     unsafe {
170         let guard = HOOK_LOCK.write();
171         let hook = HOOK;
172         HOOK = Hook::Default;
173         drop(guard);
174
175         match hook {
176             Hook::Default => Box::new(default_hook),
177             Hook::Custom(ptr) => Box::from_raw(ptr),
178         }
179     }
180 }
181
182 fn default_hook(info: &PanicInfo<'_>) {
183     // If this is a double panic, make sure that we print a backtrace
184     // for this panic. Otherwise only print it if logging is enabled.
185     let backtrace_env = if panic_count::get_count() >= 2 {
186         RustBacktrace::Print(crate::backtrace_rs::PrintFmt::Full)
187     } else {
188         backtrace::rust_backtrace_env()
189     };
190
191     // The current implementation always returns `Some`.
192     let location = info.location().unwrap();
193
194     let msg = match info.payload().downcast_ref::<&'static str>() {
195         Some(s) => *s,
196         None => match info.payload().downcast_ref::<String>() {
197             Some(s) => &s[..],
198             None => "Box<dyn Any>",
199         },
200     };
201     let thread = thread_info::current_thread();
202     let name = thread.as_ref().and_then(|t| t.name()).unwrap_or("<unnamed>");
203
204     let write = |err: &mut dyn crate::io::Write| {
205         let _ = writeln!(err, "thread '{}' panicked at '{}', {}", name, msg, location);
206
207         static FIRST_PANIC: AtomicBool = AtomicBool::new(true);
208
209         match backtrace_env {
210             RustBacktrace::Print(format) => drop(backtrace::print(err, format)),
211             RustBacktrace::Disabled => {}
212             RustBacktrace::RuntimeDisabled => {
213                 if FIRST_PANIC.swap(false, Ordering::SeqCst) {
214                     let _ = writeln!(
215                         err,
216                         "note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace"
217                     );
218                 }
219             }
220         }
221     };
222
223     if let Some(local) = set_output_capture(None) {
224         write(&mut *local.lock().unwrap_or_else(|e| e.into_inner()));
225         set_output_capture(Some(local));
226     } else if let Some(mut out) = panic_output() {
227         write(&mut out);
228     }
229 }
230
231 #[cfg(not(test))]
232 #[doc(hidden)]
233 #[unstable(feature = "update_panic_count", issue = "none")]
234 pub mod panic_count {
235     use crate::cell::Cell;
236     use crate::sync::atomic::{AtomicUsize, Ordering};
237
238     pub const ALWAYS_ABORT_FLAG: usize = 1 << (usize::BITS - 1);
239
240     // Panic count for the current thread.
241     thread_local! { static LOCAL_PANIC_COUNT: Cell<usize> = Cell::new(0) }
242
243     // Sum of panic counts from all threads. The purpose of this is to have
244     // a fast path in `is_zero` (which is used by `panicking`). In any particular
245     // thread, if that thread currently views `GLOBAL_PANIC_COUNT` as being zero,
246     // then `LOCAL_PANIC_COUNT` in that thread is zero. This invariant holds before
247     // and after increase and decrease, but not necessarily during their execution.
248     //
249     // Additionally, the top bit of GLOBAL_PANIC_COUNT (GLOBAL_ALWAYS_ABORT_FLAG)
250     // records whether panic::always_abort() has been called.  This can only be
251     // set, never cleared.
252     //
253     // This could be viewed as a struct containing a single bit and an n-1-bit
254     // value, but if we wrote it like that it would be more than a single word,
255     // and even a newtype around usize would be clumsy because we need atomics.
256     // But we use such a tuple for the return type of increase().
257     //
258     // Stealing a bit is fine because it just amounts to assuming that each
259     // panicking thread consumes at least 2 bytes of address space.
260     static GLOBAL_PANIC_COUNT: AtomicUsize = AtomicUsize::new(0);
261
262     pub fn increase() -> (bool, usize) {
263         (
264             GLOBAL_PANIC_COUNT.fetch_add(1, Ordering::Relaxed) & ALWAYS_ABORT_FLAG != 0,
265             LOCAL_PANIC_COUNT.with(|c| {
266                 let next = c.get() + 1;
267                 c.set(next);
268                 next
269             }),
270         )
271     }
272
273     pub fn decrease() {
274         GLOBAL_PANIC_COUNT.fetch_sub(1, Ordering::Relaxed);
275         LOCAL_PANIC_COUNT.with(|c| {
276             let next = c.get() - 1;
277             c.set(next);
278             next
279         });
280     }
281
282     pub fn set_always_abort() {
283         GLOBAL_PANIC_COUNT.fetch_or(ALWAYS_ABORT_FLAG, Ordering::Relaxed);
284     }
285
286     // Disregards ALWAYS_ABORT_FLAG
287     pub fn get_count() -> usize {
288         LOCAL_PANIC_COUNT.with(|c| c.get())
289     }
290
291     // Disregards ALWAYS_ABORT_FLAG
292     #[inline]
293     pub fn count_is_zero() -> bool {
294         if GLOBAL_PANIC_COUNT.load(Ordering::Relaxed) & !ALWAYS_ABORT_FLAG == 0 {
295             // Fast path: if `GLOBAL_PANIC_COUNT` is zero, all threads
296             // (including the current one) will have `LOCAL_PANIC_COUNT`
297             // equal to zero, so TLS access can be avoided.
298             //
299             // In terms of performance, a relaxed atomic load is similar to a normal
300             // aligned memory read (e.g., a mov instruction in x86), but with some
301             // compiler optimization restrictions. On the other hand, a TLS access
302             // might require calling a non-inlinable function (such as `__tls_get_addr`
303             // when using the GD TLS model).
304             true
305         } else {
306             is_zero_slow_path()
307         }
308     }
309
310     // Slow path is in a separate function to reduce the amount of code
311     // inlined from `is_zero`.
312     #[inline(never)]
313     #[cold]
314     fn is_zero_slow_path() -> bool {
315         LOCAL_PANIC_COUNT.with(|c| c.get() == 0)
316     }
317 }
318
319 #[cfg(test)]
320 pub use realstd::rt::panic_count;
321
322 /// Invoke a closure, capturing the cause of an unwinding panic if one occurs.
323 pub unsafe fn r#try<R, F: FnOnce() -> R>(f: F) -> Result<R, Box<dyn Any + Send>> {
324     union Data<F, R> {
325         f: ManuallyDrop<F>,
326         r: ManuallyDrop<R>,
327         p: ManuallyDrop<Box<dyn Any + Send>>,
328     }
329
330     // We do some sketchy operations with ownership here for the sake of
331     // performance. We can only pass pointers down to `do_call` (can't pass
332     // objects by value), so we do all the ownership tracking here manually
333     // using a union.
334     //
335     // We go through a transition where:
336     //
337     // * First, we set the data field `f` to be the argumentless closure that we're going to call.
338     // * When we make the function call, the `do_call` function below, we take
339     //   ownership of the function pointer. At this point the `data` union is
340     //   entirely uninitialized.
341     // * If the closure successfully returns, we write the return value into the
342     //   data's return slot (field `r`).
343     // * If the closure panics (`do_catch` below), we write the panic payload into field `p`.
344     // * Finally, when we come back out of the `try` intrinsic we're
345     //   in one of two states:
346     //
347     //      1. The closure didn't panic, in which case the return value was
348     //         filled in. We move it out of `data.r` and return it.
349     //      2. The closure panicked, in which case the panic payload was
350     //         filled in. We move it out of `data.p` and return it.
351     //
352     // Once we stack all that together we should have the "most efficient'
353     // method of calling a catch panic whilst juggling ownership.
354     let mut data = Data { f: ManuallyDrop::new(f) };
355
356     let data_ptr = &mut data as *mut _ as *mut u8;
357     // SAFETY:
358     //
359     // Access to the union's fields: this is `std` and we know that the `r#try`
360     // intrinsic fills in the `r` or `p` union field based on its return value.
361     //
362     // The call to `intrinsics::r#try` is made safe by:
363     // - `do_call`, the first argument, can be called with the initial `data_ptr`.
364     // - `do_catch`, the second argument, can be called with the `data_ptr` as well.
365     // See their safety preconditions for more informations
366     unsafe {
367         return if intrinsics::r#try(do_call::<F, R>, data_ptr, do_catch::<F, R>) == 0 {
368             Ok(ManuallyDrop::into_inner(data.r))
369         } else {
370             Err(ManuallyDrop::into_inner(data.p))
371         };
372     }
373
374     // We consider unwinding to be rare, so mark this function as cold. However,
375     // do not mark it no-inline -- that decision is best to leave to the
376     // optimizer (in most cases this function is not inlined even as a normal,
377     // non-cold function, though, as of the writing of this comment).
378     #[cold]
379     unsafe fn cleanup(payload: *mut u8) -> Box<dyn Any + Send + 'static> {
380         // SAFETY: The whole unsafe block hinges on a correct implementation of
381         // the panic handler `__rust_panic_cleanup`. As such we can only
382         // assume it returns the correct thing for `Box::from_raw` to work
383         // without undefined behavior.
384         let obj = unsafe { Box::from_raw(__rust_panic_cleanup(payload)) };
385         panic_count::decrease();
386         obj
387     }
388
389     // SAFETY:
390     // data must be non-NUL, correctly aligned, and a pointer to a `Data<F, R>`
391     // Its must contains a valid `f` (type: F) value that can be use to fill
392     // `data.r`.
393     //
394     // This function cannot be marked as `unsafe` because `intrinsics::r#try`
395     // expects normal function pointers.
396     #[inline]
397     fn do_call<F: FnOnce() -> R, R>(data: *mut u8) {
398         // SAFETY: this is the responsibilty of the caller, see above.
399         unsafe {
400             let data = data as *mut Data<F, R>;
401             let data = &mut (*data);
402             let f = ManuallyDrop::take(&mut data.f);
403             data.r = ManuallyDrop::new(f());
404         }
405     }
406
407     // We *do* want this part of the catch to be inlined: this allows the
408     // compiler to properly track accesses to the Data union and optimize it
409     // away most of the time.
410     //
411     // SAFETY:
412     // data must be non-NUL, correctly aligned, and a pointer to a `Data<F, R>`
413     // Since this uses `cleanup` it also hinges on a correct implementation of
414     // `__rustc_panic_cleanup`.
415     //
416     // This function cannot be marked as `unsafe` because `intrinsics::r#try`
417     // expects normal function pointers.
418     #[inline]
419     fn do_catch<F: FnOnce() -> R, R>(data: *mut u8, payload: *mut u8) {
420         // SAFETY: this is the responsibilty of the caller, see above.
421         //
422         // When `__rustc_panic_cleaner` is correctly implemented we can rely
423         // on `obj` being the correct thing to pass to `data.p` (after wrapping
424         // in `ManuallyDrop`).
425         unsafe {
426             let data = data as *mut Data<F, R>;
427             let data = &mut (*data);
428             let obj = cleanup(payload);
429             data.p = ManuallyDrop::new(obj);
430         }
431     }
432 }
433
434 /// Determines whether the current thread is unwinding because of panic.
435 #[inline]
436 pub fn panicking() -> bool {
437     !panic_count::count_is_zero()
438 }
439
440 /// Entry point of panics from the libcore crate (`panic_impl` lang item).
441 #[cfg(not(test))]
442 #[panic_handler]
443 pub fn begin_panic_handler(info: &PanicInfo<'_>) -> ! {
444     struct PanicPayload<'a> {
445         inner: &'a fmt::Arguments<'a>,
446         string: Option<String>,
447     }
448
449     impl<'a> PanicPayload<'a> {
450         fn new(inner: &'a fmt::Arguments<'a>) -> PanicPayload<'a> {
451             PanicPayload { inner, string: None }
452         }
453
454         fn fill(&mut self) -> &mut String {
455             use crate::fmt::Write;
456
457             let inner = self.inner;
458             // Lazily, the first time this gets called, run the actual string formatting.
459             self.string.get_or_insert_with(|| {
460                 let mut s = String::new();
461                 drop(s.write_fmt(*inner));
462                 s
463             })
464         }
465     }
466
467     unsafe impl<'a> BoxMeUp for PanicPayload<'a> {
468         fn take_box(&mut self) -> *mut (dyn Any + Send) {
469             // We do two allocations here, unfortunately. But (a) they're required with the current
470             // scheme, and (b) we don't handle panic + OOM properly anyway (see comment in
471             // begin_panic below).
472             let contents = mem::take(self.fill());
473             Box::into_raw(Box::new(contents))
474         }
475
476         fn get(&mut self) -> &(dyn Any + Send) {
477             self.fill()
478         }
479     }
480
481     struct StrPanicPayload(&'static str);
482
483     unsafe impl BoxMeUp for StrPanicPayload {
484         fn take_box(&mut self) -> *mut (dyn Any + Send) {
485             Box::into_raw(Box::new(self.0))
486         }
487
488         fn get(&mut self) -> &(dyn Any + Send) {
489             &self.0
490         }
491     }
492
493     let loc = info.location().unwrap(); // The current implementation always returns Some
494     let msg = info.message().unwrap(); // The current implementation always returns Some
495     crate::sys_common::backtrace::__rust_end_short_backtrace(move || {
496         if let Some(msg) = msg.as_str() {
497             rust_panic_with_hook(&mut StrPanicPayload(msg), info.message(), loc);
498         } else {
499             rust_panic_with_hook(&mut PanicPayload::new(msg), info.message(), loc);
500         }
501     })
502 }
503
504 /// This is the entry point of panicking for the non-format-string variants of
505 /// panic!() and assert!(). In particular, this is the only entry point that supports
506 /// arbitrary payloads, not just format strings.
507 #[unstable(feature = "libstd_sys_internals", reason = "used by the panic! macro", issue = "none")]
508 #[cfg_attr(not(test), lang = "begin_panic")]
509 // lang item for CTFE panic support
510 // never inline unless panic_immediate_abort to avoid code
511 // bloat at the call sites as much as possible
512 #[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
513 #[cold]
514 #[track_caller]
515 #[rustc_do_not_const_check] // hooked by const-eval
516 pub const fn begin_panic<M: Any + Send>(msg: M) -> ! {
517     if cfg!(feature = "panic_immediate_abort") {
518         intrinsics::abort()
519     }
520
521     let loc = Location::caller();
522     return crate::sys_common::backtrace::__rust_end_short_backtrace(move || {
523         rust_panic_with_hook(&mut PanicPayload::new(msg), None, loc)
524     });
525
526     struct PanicPayload<A> {
527         inner: Option<A>,
528     }
529
530     impl<A: Send + 'static> PanicPayload<A> {
531         fn new(inner: A) -> PanicPayload<A> {
532             PanicPayload { inner: Some(inner) }
533         }
534     }
535
536     unsafe impl<A: Send + 'static> BoxMeUp for PanicPayload<A> {
537         fn take_box(&mut self) -> *mut (dyn Any + Send) {
538             // Note that this should be the only allocation performed in this code path. Currently
539             // this means that panic!() on OOM will invoke this code path, but then again we're not
540             // really ready for panic on OOM anyway. If we do start doing this, then we should
541             // propagate this allocation to be performed in the parent of this thread instead of the
542             // thread that's panicking.
543             let data = match self.inner.take() {
544                 Some(a) => Box::new(a) as Box<dyn Any + Send>,
545                 None => process::abort(),
546             };
547             Box::into_raw(data)
548         }
549
550         fn get(&mut self) -> &(dyn Any + Send) {
551             match self.inner {
552                 Some(ref a) => a,
553                 None => process::abort(),
554             }
555         }
556     }
557 }
558
559 /// Central point for dispatching panics.
560 ///
561 /// Executes the primary logic for a panic, including checking for recursive
562 /// panics, panic hooks, and finally dispatching to the panic runtime to either
563 /// abort or unwind.
564 fn rust_panic_with_hook(
565     payload: &mut dyn BoxMeUp,
566     message: Option<&fmt::Arguments<'_>>,
567     location: &Location<'_>,
568 ) -> ! {
569     let (must_abort, panics) = panic_count::increase();
570
571     // If this is the third nested call (e.g., panics == 2, this is 0-indexed),
572     // the panic hook probably triggered the last panic, otherwise the
573     // double-panic check would have aborted the process. In this case abort the
574     // process real quickly as we don't want to try calling it again as it'll
575     // probably just panic again.
576     if must_abort || panics > 2 {
577         if panics > 2 {
578             // Don't try to print the message in this case
579             // - perhaps that is causing the recursive panics.
580             rtprintpanic!("thread panicked while processing panic. aborting.\n");
581         } else {
582             // Unfortunately, this does not print a backtrace, because creating
583             // a `Backtrace` will allocate, which we must to avoid here.
584             let panicinfo = PanicInfo::internal_constructor(message, location);
585             rtprintpanic!("{}\npanicked after panic::always_abort(), aborting.\n", panicinfo);
586         }
587         intrinsics::abort()
588     }
589
590     unsafe {
591         let mut info = PanicInfo::internal_constructor(message, location);
592         let _guard = HOOK_LOCK.read();
593         match HOOK {
594             // Some platforms (like wasm) know that printing to stderr won't ever actually
595             // print anything, and if that's the case we can skip the default
596             // hook. Since string formatting happens lazily when calling `payload`
597             // methods, this means we avoid formatting the string at all!
598             // (The panic runtime might still call `payload.take_box()` though and trigger
599             // formatting.)
600             Hook::Default if panic_output().is_none() => {}
601             Hook::Default => {
602                 info.set_payload(payload.get());
603                 default_hook(&info);
604             }
605             Hook::Custom(ptr) => {
606                 info.set_payload(payload.get());
607                 (*ptr)(&info);
608             }
609         };
610     }
611
612     if panics > 1 {
613         // If a thread panics while it's already unwinding then we
614         // have limited options. Currently our preference is to
615         // just abort. In the future we may consider resuming
616         // unwinding or otherwise exiting the thread cleanly.
617         rtprintpanic!("thread panicked while panicking. aborting.\n");
618         intrinsics::abort()
619     }
620
621     rust_panic(payload)
622 }
623
624 /// This is the entry point for `resume_unwind`.
625 /// It just forwards the payload to the panic runtime.
626 pub fn rust_panic_without_hook(payload: Box<dyn Any + Send>) -> ! {
627     panic_count::increase();
628
629     struct RewrapBox(Box<dyn Any + Send>);
630
631     unsafe impl BoxMeUp for RewrapBox {
632         fn take_box(&mut self) -> *mut (dyn Any + Send) {
633             Box::into_raw(mem::replace(&mut self.0, Box::new(())))
634         }
635
636         fn get(&mut self) -> &(dyn Any + Send) {
637             &*self.0
638         }
639     }
640
641     rust_panic(&mut RewrapBox(payload))
642 }
643
644 /// An unmangled function (through `rustc_std_internal_symbol`) on which to slap
645 /// yer breakpoints.
646 #[inline(never)]
647 #[cfg_attr(not(test), rustc_std_internal_symbol)]
648 fn rust_panic(mut msg: &mut dyn BoxMeUp) -> ! {
649     let code = unsafe {
650         let obj = &mut msg as *mut &mut dyn BoxMeUp;
651         __rust_start_panic(obj)
652     };
653     rtabort!("failed to initiate panic, error {}", code)
654 }